📜 VBScript (WSH)

Check "Disable News and Interests Feed" Status (VBScript)

Reads the registry value behind the "Disable News and Interests Feed" tweak to confirm whether it's applied.

By WindowsScripting.com · 746 B
CheckDisableNewsAndInterestsStatus.vbs
' ============================================================
' CheckDisableNewsAndInterestsStatus.vbs
'
' Checks whether "Disable News and Interests Feed" is currently applied.
'
' Usage: cscript CheckDisableNewsAndInterestsStatus.vbs
' ============================================================

Option Explicit

Dim objShell, currentValue
Set objShell = CreateObject("WScript.Shell")

On Error Resume Next
currentValue = objShell.RegRead("HKCU\Software\Microsoft\Windows\CurrentVersion\Feeds\ShellFeedsTaskbarViewMode")

If Err.Number <> 0 Then
    WScript.Echo "'ShellFeedsTaskbarViewMode' is not set (using the Windows default)."
Else
    WScript.Echo "Current value of 'ShellFeedsTaskbarViewMode': " & currentValue
End If
On Error Goto 0