Created
October 9, 2012 16:42
-
-
Save shamp00/3859956 to your computer and use it in GitHub Desktop.
Access the BootCamp ControlPanel from Windows 8. Run as Administrator.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
runas /trustlevel:0x20000 "C:\Windows\System32\AppleControlPanel" | |
if %ERRORLEVEL% neq 0 goto error | |
goto OK | |
:ERROR | |
echo. | |
echo Are you sure you are running from a shortcut as Administrator? | |
pause | |
:OK |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
NOTE: 0x20000 might be different on your machine.
From a command prompt run
runas /showtrustlevels
and use the hex number for (Basic User).See http://apple.stackexchange.com/a/59132/30710 for more info