Windows 11 insider Dev build 25309 allows for uninstallation of VBSCRIPT

MVP

You can now uninstall VBSCRIPT

 

HotCakeX_0-1678015162506.png

 

 

You can either use Windows settings -> Apps to uninstall it or use the PowerShell script below:

 

 

Get-WindowsCapability -Online | Where-Object { $_.Name -like '*VBSCRIPT*' } | remove-WindowsCapability -Online

 

 

 

0 Replies