Advertisement
efxtv

Disable News and Interests In Windows10 Using PowerShell

Jul 22nd, 2024 (edited)
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | Cybersecurity | 0 0
  1. Disable News and Interests In Windows10 Using PowerShell:
  2.  
  3. # Run Powershell as admin and pass the commands:
  4. Set-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Feeds -Name ShellFeedsTaskbarViewMode -Value 2
  5. Get-Process explorer | Stop-Process -Force
  6.  
  7. # Re-enable News and Interests (if needed)
  8. Set-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Feeds -Name ShellFeedsTaskbarViewMode -Value 0
  9. Get-Process explorer | Stop-Process -Force
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement