Skip to content
This repository has been archived by the owner on Sep 1, 2021. It is now read-only.

Releases: davotronic5000/PowerShell_Credential_Manager

v2.0 - General enhancements and bug fixes

10 Jun 14:19
Compare
Choose a tag to compare
  • Implemented pipeline support for Get-StoredCredential.
  • Implemented pipeline support for New-StoredCredential.
  • Implemented pipeline support for Remove-StoredCredential.
  • Improved error handling to respect the Error Action Preference in PowerShell.
  • Changed AsPSCredential to a Switch parameter and renamed to AsCredentialObject on Get-StoredCredential to make it easier to use.
  • Added Credentials parameter to New-StoredCredential which accepts a PSCredential object instead of User name and Password.
  • Added SecuserPassword parameter to New-StoredCredential which accepts a SecureString as the password.
  • Credential object now returns LastWritten as a DateTime instead of a ComType.FILETIME
  • Changing license to MIT from GPL
  • General refactoring and bug fixes.
  • Updated documentation both online and local

v1.1 Bug Fix Release

25 Feb 10:55
Compare
Choose a tag to compare

Fixed a bug where the username specified in the -UserName parameter was not being used to create the credential in the store. The username for the logged on user was being used instead. Issue logged #8

Credential Manager PowerShell Module v1.0

21 Feb 12:53
Compare
Choose a tag to compare

This is the initial release of the Credential Manager module for PowerShell. This current version adds 4 new commands to the PowerShell session.

  • Get-StoredCredential - Gets one or more credentials from the Windows Credential Manager.
  • New-Stored Credential - Adds a new credential to the Windows Credential Manager.
  • Remove-StoredCredential - Deletes a credential from the Windows Credential Manager.
  • Get-StrongPassword - Randomly generates a new password.

This version does not support the PowerShell Pipeline fully or updateable help.