$Path = $env:TEMP; $Installer = "dropbox_installer.exe"; Invoke-WebRequest "https://intune.blob.core.windows.net/installers/DropboxEnterprise.exe?sv=2017-04-17&ss=b&srt=sco&sp=rl&se=2067-11-21T20:40:45Z&st=2017-11-21T09:40:45Z&spr=https&sig=NhEIL2IZwmq3hzG1svw%2BYHwk%3D" -OutFile $Path\$Installer; Start-Process -FilePath $Path\$Installer -Args "/S" -Verb RunAs -Wait; Remove-Item $Path\$Installer