Sha256: 130b029e3550ad9fa607d7b6485390396eb0b618488ee90c1e2ae96322e66bec
Contents?: true
Size: 934 Bytes
Versions: 9
Compression:
Stored size: 934 Bytes
Contents
# fail on errors and include uplift helpers $ErrorActionPreference = "Stop" Import-Module Uplift.Core # include shared helpers from uplift.vagrant.sharepoint handler . "c:/windows/temp/uplift.vagrant.sharepoint/shared/sp.helpers.ps1" Write-UpliftMessage "Running SharePoint pre-setup1 tuning..." Write-UpliftEnv # all this happens due to spoiled IIS installation after sysprep # prereq/sp bin get IIS configured, but sysprep kills it # we make some patches, and then uninstall IIS, and then run reboot # once done, we bring Web-Server feature back and all works well # patch IIS config # https://forums.iis.net/t/1160389.aspx Write-UpliftMessage "Fixing IIS config after sysprep" Write-UpliftMessage " - details: https://forums.iis.net/t/1160389.aspx" Repair-UpliftIISApplicationHostFile # uninstall web server feature Write-UpliftMessage "Uninstalling Web-Server feature" Uninstall-WindowsFeature Web-Server | Out-Null exit 0
Version data entries
9 entries across 9 versions & 1 rubygems