2012. 4. 20. 04:54

관리자 권한으로 실행하기

특정 application 을 항상 관리자 권한으로 실행하고 싶을때가 있습니다. 바로가기를 이용하는 방법이 제일 쉬운데 이게 여의치 않을때가 있습니다. 그러한 경우 사용할 수 있는 방법에 대해서 여기서는 구글링하다 발견한 글을 소개하겠습니다. 저는 아래 내용 중에서 ResHacker 를 이용하는 방법을 사용해 보았습니다.


출처: http://s205.codeinspot.com/q/36899


So to be allowed to edit DPIScaling.
-----------------------------------------------
Click Start - All Programs - Accessories - Right click Command Prompt and
choose Run As Administrator. Type
 
takeown /f %windir%\system32\DPIScaling.exe /a
icacls %windir%\system32\DPIScaling.exe /grant Administrators:f
 
To edit DPIScaling.exe
------------------------------
Download ResHacker from http://www.angusj.com/resourcehacker/
Application Manifests are a resource type of 24 (they don't get a name like
icons etc). Extract a copy of the manifest (Action menu). Edit it with
notepad and change
 
requestedExecutionLevel
 
from
 
requireAdministrator
 
to
 
asInvoker
 
Then use ResHacker to replace the manifest (Action menu).