Forum Discussion
Bjrn1765
Sep 25, 2022Copper Contributor
Uninstall user setup Visual Studio Code
Hi community! I've just integrated Visual Studio Code user setup, due to the auto upgrade feature. The Install is fine but the Uninstall is not. Admin center status is Uninstall Failed The system ca...
- Oct 17, 2022
Rudy_Ooms_MVP I saved my script as Uninstall.ps1 and added it to my VSCodeUserSetup-x64-1.65.2.intunewin file and uploaded it. I then changed the Uninstall command to PowerShell.exe -ExecutionPolicy Bypass -WindowStyle Hidden -File Uninstall.ps1. It doesn’t work on my own machine, but on three others. So that’s fine, probably something weird with my computer.
Thank you very much Rudy for your help! 😀
Bjrn1765
Oct 13, 2022Copper Contributor
Rudy_Ooms_MVP Thanks Rudy! This code will work if I run it manually as local admin. I will test it in Intune and get back.
ps Code -EA Ignore | kill -Force
Start-Sleep 10
$Exist = Get-ChildItem 'C:\Users\*\AppData\Local\Programs\Microsoft VS Code\unins000.exe'
$Path = $Exist.FullName
$Args = '/SILENT /NORESTART /FORCECLOSEAPPLICATIONS /log="C:\ProgramData\VSCodeUninstall.log"'
Start-Process $Path -Args $Args -Wait
Oct 13, 2022
Nice to hear, please let us know the outcome when you have tested it in Intune
- Oct 17, 2022Nice to hear... dont forget to mark the response as the answer 😛
- Bjrn1765Oct 17, 2022Copper Contributor
Rudy_Ooms_MVP I saved my script as Uninstall.ps1 and added it to my VSCodeUserSetup-x64-1.65.2.intunewin file and uploaded it. I then changed the Uninstall command to PowerShell.exe -ExecutionPolicy Bypass -WindowStyle Hidden -File Uninstall.ps1. It doesn’t work on my own machine, but on three others. So that’s fine, probably something weird with my computer.
Thank you very much Rudy for your help! 😀