-
-
Save mmarcott/247ba8448bc410803cb7 to your computer and use it in GitHub Desktop.
Revisions
-
mmarcott revised this gist
Feb 11, 2019 . No changes.There are no files selected for viewing
-
mmarcott revised this gist
Oct 7, 2016 . 1 changed file with 16 additions and 15 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 @@ -17,28 +17,29 @@ if (Test-PendingReboot) { Invoke-Reboot } Install-WindowsUpdate -AcceptEula if (Test-PendingReboot) { Invoke-Reboot } cinst DotNet3.5 # Not automatically installed with VS 2013. Includes .NET 2.0. Uses Windows Features to install. if (Test-PendingReboot) { Invoke-Reboot } cinstm powershell #Browsers #cinst googlechrome cinst firefox #cinst flashplayerplugin #cinst javaruntime cinst adobereader # Email cinst em-client #Other essential tools cinst 7zip cinst vlc cinst ccleaner cinst pdfcreator #cinst teamviewer #cinst sumatrapdf cinst dotnet4.5 Install-ChocolateyPinnedTaskBarItem "$($Boxstarter.programFiles86)\Google\Chrome\Application\chrome.exe" -
mmarcott revised this gist
Oct 7, 2016 . 1 changed file with 4 additions and 4 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 @@ -23,18 +23,18 @@ if (Test-PendingReboot) { Invoke-Reboot } cinstm powershell #Browsers #cinstm googlechrome cinstm firefox #cinstm flashplayerplugin #cinstm javaruntime cinstm adobereader #Other essential tools cinstm 7zip cinstm vlc cinstm ccleaner cinstm pdfcreator #cinstm teamviewer #cinstm sumatrapdf cinstm dotnet4.5 # cinstm adobereader -
mmarcott revised this gist
Dec 12, 2015 . 1 changed file with 6 additions and 1 deletion.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 @@ -20,17 +20,22 @@ if (Test-PendingReboot) { Invoke-Reboot } cinstm DotNet3.5 # Not automatically installed with VS 2013. Includes .NET 2.0. Uses Windows Features to install. if (Test-PendingReboot) { Invoke-Reboot } cinstm powershell #Browsers cinstm googlechrome cinstm firefox cinstm flashplayerplugin cinstm javaruntime cinstm adobereader #Other essential tools cinstm 7zip cinstm vlc cinstm ccleaner cinstm pdfcreator cinstm teamviewer #cinstm sumatrapdf cinstm dotnet4.5 # cinstm adobereader # cinstm javaruntime -
mmarcott revised this gist
Dec 11, 2015 . 1 changed file with 1 addition and 1 deletion.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 @@ -9,7 +9,7 @@ Set-ExplorerOptions -showFileExtensions Enable-RemoteDesktop #Disable-InternetExplorerESC #Disable-UAC Set-TaskbarOptions -Size Small -Lock -Dock Bottom if (Test-PendingReboot) { Invoke-Reboot } -
mmarcott revised this gist
Dec 11, 2015 . 1 changed file with 2 additions and 1 deletion.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 @@ -31,9 +31,10 @@ cinstm ccleaner cinstm pdfcreator cinstm teamviewer cinstm sumatrapdf cinstm dotnet4.5 # cinstm adobereader # cinstm javaruntime Install-ChocolateyPinnedTaskBarItem "$($Boxstarter.programFiles86)\Google\Chrome\Application\chrome.exe" # Install-ChocolateyPinnedTaskBarItem "$($Boxstarter.programFiles86)\Microsoft Visual Studio 12.0\Common7\IDE\devenv.exe" -
mmarcott created this gist
Dec 11, 2015 .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,39 @@ # Boxstarter options $Boxstarter.RebootOk=$true # Allow reboots? $Boxstarter.NoPassword=$true # Is this a machine with no login password? #$Boxstarter.AutoLogin=$true # Save my password securely and auto-login after a reboot # Basic setup Update-ExecutionPolicy Unrestricted Set-ExplorerOptions -showFileExtensions Enable-RemoteDesktop #Disable-InternetExplorerESC #Disable-UAC Set-TaskbarSmall if (Test-PendingReboot) { Invoke-Reboot } # Update Windows and reboot if necessary Install-WindowsUpdate -AcceptEula if (Test-PendingReboot) { Invoke-Reboot } cinstm DotNet3.5 # Not automatically installed with VS 2013. Includes .NET 2.0. Uses Windows Features to install. if (Test-PendingReboot) { Invoke-Reboot } #Browsers cinstm googlechrome cinstm firefox #Other essential tools cinstm 7zip cinstm vlc cinstm ccleaner cinstm pdfcreator cinstm teamviewer cinstm sumatrapdf # cinstm adobereader # cinstm javaruntime Install-ChocolateyPinnedTaskBarItem "$($Boxstarter.programFiles86)\Google\Chrome\Application\chrome.exe" Install-ChocolateyPinnedTaskBarItem "$($Boxstarter.programFiles86)\Microsoft Visual Studio 12.0\Common7\IDE\devenv.exe"