README.md

December 5, 2022 ยท View on GitHub

Enable / Disable Start Menu

Description

Enable or disable the start menu in one line of code.

More Info

Submitted On
ByDavid Rodrigues Cardeiro
LevelIntermediate
User Rating4.3 (13 globes from 3 users)
CompatibilityMicrosoft Visual C++
CategorySecurity
WorldC / C++
Archive File

Source Code

//Disable Start Button
EnableWindow(FindWindowEx(FindWindow("Shell_TrayWnd", NULL), 0, "Button", NULL), false);
//Enable Start Button
EnableWindow(FindWindowEx(FindWindow("Shell_TrayWnd", NULL), 0, "Button", NULL), true);