Skip to content

PEMEncrypt v0.2.1

Latest
Compare
Choose a tag to compare
@scrthq scrthq released this 24 Aug 17:39

Changelog

0.2.1 - 2019-08-24

  • Issue #5
    • Added: Missing path creation to New-RSAKeyPair if the parent folder does not yet exist.
  • Miscellaneous
    • Fixed: Error handling while using New-RSAKeyPair -Interactive if the specified Path already exists and -Force was not specified.
    • Added: Additional status updates within New-RSAKeyPair for a better understanding of what step the key generation is at.

Instructions

  1. Click here to download the PEMEncrypt.zip file attached to the release.
  2. If on Windows: Right-click the downloaded zip, select Properties, then unblock the file.

    This is to prevent having to unblock each file individually after unzipping.

  3. Unzip the archive.
  4. (Optional) Place the module folder somewhere in your PSModulePath.

    You can view the paths listed by running the environment variable $env:PSModulePath

  5. Import the module, using the full path to the PSD1 file in place of PEMEncrypt if the unzipped module folder is not in your PSModulePath:
    # In $env:PSModulePath
    Import-Module PEMEncrypt
    
    # Otherwise, provide the path to the manifest:
    Import-Module -Path C:\MyPSModules\PEMEncrypt\0.2.1\PEMEncrypt.psd1