Advertisement
efxtv

How to remove/disable the camera app and program in Windows 10 or 11 using PowerShell/cmd

Jul 22nd, 2024
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | Cybersecurity | 0 0
  1. How to remove/disable the camera app and program in Windows 10 or 11 using PowerShell/cmd
  2.  
  3. # Run PowerShell as admin and hit the command
  4. Get-AppxPackage *camera* | Remove-AppxPackage
  5.  
  6. # Uninstall Microsoft Update Health Tools
  7. wmic product get name
  8. wmic product where name="Name of the program" call uninstall
  9. wmic product where name="Microsoft Update Health Tools" call uninstall
  10.  
  11. # To disable any program via cmd
  12. ren "C:\Program Files\Google\Chrome\Application\chrome.exe" chrome.disabled
  13.  
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement