Seminko 1 Report post Posted February 28, 2015 Hey fellas, is there a way for autoit to enable / disable windows aero? Thanks Seminko Share this post Link to post Share on other sites
l3ill 69 Report post Posted February 28, 2015 Howdy, I would start with the registry tweak and RegWrite... Bill My Contributions...SnippetBrowserNewSciTEPathFinderText File ManipulationFTP Connection Tester / INI File - Read, Write, Save & Load Example Share this post Link to post Share on other sites
Chimaera 140 Report post Posted February 28, 2015 How to rapidly enable or disable Aero under Windows 7? Open a command prompt in administrator mode Click on Start > Run > type "cmd" and press CTRL + SHIFT + ENTER. To disable Aero, use this command: net stop uxsms To enable Aero back: net start uxsms Looks possible you will just have to add that to an autoit cmd command If Ive just helped you ... miracles do happen. ChimaeraCopyRobo() * Hidden Admin Account Enabler * Software Location From Registry * Find Display Resolution * _ChangeServices() Share this post Link to post Share on other sites
gil900 83 Report post Posted February 28, 2015 (edited) Disable: DllCall("dwmapi.dll", "hwnd", "DwmEnableComposition", "uint", 0) Enable: DllCall("dwmapi.dll", "hwnd", "DwmEnableComposition", "uint", 1) Note that the script need to run in order to keep the the Windows Aero disabled. If the script designed to run while the Aero is disabled then this method is better. Edited February 28, 2015 by gil900 My recommended codes (that I worte):_SharedVar - declare shared variables between 2 or more process directly on memory SciTE Console: _cin _cout for SciTE Console [ConsoleIn (!!) , ConsoleOut , ConsoleClean ..] _GUIConsole - Create and write to alternative console + Enter inputs through the consoleCODENAME-SW_130416If the English is not good in this post/code, please correct it (But do only PM). Share this post Link to post Share on other sites