Last active
January 5, 2021 14:51
-
-
Save MagicAndi/ec22b9562677fc1905168859e2e094f6 to your computer and use it in GitHub Desktop.
Revisions
-
Andy P revised this gist
Oct 3, 2018 . 1 changed file with 5 additions and 6 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -44,14 +44,14 @@ iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/in # Install Utilities choco install -y notepadplusplus.install choco install -y greenshot choco install -y launchy choco install -y bleachbit.install choco install -y 7zip.install choco install -y windirstat choco install -y wincdemu choco install -y keepass.install # choco install -y Revo.Uninstaller.install choco install -y f.lux.install choco install -y adobereader choco install -y fastcopy.install @@ -60,7 +60,6 @@ choco install -y fastcopy.install choco install -y itunes choco install -y bingdesktop choco install -y cobian-backup choco install -y vlc -
Andy P revised this gist
Oct 3, 2018 . 1 changed file with 1 addition and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -39,8 +39,7 @@ Write-Host "Opening $ScriptName Script." # Install Chocolatey iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) # Install Utilities -
Andy P created this gist
Oct 3, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,101 @@ # ========================================================================== # # Script Name: Install-ProgramsForWindows10.ps1 # # Author: Andy Parkhill # # Date Created: 22/09/2016 # # Description: A simple environment setup script for Windows 10 PCs. # # ========================================================================= # ========================================================================== # Imported Modules # ========================================================================== # ========================================================================== # Constants # ========================================================================== Set-Variable ScriptName -option Constant -value "Install-ProgramsForWindows10.ps1" # ========================================================================== # Functions # ========================================================================== # ========================================================================== # Main Script Body # ========================================================================== Write-Host "Opening $ScriptName Script." # ========================================================================== # Start of Script Body # ========================================================================== # Install Chocolatey # See http://bit.ly/1a301JK iex ((new-object net.webClient).DownloadString('http://bit.ly/psChocInstall')) # Install Utilities choco install -y notepadplusplus.install choco install -y greenshot.install choco install -y launchy.install choco install -y bleachbit.install choco install -y 7zip.install choco install -y windirstat.install choco install -y wincdemu.install choco install -y keepass.install choco install -y Revo.Uninstaller.install choco install -y f.lux.install choco install -y adobereader choco install -y fastcopy.install # choco install -y cdburnerxp # choco install -y tomighty choco install -y itunes choco install -y bingdesktop choco install -y cobian-backup # Flux choco install -y vlc # Install Browsers choco install -y Firefox # choco install -y GoogleChrome # choco install -y chromium choco install -y brave # choco install -y safari -version 5.1.7.1 choco install -y vivaldi # Install Office Software choco install -y libreoffice choco install -y skype choco install -y markdownpad2 # Install Developer Tools choco install -y fiddler choco install -y winmerge choco install -y visualstudiocode # choco install -y sysinternals # Install in the tools folder # choco install -y webpi # Web Platform installer choco install -y gitextensions choco install -y ilspy choco install -y softerraldapbrowser # CMD Tools - Conemu/Cmder/Hyper? # choco install -y conemu # choco install -y cmder # Or cmdermini # choco install -y hyper # ========================================================================== # End of Script Body # ========================================================================== Write-Host "Closing $ScriptName Script." # Read-Host -Prompt "Press Enter to exit"