chocolatey-scripts/README.md

16 lines
1.0 KiB
Markdown
Raw Normal View History

2023-11-09 02:38:33 +02:00
## Installing chocolatey
```
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
```
### Installing a new laptop script from ngtech
```
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://git.ngtech.co.il/NgTech-LTD/chocolatey-scripts/raw/branch/master/new-laptop.ps1'))
2023-11-09 02:48:34 +02:00
```
### Installing chocolatey and software for a new laptop
```
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://git.ngtech.co.il/NgTech-LTD/chocolatey-scripts/raw/branch/master/install-choco-and-new-laptop-software.ps1'))
2023-11-09 02:38:33 +02:00
```