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