wingetautoupdate/Winget-AutoUpdate/functions/Get-WingetCmd.ps1

39 lines
1.3 KiB
PowerShell
Raw Normal View History

2022-04-13 16:50:06 +00:00
#Function to get Winget Command regarding execution context (User, System...)
2022-04-13 08:50:24 +00:00
Function Get-WingetCmd {
2022-04-13 16:50:06 +00:00
2022-04-13 08:50:24 +00:00
#Get WinGet Path (if admin context)
$ResolveWingetPath = Resolve-Path "C:\Program Files\WindowsApps\Microsoft.DesktopAppInstaller_*_x64__8wekyb3d8bbwe"
if ($ResolveWingetPath){
#If multiple version, pick last one
$WingetPath = $ResolveWingetPath[-1].Path
}
#Get Winget Location in User context
$WingetCmd = Get-Command winget.exe -ErrorAction SilentlyContinue
if ($WingetCmd){
$Script:Winget = $WingetCmd.Source
}
#Get Winget Location in System context (WinGet < 1.17)
elseif (Test-Path "$WingetPath\AppInstallerCLI.exe"){
$Script:Winget = "$WingetPath\AppInstallerCLI.exe"
}
#Get Winget Location in System context (WinGet > 1.17)
elseif (Test-Path "$WingetPath\winget.exe"){
$Script:Winget = "$WingetPath\winget.exe"
}
else{
Write-Log "Winget not installed or detected !" "Red"
return $false
}
#Run winget to list apps and accept source agrements (necessary on first run)
& $Winget list --accept-source-agreements | Out-Null
#Log Winget installed version
$WingerVer = & $Winget --version
Write-Log "Winget Version: $WingerVer"
2022-04-13 16:50:06 +00:00
2022-04-13 08:50:24 +00:00
return $true
2022-04-13 16:50:06 +00:00
2022-04-13 08:50:24 +00:00
}