Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
pub:windows_setup_2 [2022/09/15 08:23] – [install essentials] derek | pub:windows_setup_2 [2023/09/16 05:52] (current) – removed derek | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | == windows setup | ||
- | |||
- | === install essentials | ||
- | |||
- | * run everything in **admin powershell** | ||
- | <code powershell> | ||
- | # prepare DRV | ||
- | New-Item -Force -ItemType Directory -Path ' | ||
- | $download_url = " | ||
- | $WebClient = New-Object System.Net.WebClient | ||
- | $WebClient.DownloadFile($download_url, | ||
- | Set-Location C:\drv | ||
- | .\curl.exe -o wget.exe -L http:// | ||
- | .\curl.exe -o 7za.exe -L http:// | ||
- | |||
- | # install chocolatey | ||
- | Set-ExecutionPolicy Bypass -Scope Process -Force | ||
- | [System.Net.ServicePointManager]:: | ||
- | iex ((New-Object System.Net.WebClient).DownloadString(' | ||
- | |||
- | # config chocolatey | ||
- | choco feature enable -n allowGlobalConfirmation | ||
- | choco feature enable -n useRememberedArgumentsForUpgrades | ||
- | |||
- | # install essentials | ||
- | choco install 7zip.commandline wget aria2 gsudo grep curl which nircmd choco-cleaner peazip.install | ||
- | #choco install microsoft-windows-terminal | ||
- | |||
- | </ | ||
- | |||
- | |||