|
1 | 1 | # Initial Setup & Program Installer script |
2 | 2 |
|
3 | | -This is a simple PowerShell script used for installation of various software during initial Windows setup or at a later stage if required. The script utilizes mostly WinGet but sometimes Chocolatey package managers. |
| 3 | +This is a simple PowerShell script used for installation of various software during initial Windows setup or at a later stage if required. |
| 4 | +The script utilizes mostly WinGet but for some apps Chocolatey package manager is used. |
4 | 5 |
|
5 | 6 | ## Inspiration |
6 | | -This script was inspired by , however it only incorporates software installation and no update or privacy settings can be or are changed. The script also is completely Terminal based. |
7 | | -The basic menu structure was somewhat based on . |
| 7 | +This script was inspired by , however it only incorporates software installation! No update policies or privacy settings are being changed or can be changed with it. The script's UI is also completely Terminal based. |
| 8 | +The basic menu structure was loosely based on . |
8 | 9 |
|
9 | 10 | ## Current Applications available |
10 | 11 |
|
@@ -33,34 +34,43 @@ The basic menu structure was somewhat based on : |
43 | 44 |
|
44 | | -```iex ((New-Object System.Net.WebClient).DownloadString('https://tinyurl.com/InstallerScript'))``` |
| 45 | +```ps |
| 46 | +iex ((New-Object System.Net.WebClient).DownloadString('https://tinyurl.com/InstallerScript')) |
| 47 | +``` |
45 | 48 |
|
46 | 49 | ### Use shorter command into Powershell (admin): |
47 | 50 |
|
48 | | -```iwr -useb https://tinyurl.com/InstallerScript | iex``` |
| 51 | +```ps |
| 52 | +iwr -useb https://tinyurl.com/InstallerScript | iex |
| 53 | +``` |
49 | 54 |
|
50 | | -### Manual script running: |
| 55 | +### Or Manually: |
51 | 56 |
|
52 | | -Download the script '.ps1' file from  Navigate to PowerShell application on your desktop. ** Dont forget to * Right-click * run as 'Administrator'. ** Navigate to the file download destination folder, most likely ```~\Downloads\```. Run the following command: |
| 57 | +Download the '.ps1' file from  Navigate to PowerShell application on your computer. **Dont forget to *Right-click* run as 'Administrator'.** Navigate to the downloaded file's folder, most likely ```~\Downloads\```. |
| 58 | +Run the following command: |
53 | 59 |
|
54 | | -```.\InitialSetupProgramInstaller.ps1``` |
| 60 | +```ps |
| 61 | +.\InitialSetupProgramInstaller.ps1 |
| 62 | +``` |
55 | 63 |
|
56 | 64 | #### Note |
57 | | -If you have NEVER run scripts before, you will need to enable that option by running the following command: |
58 | | -```set-executionpolicy remotesigned``` |
| 65 | +If you have NEVER run scripts before, you might need to enable that option by running the following command inside PowerShell: |
| 66 | +```ps |
| 67 | +set-executionpolicy remotesigned |
| 68 | +``` |
59 | 69 | PowerShell must once again be *Run as... 'Administrator'* |
60 | 70 |
|
61 | 71 | ## Tested |
62 | 72 | This script was tested and ran without any issues on a brand new instance of Windows 10 Pro, build 21H2. |
63 | 73 |
|
64 | 74 | ## Troubleshooting & Contributions |
65 | | -If you have any issues or encounter any bugs, [report them here.](https://github.com/KaiserDMC/InitialSetupProgramInstaller/issues) If you would like to add more apps to the script or think you can fix some issues, please feel free to create a pull requests. |
| 75 | +If you have any issues or encounter any bugs, [report them here.](https://github.com/KaiserDMC/InitialSetupProgramInstaller/issues) If you would like to add more apps to the script or think you can fix some issues, please feel free to create a pull request. |
66 | 76 |
|
0 commit comments