mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
593a59255c
- Add script to install Bitdefender in canary workstations
9 lines
373 B
PowerShell
9 lines
373 B
PowerShell
$ResolveWingetPath = Resolve-Path "C:\Program Files\WindowsApps\Microsoft.DesktopAppInstaller_*_x64__8wekyb3d8bbwe"
|
|
if ($ResolveWingetPath){
|
|
$WingetPath = $ResolveWingetPath[-1].Path
|
|
}
|
|
|
|
$config
|
|
Set-Location $wingetpath
|
|
.\winget.exe install --id=Bitdefender.Bitdefender -e -h --accept-package-agreements --accept-source-agreements --disable-interactivity
|