Sitecore 9 SIF Version 1.2.0 Released
Sitecore has updated the Sitecore 9 SIF to Version 1.2.0. New features include Tasks for allowing “enabling, disabling and deleting configurations by reading an IO xml file (*.ioxml)” and transforming “XML documents by applying XML Document Transformation (xdt) files”. Resolved bugs includes resolution of the “certificate private key path on Windows 8.1/2012” and corrections to input hash tables.
Full details can be viewed at: https://sitecore.myget.org/feed/sc-powershell/package/nuget/SitecoreInstallFramework/1.2.0
If you don’t want to declare the required version using PowerShellGet as stated in the Sitecore package instructions, the following PowerShell snippet will allow you to get the latest version via the Update-Module command:
# Trust PSGallery
Set-PSRepository -Name PSGallery -InstallationPolicy Trusted
# Install SIF from GET and Check for Updates
Register-PSRepository -Name SitecoreGallery -SourceLocation https://sitecore.myget.org/F/sc-powershell/api/v2
Install-Module SitecoreInstallFramework -Force
Update-Module SitecoreInstallFramework -Force