Set up Windows Subversion System

code
R
And other tricks under windows
Author

Zhenglei Gao

Published

September 11, 2025

Under WSL

sudo apt-get -o Acquire::http::proxy="http://xx.xxx.xxx.xxx:8080" update
sudo apt install -o Acquire::http::proxy="http://xx.xxx.xxx.xxx:8080" libssl-dev
## sudo wget https://quarto.org/download/latest/quarto-linux-amd64.deb 

Under windows:

runas /user:Administrator "C:\Path\To\Your\Folder\yourfile.exe"
yourfile.exe
## or
C:\Path\To\Your\Folder\yourfile.exe
Start-Process -FilePath "C:\Path\To\Your\Folder\yourfile.exe" -Verb RunAs
.\yourfile.exe
## or
& "C:\Path\To\Your\Folder\yourfile.exe"

For PowerShell, the & operator is used to invoke commands or executables with paths containing spaces.