28 lines
582 B
Markdown
28 lines
582 B
Markdown
# Choose from the list
|
|
More Scripts will follow in the future.
|
|
|
|
## Install Scripts
|
|
|
|
To use these scripts it is recommended to download them from the repository and then run them on the PC.
|
|
Keep in mind to change the execution policy to run it.
|
|
|
|
**Enable**
|
|
```powershell
|
|
Set-ExecutionPolicy Bypass
|
|
```
|
|
|
|
**Disable**
|
|
```powershell
|
|
Set-ExecutionPolicy RemoteSigned
|
|
```
|
|
|
|
* [Winget](Install/install_winget.ps1)
|
|
|
|
## Update Scripts
|
|
|
|
### Update all Applications in Windows
|
|
|
|
Open Terminal with Powershell prompt and enter this command:
|
|
```powershell
|
|
winget upgrade --all --include-unknown
|
|
``` |