Skip to content

Instantly share code, notes, and snippets.

@mmarcott
Last active February 11, 2019 20:35
Show Gist options
  • Select an option

  • Save mmarcott/247ba8448bc410803cb7 to your computer and use it in GitHub Desktop.

Select an option

Save mmarcott/247ba8448bc410803cb7 to your computer and use it in GitHub Desktop.

Revisions

  1. mmarcott revised this gist Feb 11, 2019. No changes.
  2. mmarcott revised this gist Oct 7, 2016. 1 changed file with 16 additions and 15 deletions.
    31 changes: 16 additions & 15 deletions tk
    Original 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 }

    cinstm DotNet3.5 # Not automatically installed with VS 2013. Includes .NET 2.0. Uses Windows Features to install.
    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
    #cinstm googlechrome
    cinstm firefox
    #cinstm flashplayerplugin
    #cinstm javaruntime
    cinstm adobereader
    #cinst googlechrome
    cinst firefox
    #cinst flashplayerplugin
    #cinst javaruntime
    cinst adobereader

    # Email
    cinst em-client

    #Other essential tools
    cinstm 7zip
    cinstm vlc
    cinstm ccleaner
    cinstm pdfcreator
    #cinstm teamviewer
    #cinstm sumatrapdf
    cinstm dotnet4.5
    # cinstm adobereader
    # cinstm javaruntime
    cinst 7zip
    cinst vlc
    cinst ccleaner
    cinst pdfcreator
    #cinst teamviewer
    #cinst sumatrapdf
    cinst dotnet4.5


    Install-ChocolateyPinnedTaskBarItem "$($Boxstarter.programFiles86)\Google\Chrome\Application\chrome.exe"
  3. mmarcott revised this gist Oct 7, 2016. 1 changed file with 4 additions and 4 deletions.
    8 changes: 4 additions & 4 deletions tk
    Original file line number Diff line number Diff line change
    @@ -23,18 +23,18 @@ if (Test-PendingReboot) { Invoke-Reboot }
    cinstm powershell

    #Browsers
    cinstm googlechrome
    #cinstm googlechrome
    cinstm firefox
    cinstm flashplayerplugin
    cinstm javaruntime
    #cinstm flashplayerplugin
    #cinstm javaruntime
    cinstm adobereader

    #Other essential tools
    cinstm 7zip
    cinstm vlc
    cinstm ccleaner
    cinstm pdfcreator
    cinstm teamviewer
    #cinstm teamviewer
    #cinstm sumatrapdf
    cinstm dotnet4.5
    # cinstm adobereader
  4. mmarcott revised this gist Dec 12, 2015. 1 changed file with 6 additions and 1 deletion.
    7 changes: 6 additions & 1 deletion tk
    Original 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 sumatrapdf
    cinstm dotnet4.5
    # cinstm adobereader
    # cinstm javaruntime
  5. mmarcott revised this gist Dec 11, 2015. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion tk
    Original file line number Diff line number Diff line change
    @@ -9,7 +9,7 @@ Set-ExplorerOptions -showFileExtensions
    Enable-RemoteDesktop
    #Disable-InternetExplorerESC
    #Disable-UAC
    Set-TaskbarSmall
    Set-TaskbarOptions -Size Small -Lock -Dock Bottom

    if (Test-PendingReboot) { Invoke-Reboot }

  6. mmarcott revised this gist Dec 11, 2015. 1 changed file with 2 additions and 1 deletion.
    3 changes: 2 additions & 1 deletion tk
    Original 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"
    # Install-ChocolateyPinnedTaskBarItem "$($Boxstarter.programFiles86)\Microsoft Visual Studio 12.0\Common7\IDE\devenv.exe"
  7. mmarcott created this gist Dec 11, 2015.
    39 changes: 39 additions & 0 deletions tk
    Original 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"