Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tcartwright/8d4b05392d33ae78aea36e6b15103d82 to your computer and use it in GitHub Desktop.
Save tcartwright/8d4b05392d33ae78aea36e6b15103d82 to your computer and use it in GitHub Desktop.
POWERSHELL: Download and install sentry one plan explorer
<# 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