📜 VBScript (WSH)

Check "Disable Windows Tips & Suggestions" Status (VBScript)

Reads the registry value behind the "Disable Windows Tips & Suggestions" tweak to confirm whether it's applied.

By WindowsScripting.com · 735 B
CheckDisableWindowsTipsStatus.vbs
' ============================================================
' CheckDisableWindowsTipsStatus.vbs
'
' Checks whether "Disable Windows Tips & Suggestions" is currently applied.
'
' Usage: cscript CheckDisableWindowsTipsStatus.vbs
' ============================================================

Option Explicit

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

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

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