// SetDisableWindowsSpotlight.cs // // Disable Windows Spotlight on Desktop. // Turns off the Windows Spotlight rotating desktop background feature. // // Usage: dotnet new console -o SetDisableWindowsSpotlight, replace Program.cs with this // file, then dotnet run. using System; using Microsoft.Win32; using RegistryKey key = Registry.CurrentUser.CreateSubKey(@"Software\Policies\Microsoft\Windows\CloudContent"); key.SetValue("DisableSpotlightCollectionOnDesktop", 1, RegistryValueKind.DWord); Console.WriteLine("Disable Windows Spotlight on Desktop applied.");