🟣 C# / .NET 6+

Disable Windows Tips & Suggestions (C#)

Stops Windows from showing tips and suggestions notifications. Applies the tweak via Microsoft.Win32.Registry.

By WindowsScripting.com · 546 B
SetDisableWindowsTips.cs
// SetDisableWindowsTips.cs
//
// Disable Windows Tips & Suggestions.
// Stops Windows from showing tips and suggestions notifications.
//
// Usage: dotnet new console -o SetDisableWindowsTips, replace Program.cs with this
// file, then dotnet run.

using System;
using Microsoft.Win32;

using RegistryKey key = Registry.CurrentUser.CreateSubKey(@"Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager");
key.SetValue("SoftLandingEnabled", 0, RegistryValueKind.DWord);

Console.WriteLine("Disable Windows Tips & Suggestions applied.");