Public/Install/Install-Choco.ps1
Function Install-Choco { <# .SYNOPSIS Install chocolatey. .DESCRIPTION Install chocolatey. .PARAMETER InstallerUrl The url to the chocolatey installer. .EXAMPLE Install-Choco Chocolatey is already installed. .EXAMPLE Install-Choco -InstallerUrl 'https://chocolatey.org/install.ps1' WARNING: 'choco' was found at 'C:\ProgramData\chocolatey\bin\choco.exe'. WARNING: An existing Chocolatey installation was detected. Installation will not continue. For security reasons, this script will not overwrite existing installations. Please use choco upgrade chocolatey to handle upgrades of Chocolatey itself. If the existing installation is not functional or a prior installation did not complete, follow these steps: - Backup the files at the path listed above so you can restore your previous installation if needed - Remove the existing installation manually - Rerun this installation script - Reinstall any packages previously installed, if needed (refer to the lib folder in the backup) Once installation is completed, the backup folder is no longer needed and can be deleted. Chocolatey has been installed. .OUTPUTS PSCustomObject #> [CmdletBinding(SupportsShouldProcess)] [OutputType([PSCustomObject])] param( [String] $InstallerUrl = 'https://chocolatey.org/install.ps1' ) if ($PSCmdlet.ShouldProcess("Would install Chocolatey on $env:COMPUTERNAME if it's not already installed", "Chocolatey", "Install")) { if (!(Test-ChocoInstalled) -And (Confirm-IsAdmin)) { Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; Invoke-Expression ((New-Object System.Net.WebClient).DownloadString($InstallerUrl)) $Cmd = Get-Command "choco.exe" return [PSCustomObject]@{ Name = $Cmd.Name Path = $Cmd.Source Status = "Installed" } } else { $ChocoVersion = Get-ChocoVersion $Cmd = Get-Command "choco.exe" return [PSCustomObject]@{ Name = $Cmd.Name Path = $Cmd.Source Status = "Already installed" Version = $ChocoVersion } } } } |