I use this in a .bat to switch the Windows 7 Aero theme On / Off.
@echo off
sc interrogate uxsms | find "1062"
if %errorlevel%==0 goto :sc_start
sc stop uxsms
exit
:sc_start
sc start uxsms
exit
I use this in a .bat to switch the Windows 7 Aero theme On / Off.
@echo off
sc interrogate uxsms | find "1062"
if %errorlevel%==0 goto :sc_start
sc stop uxsms
exit
:sc_start
sc start uxsms
exit
It is the second entry I real tonight. Thank you.