Forum Discussion

AB21805's avatar
AB21805
Bronze Contributor
Jun 23, 2021

installing visual studio code via intune

Hi all,

 

Im struggling to install visual studio code exe via intune! Any suggestions on how I can do this? MSIs are easy but exes Im struggling! 

 

Thanks in advance

  • Hey AB21805,

    package the x64 installer into a .intunewin file with the tool "Microsoft Win32 Content Prep Tool"
    https://github.com/microsoft/Microsoft-Win32-Content-Prep-Tool

    and use this for the install command:
    VSCodeSetup-x64-1.57.1.exe /verysilent /norestart /mergetasks=!runcode /log="%temp%\VSCodeInstall.log"

    and this for the uninstall command:
    "C:\Program Files\Microsoft VS Code\unins000.exe" /verysilent /norestart

    The detection method should check for file exists:
    "C:\Program Files\Microsoft VS Code\Code.exe"

    best,
    Oliver
  • Hey AB21805,

    package the x64 installer into a .intunewin file with the tool "Microsoft Win32 Content Prep Tool"
    https://github.com/microsoft/Microsoft-Win32-Content-Prep-Tool

    and use this for the install command:
    VSCodeSetup-x64-1.57.1.exe /verysilent /norestart /mergetasks=!runcode /log="%temp%\VSCodeInstall.log"

    and this for the uninstall command:
    "C:\Program Files\Microsoft VS Code\unins000.exe" /verysilent /norestart

    The detection method should check for file exists:
    "C:\Program Files\Microsoft VS Code\Code.exe"

    best,
    Oliver
    • AB21805's avatar
      AB21805
      Bronze Contributor

      Hi Oliver Kieselbach 

       

      I have tried this but cant figure out where im going wrong! 

       

       

      When creating the intunewin I used the set up file as the install.bat 

       

      Any ideas where im going wrong? 

      • Just like Oliver is advising. ANother possibility would be to create a win32 app..
        IN the screenshots you send, the install command is wrong, it should be

        VSCodeSetup-ia32-1.57.1.exe /verysilent /norestart /mergetasks=!runcode /log="%temp%\VSCodeInstall.log"
    • AB21805's avatar
      AB21805
      Bronze Contributor
      Hi, just a quick one and maybe quite obvious but how do you know the location of the uninstall/install and the file name of the uninstall? Is this simply because you download it locally first?
  • What have you tried?

    You can either try it as a Line of Business MSI deployment, or WIn32 application...
  • I guess I have noted down some hints the last time I needed to do this...If its the runtime, why not deploying it with winget or chocolatey?
    • AB21805's avatar
      AB21805
      Bronze Contributor
      Hi Can you recap please? or can you please send me a link to the last time you noted this. I want to know how to deploy generic exe too so I can do this for future ones 🙂

      Oh what are winget or chocolatey?

      Thanks in advance your help is always appreciated!!

Resources