⚡ PowerShell 5.1+
Check "Disable News and Interests Feed" Status
Reads the current registry value behind the "Disable News and Interests Feed" tweak so you can confirm whether it's applied.
Test-DisableNewsAndInterestsStatus.ps1
<#
.SYNOPSIS
Checks whether "Disable News and Interests Feed" is currently applied.
.DESCRIPTION
Reads HKCU:\Software\Microsoft\Windows\CurrentVersion\Feeds \ ShellFeedsTaskbarViewMode and reports its current value,
or reports that it isn't set (falling back to the Windows default).
.EXAMPLE
.\Test-DisableNewsAndInterestsStatus.ps1
#>
[CmdletBinding()]
param()
$regPath = 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Feeds'
$value = Get-ItemProperty -Path $regPath -Name 'ShellFeedsTaskbarViewMode' -ErrorAction SilentlyContinue
if ($null -eq $value) {
Write-Host "'ShellFeedsTaskbarViewMode' is not set at $regPath (using the Windows default)." -ForegroundColor Yellow
} else {
Write-Host "Current value of 'ShellFeedsTaskbarViewMode': $($value.'ShellFeedsTaskbarViewMode')" -ForegroundColor Green
}