winutil/functions/private/Install-WinUtilChoco.ps1
MyDrift 73973d7101 add function to manage taskbar item
changed from manually setting the taskbar overlay, progressvalue and progress state to setting them through a function
2024-07-12 08:00:32 +02:00

33 lines
1.0 KiB
PowerShell

function Install-WinUtilChoco {
<#
.SYNOPSIS
Installs Chocolatey if it is not already installed
#>
try {
Write-Host "Checking if Chocolatey is Installed..."
if((Test-WinUtilPackageManager -choco) -eq "installed") {
return
}
Set-WinUtilTaskbaritem -state "Indeterminate"
Write-Host "Seems Chocolatey is not installed, installing now."
Set-ExecutionPolicy Bypass -Scope Process -Force; Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) -ErrorAction Stop
powershell choco feature enable -n allowGlobalConfirmation
Set-WinUtilTaskbaritem -state "None"
}
Catch {
Write-Host "===========================================" -Foregroundcolor Red
Write-Host "-- Chocolatey failed to install ---" -Foregroundcolor Red
Write-Host "===========================================" -Foregroundcolor Red
Set-WinUtilTaskbaritem -state "Error"
}
}