Skip to content

v1.0.9104.28823

Latest
Compare
Choose a tag to compare
@JayVDZ JayVDZ released this 04 Dec 16:15
· 1 commit to master since this release

Full Changelog: v1.0.9097.36898...v1.0.9104.28823

Main change: Built for x64 platforms to enable PowerShell modules to be imported in scripts.

Note: PowerShell scripts needing to import third-party modules must use the following approach:

Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201 -Force
Install-Module -Name $module_name -AllowClobber -Scope CurrentUser -Force
Import-Module $module_name