Seminko Posted February 28, 2015 Posted February 28, 2015 Hey fellas, is there a way for autoit to enable / disable windows aero? Thanks Seminko
l3ill Posted February 28, 2015 Posted February 28, 2015 Howdy, I would start with the registry tweak and RegWrite... Bill My Contributions... SnippetBrowser NewSciTE PathFinder Text File Manipulation FTP Connection Tester / INI File - Read, Write, Save & Load Example
Chimaera Posted February 28, 2015 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. Chimaera CopyRobo() * Hidden Admin Account Enabler * Software Location From Registry * Find Display Resolution * _ChangeServices()
Guest Posted February 28, 2015 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 Guest
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now