// 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.");