У нас вы можете посмотреть бесплатно Package Zoom (the latest version) with winget as an Win32 App in Intune (2/2) или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
In this video, we package Zoom client with always the latest version with help of a command line update tool called winget. (to see first video go: • Package Zoom (specific version) with winge... ) We package it as a Win32 app in Intune and put it in the company portal. The problem is since we don't know what is the latest version we cannot hardcode the detection rule to a specific version to check for. Instead, we create a detection script that does the checking for us. I did pretty many errors in this video, so be sure to copy the scripts from this description that are correct and working, the logic and thoughts in the video are however correct. ==Install script (PowerShell)== Install Zoom latest version using winget Author: John Bryntze Date: 20th December 2022 Find path to winget.exe $JBNWinGetResolve = Resolve-Path "C:\Program Files\WindowsApps\Microsoft.DesktopAppInstaller_*_x64__8wekyb3d8bbwe\winget.exe" $JBNWinGetPathExe = $JBNWinGetResolve[-1].Path $JBNWinGetPath = Split-Path -Path $JBNWinGetPathExe -Parent set-location $JBNWinGetPath Run winget.exe .\winget.exe install -e --id Zoom.Zoom --scope=machine --silent --accept-package-agreements --accept-source-agreements ==Detection Script (PowerShell)== Purpose: Checking that local installed Zoom is equal or greater to the latest online Author: John Bryntze Date: 20th December 2022 Find path to WinGet.exe $JBNWinGetResolve = Resolve-Path "C:\Program Files\WindowsApps\Microsoft.DesktopAppInstaller_*_x64__8wekyb3d8bbwe\winget.exe" $JBNWinGetPathExe = $JBNWinGetResolve[-1].Path $JBNWinGetPath = Split-Path -Path $JBNWinGetPathExe -Parent set-location $JBNWinGetPath What is the latest version of Zoom online $JBNSearch = .\winget.exe search -e --id Zoom.Zoom --accept-source-agreements $JBNOnlineVersion = (-split $JBNSearch[-1])[-2] What is the version installed $JBNLocalSearch = .\winget.exe list -e --id Zoom.Zoom $JBNCheckIfAvailavbleExist = (-split $JBNLocalSearch[-3])[-2] if($JBNCheckIfAvailavbleExist -eq "Available") { $JBNLocalVersion = (-split $JBNLocalSearch[-1])[-3] } else { $JBNLocalVersion = (-split $JBNLocalSearch[-1])[-2] } if($JBNLocalVersion -eq "input") { write-host "Zoom is not installed" exit 1 } if($JBNLocalVersion -ge $JBNOnlineVersion) { Write-Output "The Device got the latest version of Zoom installed" exit 0 #Detection success } else { exit 1 #Detection failed }