TheFlyingFool
aad6373538
* Added New Options in menu * Fixed 4 items that didn't install due to typos * Found a dirty method to install best explorer alternative I've found * Minor prettification * Install NFS Tools and Mount my shares
41 lines
1.3 KiB
Markdown
41 lines
1.3 KiB
Markdown
# README #
|
|
|
|
## About "Project" ##
|
|
|
|
Little PowerShell script that installs most of the windows programs I use.
|
|
Working on getting it to setup more of the env as well
|
|
|
|
based on:
|
|
|
|
* <https://chrislayers.com/2021/08/01/scripting-winget/>
|
|
* <https://gist.github.com/Codebytes/29bf18015f6e93fca9421df73c6e512c>
|
|
* <https://gist.github.com/crutkas/6c2096eae387e544bd05cde246f23901>
|
|
|
|
Shoutout to:
|
|
[ankokudaishogun](https://www.reddit.com/user/ankokudaishogun/) for being a
|
|
HUGE help
|
|
|
|
## Usage ##
|
|
|
|
### FIRST ###
|
|
|
|
Make sure windows is up-to-date by checking for updates in settings
|
|
|
|
Check for updates from the Microsoft store
|
|
|
|
Windows 11 doesn't play nice if you don't want to use OneDrive... First command will help find some folders that need to be **FIXED**
|
|
|
|
`Get-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders\"
|
|
|
|
Second is just an example of some one of them.
|
|
|
|
`Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders\" -Name "Personal" -Value "$HOME\Documents"`
|
|
|
|
### Second ###
|
|
|
|
```ps1
|
|
PowerShell -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://git.theflyingfool.com/theflyingfool/Win_Setup/raw/branch/main/setup.ps1'))"
|
|
```
|
|
|
|
You'll get 5 menu options. Use the ones that make sense.
|