dotfiles/util/chocolatey.psm1

17 lines
445 B
PowerShell
Raw Normal View History

2024-11-24 20:14:55 +00:00
function InstallPackages
{
choco.exe install (Get-Content ./util/chocolatey.list)
}
function ChocolateyInstall
{
$install = Read-Host "Install as Administrator now? [Y/n]"
if ($install.ToLower() -eq 'n')
{ return
}
# Start admin process, import this script, run 'InstallPackages' function
Start-Process powershell.exe -Verb RunAs `
-ArgumentList "-C", "'Import-Module ./chocolatey.psm1; InstallPackages'"
2024-11-24 20:14:55 +00:00
}