Skip to content

Instantly share code, notes, and snippets.

@polamjag
Last active March 13, 2021 03:06
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 polamjag/c8ba636783520ce76fda6c36b455c1d1 to your computer and use it in GitHub Desktop.
Save polamjag/c8ba636783520ce76fda6c36b455c1d1 to your computer and use it in GitHub Desktop.
# https://stackoverflow.com/questions/35615305/powershell-equivalent-of-curl-http-www-example-com-script-sh-bash-s-argume
# iex (New-Object System.Net.WebClient).DownloadString('https://gist.github.com/polamjag/c8ba636783520ce76fda6c36b455c1d1/raw')
wget https://cdn.cloudflare.steamstatic.com/client/installer/SteamSetup.exe -OutFile "SteamSetup.exe"
Start-Process -FilePath "SteamSetup.exe"
wget https://download.vrdesktop.net/files/VirtualDesktop.Streamer.Setup.exe -OutFile "VirtualDesktop.Streamer.Setup.exe"
Start-Process -FilePath "VirtualDesktop.Streamer.Setup.exe"
wget https://builds.parsecgaming.com/package/parsec-windows.exe -OutFile parsec.exe
Start-Process -FilePath "parsec.exe"
wget "https://www.oculus.com/download_app/?id=1582076955407037" -OutFile Oculus.exe
Start-Process -FilePath "Oculus.exe"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment