Package Zoom (specific version) with winget as an Win32 App in Intune (1/2)

Поділитися
Вставка
  • Опубліковано 31 гру 2022
  • In this video, we package Zoom client with a specific version with help of a command line update tool called winget.
    We package it as a Win32 app in Intune and put it in the company portal.
    The problem is that winget.exe cannot be found without specifying the path when running under the SYSTEM account in Intune so we do a script to help to find it.
    Links
    Microsoft Win32 Content Tool: github.com/microsoft/Microsof...
    Website to search for applications by winget.exe: winget.run/
    ==Install script (PowerShell)==
    Install Zoom 5.11.8425 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 -v 5.11.8425 --scope=machine --silent --accept-package-agreements --accept-source-agreements
    ==Uninstall script (PowerShell)==
    Uninstall Zoom 5.11.8425 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 to uninstall
    .\winget.exe uninstall -e --id Zoom.Zoom --silent

КОМЕНТАРІ • 76

  • @navis462

    Truly great content, thank you so much. Please keep publishing.

  • @3143iamsam
    @3143iamsam Рік тому +2

    Another amazing Intune videos John! Thanks heaps! 💪👏

  • @0xjoe
    @0xjoe Рік тому +1

    So glad I found your channel. I'm going to get started on this tomorrow. It will be my first experience with winget :)

  • @agnostik-jesus

    Thank you very much, very helpful contend

  • @texddiaz
    @texddiaz Рік тому +1

    thanks for share master!

  • @ecuasteelo
    @ecuasteelo Рік тому +1

    Great video John. Thank you.

  • @NazidKimmie

    Awesome video! So it was posted in December 2022 - so how does this method differ from the direct Intune/Winget support deployment? Using the method I noticed that there are NO detection rules, nor doe the uninstall work. It is handy for quickly deploying an app via winget without having to win32 then uploading the installer files.

  • @chetanparker321

    Hello great video thanks, I had a question can we just keep the ID and not mention the version number? Not mentioning will auto update it to latest version right?

  • @bithibaua3706

    Thank you for this nice tutorial. Could you please make one for Google Drive?

  • @yuni1401
    @yuni1401 Рік тому +1

    As usual, great video on Winget. I followed your steps and successfully installed Zoom and another couple of applications. However, my Adobe Reader DC app is not getting installed despite following your instructions. I was wondering if you could guide me on this, please

  • @shankhan-xm1yp

    Hi, I'm trying install Autodesk.sketchbook -v

  • @MichaelAcosta

    Thanks again for your work! I was able to create a winget install package for VLC with this method and it worked with no problems, but when I made install packages for Chrome (64-bit) and Adobe Reader (64-bit) they both error with "The application was not detected after installation completed successfully". Could you do a tutorial on those two apps or DM me with the detection method? I appreciate all your help! 🙏

  • @p.cornilleau8025
    @p.cornilleau8025 Рік тому +1

    Hello, I tried with another winget application which is Samsung.SmartSwitch, the application is well installed, but I have no shortcut on the workstation. Any idea?

  • @eM7RON
    @eM7RON  +1

    This doesn’t seem to work for me. I am thinking it is probably because we have the baseline security settings enabled. Not sure exactly which setting is preventing it yet.

  • @dineshchaudhary2918

    Is there any video to upgrade any existing win32app to one specific version of app

  • @ah7020
    @ah7020 Рік тому +1

    Do you have instructions on how to deploy zoom rooms from intune and update it automatically?

  • @muhammadhassansiddiqui9129
    @muhammadhassansiddiqui9129 Рік тому +1

    Hi, I tried and facing this issue "The system cannot find the file specified. (0x80070002)"

  • @anirbansanyal1798

    Winget resolved to multiple containers. How to resolve that?

  • @tmgranli
    @tmgranli Рік тому +1

    Hello, John. First things first, thanks for a good walkthroug i like your work :)