Skip to content
David Kittell
David Kittell

Application & System: Development / Integration / Orchestration

  • Services
    • Application Development
    • Online Application Integration
  • Code
  • Online Tools
  • Tech Support
David Kittell

Application & System: Development / Integration / Orchestration

Windows 10 – Chocolatey Developer Setup

Posted on June 26, 2018October 7, 2020 By David Kittell
# Install Chocolatey if not installed
# Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))

Write-Host "Installing VSCode..."
choco install vscode -y

Write-Host "Installing Slack..."
 choco install slack -y

Write-Host "Installing Git..."
choco install git -y

Write-Host "Installing 7zip..."
choco install 7zip -y

# OPTIONAL - Install Microsoft Edge
# choco install microsoft-edge -y

Write-Host "Installing IrfanView..."
choco install irfanview -y
choco install irfanviewplugins -y

#Write-host "Installing WGet..."
#choco install wget -y

Write-host "Installing audacity..."
choco install audacity -y
choco install audacity-lame -y
choco install audacity-ffmpeg -y

Write-host "Installing k-lite codec pack..."
choco install k-litecodecpackfull -y

Write-host "Installing Exact Audio Copy..."
choco install eac -y

Write-Host "Installing WinRAR..."
choco install winrar -y

Write-Host "Installing Google Chrome..."
choco install googlechrome -y

Write-Host "Installing Firefox..."
choco install firefox -y

Write-Host "Installing Putty..."
choco install putty.install -y

Write-Host "Installing FileZilla..."
choco install filezilla -y

Write-Host "Installing WinSCP..."
choco install winscp -y

Write-Host "Installing Skype..."
choco install skype -y

Write-Host "Installing CCleaner..."
choco install ccleaner -y

Write-Host "Installing DropBox..."
choco install dropbox -y

Write-Host "Installing Google Docs..."
choco install google-drive-file-stream -y

Write-Host "Installing OneDrive..."
choco install onedrive -y

Write-Host "Installing SQL Server Management Studio..."
choco install sql-server-management-studio -y

Write-Host "Installing MySQL WorkBench..."
choco install mysql.workbench -y

# Install PowerShell 7
set-location ~/Downloads/
Invoke-WebRequest -Uri https://github.com/PowerShell/PowerShell/releases/download/v7.0.3/PowerShell-7.0.3-win-x64.msi  -OutFile PowerShell-7.0.3-win-x64.msi
msiexec.exe /package PowerShell-7.0.3-win-x64.msi ADD_EXPLORER_CONTEXT_MENU_OPENPOWERSHELL=1 ENABLE_PSREMOTING=1 REGISTER_MANIFEST=1 /quiet

Originally Posted on June 26, 2018
Last Updated on October 7, 2020
All information on this site is shared with the intention to help. Before any source code or program is ran on a production (non-development) system it is suggested you test it and fully understand what it is doing not just what it appears it is doing. I accept no responsibility for any damage you may do with this code.

Related

Chocolatey Code PowerShell Windows

Post navigation

Previous post
Next post

Related Posts

DNN – Rename Admin User

Posted on May 4, 2015October 26, 2015

SET NOCOUNT ON DECLARE @OldUsername nvarchar(100), @NewUsername nvarchar(100) SET @OldUsername = ‘dkittell1’ SET @NewUsername = ‘dkittell’ UPDATE dnn_Users SET [Username] = @NewUsername WHERE [Username] = @OldUsername; UPDATE aspnet_Users SET [LoweredUserName] = @NewUsername WHERE [LoweredUserName] = @OldUsername; UPDATE aspnet_Users SET [UserName] = @NewUsername WHERE [UserName] = @OldUsername; UPDATE dnn_EventLog SET [LogUserName]…

Read More

Unix Time Conversion

Posted on October 23, 2013October 26, 2015

When integrating various systems you sometimes need to convert DateTime values to an Integer, the code samples below will be helpful Public Function UnixToDateTime(ByVal strUnixTime As String) As Date UnixToDateTime = DateAdd(DateInterval.Second, Val(strUnixTime), #1/1/1970#) End Function Public Function DateTimeToUnix(ByVal dteDate As Date) As String DateTimeToUnix = System.Convert.ToInt64((dteDate – New DateTime(1970,…

Read More

printDiv

Posted on February 21, 2013October 26, 2015

function printDiv(divName) { var printContents = document.getElementById(divName).innerHTML; var originalContents = document.body.innerHTML; document.body.innerHTML = printContents; window.print(); document.body.innerHTML = originalContents; } <input type=’button’ value=’Print This Only’ onclick=’printDiv(example);’/> Originally Posted on February 21, 2013Last Updated on October 26, 2015 All information on this site is shared with the intention to help. Before any…

Read More

Code

Top Posts & Pages

  • PowerShell - Rename Pictures to Image Taken
  • Front Page
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions

Recent Posts

  • Javascript – Digital Clock with Style
  • BASH – Web Ping Log
  • BASH – Picture / Video File Name Manipulation
  • Mac OSX Terminal – Create SSH Key
  • Bash – Rename Picture

Top Posts

  • PowerShell - Rename Pictures to Image Taken
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions
  • SQLite - Auto-Increment / Auto Generate GUID
©2025 David Kittell | WordPress Theme by SuperbThemes