🟣 C# / .NET 6+
Disable Start Menu App Suggestions (C#)
Turns off sponsored app suggestions in the Start menu. Applies the tweak via Microsoft.Win32.Registry.
SetDisableStartMenuAds.cs
// 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.");