Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- How to remove/disable the camera app and program in Windows 10 or 11 using PowerShell/cmd
- # Run PowerShell as admin and hit the command
- Get-AppxPackage *camera* | Remove-AppxPackage
- # Uninstall Microsoft Update Health Tools
- wmic product get name
- wmic product where name="Name of the program" call uninstall
- wmic product where name="Microsoft Update Health Tools" call uninstall
- # To disable any program via cmd
- ren "C:\Program Files\Google\Chrome\Application\chrome.exe" chrome.disabled
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement