Forked from nanoDBA/Download_and_install_Solarwinds_SentryOne_Plan_Explorer.ps1
Created
September 25, 2024 13:21
-
-
Save tcartwright/b0e1df4cd85c47a4c25c401ecfdf45a2 to your computer and use it in GitHub Desktop.
Download and install Solarwinds SentryOne Plan Explorer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# download and install Solarwinds SentryOne Plan Explorer #> | |
$filenamePlanExplorerInstall = "$env:USERPROFILE\downloads\" + ([string](Get-Date -format "yyyy-MM-dd")) + "_SolarWinds-PlanExplorer.exe" | |
Start-BitsTransfer -Source 'https://downloads.solarwinds.com/solarwinds/Release/FreeTool/SolarWinds-PlanExplorer.exe' -Destination $filenamePlanExplorerInstall | |
& $filenamePlanExplorerInstall /install /passive /norestart |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Forking this script from @nanoDBA as the download page from solarwinds does not always work....