// SetDisableStartMenuAds.cs // // Disable Start Menu App Suggestions. // Turns off sponsored app suggestions in the Start menu. // // Usage: dotnet new console -o SetDisableStartMenuAds, 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("SubscribedContent-338388Enabled", 0, RegistryValueKind.DWord); Console.WriteLine("Disable Start Menu App Suggestions applied.");