📜 VBScript (WSH)
Disable Windows Tips & Suggestions (VBScript)
Stops Windows from showing tips and suggestions notifications. Applies the tweak via WScript.Shell.RegWrite.
SetDisableWindowsTips.vbs
' ============================================================
' SetDisableWindowsTips.vbs
'
' Disable Windows Tips & Suggestions.
' Stops Windows from showing tips and suggestions notifications.
'
' Usage: cscript SetDisableWindowsTips.vbs
' ============================================================
Option Explicit
Dim objShell
Set objShell = CreateObject("WScript.Shell")
On Error Resume Next
objShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager\SoftLandingEnabled", 0, "REG_DWORD"
If Err.Number = 0 Then
WScript.Echo "Disable Windows Tips & Suggestions applied."
Else
WScript.Echo "Failed to apply tweak (Error " & Err.Number & ": " & Err.Description & ")"
End If
On Error Goto 0