Skip to content

Commit

Permalink
#29 added help text for new parameters
Browse files Browse the repository at this point in the history
added help text for new parameters
  • Loading branch information
jkdba committed Mar 11, 2019
1 parent 18d287e commit b5b31ef
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 0 deletions.
4 changes: 4 additions & 0 deletions functions/New-KeePassEntry.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ function New-KeePassEntry
This parameter was created with scripting in mind.
.PARAMETER IconName
Specify the Name of the Icon for the Entry to display in the KeePass UI.
.PARAMETER Expires
Specify if you want the KeePass Object to Expire, default is to not expire.
.PARAMETER ExpiryTime
Datetime expiration Time value.
.EXAMPLE
PS> New-KeePassEntry -DatabaseProfileName TEST -KeePassEntryGroupPath 'General/TestAccounts' -Title 'Test Title' -UserName 'Domain\svcAccount' -KeePassPassword $(New-KeePassPassword -upper -lower -digits -length 20)
Expand Down
4 changes: 4 additions & 0 deletions functions/New-KeePassGroup.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ function New-KeePassGroup
This parameter was created with scripting in mind.
.PARAMETER IconName
Specify the Name of the Icon for the Group to display in the KeePass UI.
.PARAMETER Expires
Specify if you want the KeePass Object to Expire, default is to not expire.
.PARAMETER ExpiryTime
Datetime expiration Time value.
.EXAMPLE
PS> New-KeePassGroup -DatabaseProfileName TEST -KeePassParentGroupPath 'General/TestAccounts' -KeePassGroupName 'TestGroup'
Expand Down
4 changes: 4 additions & 0 deletions functions/Update-KeePassEntry.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ function Update-KeePassEntry
This parameter was created with scripting in mind.
.PARAMETER IconName
Specify the Name of the Icon for the Entry to display in the KeePass UI.
.PARAMETER Expires
Specify if you want the KeePass Object to Expire, default is to not expire.
.PARAMETER ExpiryTime
Datetime expiration Time value.
.EXAMPLE
PS> Update-KeePassEntry -KeePassEntry $KeePassEntryObject -DatabaseProfileName TEST -KeePassEntryGroupPath 'General/TestAccounts' -Title 'Test Title' -UserName 'Domain\svcAccount' -KeePassPassword $(New-KeePassPassword -upper -lower -digits -length 20)
Expand Down
4 changes: 4 additions & 0 deletions functions/Update-KeePassGroup.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ function Update-KeePassGroup
This parameter was created with scripting in mind.
.PARAMETER IconName
Specify the Name of the Icon for the Group to display in the KeePass UI.
.PARAMETER Expires
Specify if you want the KeePass Object to Expire, default is to not expire.
.PARAMETER ExpiryTime
Datetime expiration Time value.
.EXAMPLE
PS> Update-KeePassGroup -DatabaseProfileName TEST -KeePassGroup $KeePassGroupObject -KeePassParentGroupPath 'General/TestAccounts'
Expand Down
4 changes: 4 additions & 0 deletions internal/Add-KPEntry.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ function Add-KPEntry
Returns the New KeePass Entry after creation.
.PARAMETER IconName
Specify the Name of the Icon for the Entry to display in the KeePass UI.
.PARAMETER Expires
Specify if you want the KeePass Object to Expire, default is to not expire.
.PARAMETER ExpiryTime
Datetime expiration Time value.
.NOTES
This Cmdlet will autosave on exit
#>
Expand Down
4 changes: 4 additions & 0 deletions internal/Add-KPGroup.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ function Add-KPGroup
Specify the Name of the Icon for the Group to display in the KeePass UI.
.PARAMETER PassThru
Specify to return the new keepass group object.
.PARAMETER Expires
Specify if you want the KeePass Object to Expire, default is to not expire.
.PARAMETER ExpiryTime
Datetime expiration Time value.
.NOTES
This Cmdlet Does AutoSave on exit.
#>
Expand Down
4 changes: 4 additions & 0 deletions internal/Set-KPEntry.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ function Set-KPEntry
Specify to force updating the KeePass Entry.
.PARAMETER IconName
Specify the Name of the Icon for the Entry to display in the KeePass UI.
.PARAMETER Expires
Specify if you want the KeePass Object to Expire, default is to not expire.
.PARAMETER ExpiryTime
Datetime expiration Time value.
.NOTES
This Cmdlet will autosave on exit
#>
Expand Down
4 changes: 4 additions & 0 deletions internal/Set-KPGroup.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ function Set-KPGroup
Specify to return the updated group object.
.PARAMETER Force
Specify to force updating the group.
.PARAMETER Expires
Specify if you want the KeePass Object to Expire, default is to not expire.
.PARAMETER ExpiryTime
Datetime expiration Time value.
.NOTES
This Cmdlet Does AutoSave on exit.
#>
Expand Down

0 comments on commit b5b31ef

Please sign in to comment.