Skip to content

Instantly share code, notes, and snippets.

@stegenfeldt
Last active December 27, 2016 08:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stegenfeldt/92d260c585abb4337fa4e6e60be7654d to your computer and use it in GitHub Desktop.
Save stegenfeldt/92d260c585abb4337fa4e6e60be7654d to your computer and use it in GitHub Desktop.
Install-OM2016ConsolePrereq.ps1
Invoke-WebRequest -URI "https://download.microsoft.com/download/A/1/2/A129F694-233C-4C7C-860F-F73139CF2E01/ENU/x86/ReportViewer.msi" -OutFile "$env:TEMP\ReportViewer.msi"
Invoke-WebRequest -URI "https://download.microsoft.com/download/1/3/0/13089488-91FC-4E22-AD68-5BE58BD5C014/ENU/x64/SQLSysClrTypes.msi" -OutFile "$env:TEMP\SQLSysClrTypes.msi"
Install-Package -Name "$env:TEMP\SQLSysClrTypes.msi"
Install-Package -Name "$env:TEMP\ReportViewer.msi"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment