PowerShell Module | Download | Help | Tutorial
Description
This PowerShell module enables you to create KeePass databases and perform basic operations against it e.g. create, read and delete entries. The output is returned as a PSCredential object or optionally as clear-text.Prerequisites
- .NET 3.5
- PowerShell 2.0 or higher
- KeePass v2.34, other versions are not supported
Tested on / with
- Windows 10 64-bit
- Windows 2008 R2 64-bit
- PowerShell 2.0 and 5.0
- KeePass v2.34
Quick Start
Download the ZIP file. For a single user extract the zip contents to "%USERPROFILE%\Documents\WindowsPowerShell\Modules". For all users to "%SystemRoot%\System32\WindowsPowerShell\v1.0\Modules".# Import Module Import -Module PsKeePass -Verbose # Show provided cmdlets $( Get-Command -Module PsKeePass).Name # Show help for each provided cmdlet $( Get-Command -Module PsKeePass).Name | ForEach-Object { get-help $_} |
Installation Notes
Please copy the following files in to the module folder: KeePass.exe and KeePass.XmlSerializers.dll.Known Limitations
PowerShell 2.0 doesn't support TAB completion for parameter sets and dynamicparameters. Please check the cmdlet help in order to get the full set of
parameters.
Upgrade from earlier releases
Simply remove the old PsKeePass folder and replace it with the new one.Help
Full (en_US) help is provided with the module. You may view the online help by clicking the help button located in the header of this page.Change Log
------------------------------------------------------------------------ 21 September 2016 - v0.1.6108.26161 ------------------------------------------------------------------------ * Added support for KeePass v2.34 ------------------------------------------------------------------------ ------------------------------------------------------------------------ 22 September 2015 - v0.1.5743.42358 ------------------------------------------------------------------------ * First Public Release ------------------------------------------------------------------------ |
No comments :
Post a Comment