README.md
December 5, 2022 ยท View on GitHub
Description
Enable or disable the start menu in one line of code.
More Info
| Submitted On | |
| By | David Rodrigues Cardeiro |
| Level | Intermediate |
| User Rating | 4.3 (13 globes from 3 users) |
| Compatibility | Microsoft Visual C++ |
| Category | Security |
| World | C / 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);