en-US/cliHelper.env.strings.psd1
@{ ModuleName = 'cliHelper.env' ModuleVersion = [Version]'0.1.2' ReleaseNotes = @" # Changelog`n`n - Updated build script `n`n***`n`n# Install guide:`n`n 1. [Click here](https://github.com/alainQtec/cliHelper.env/releases/download/v<versionToDeploy>/cliHelper.env.zip) to download the *cliHelper.env.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 ``cliHelper.env`` if the unzipped module folder is not in your ``PSModulePath``: ``````powershell # In Env:PSModulePath Import-Module cliHelper.env # Otherwise, provide the path to the manifest: Import-Module -Path Path\to\cliHelper.env\<versionToDeploy>\cliHelper.env.psd1 `````` "@ } |