Forum Discussion
HotCakeX
Mar 05, 2023MVP
Windows 11 insider Dev build 25309 allows for uninstallation of VBSCRIPT
You can now uninstall VBSCRIPT
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
No RepliesBe the first to reply