Skip to content

Instantly share code, notes, and snippets.

@charlie-x
Created November 1, 2019 20:28
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 charlie-x/f9d8b0f25cc1c7612cc58ab29901e9ec to your computer and use it in GitHub Desktop.
Save charlie-x/f9d8b0f25cc1c7612cc58ab29901e9ec to your computer and use it in GitHub Desktop.
install tesla win10 64 bit via powershell
$Path = $env:TEMP; $Installer = "426.23-tesla-desktop-win10-64bit-international.exe"; Invoke-WebRequest "http://us.download.nvidia.com/tesla/426.23/426.23-tesla-desktop-win10-64bit-international.exe" -OutFile $Path\$Installer; Start-Process -FilePath $Path\$Installer -Args "" -Verb RunAs -Wait; Remove-Item $Path\$Installer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment