25309
1 TopicWindows 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 -Online2.4KViews1like0Comments