기술자료/OS
DEP(Data Execution Prevention) 기능 비활성화 시키기
하인도1
2009. 4. 28. 10:08
XP/2003의 경우 boot.ini 파일을 편집하여 활성화, 혹은 비활성화 처리할 수 있다.
(http://support.microsoft.com/kb/875352)
그런데 Vista에서는 boot 처리하는 로직을 별도로 구축하여 만들어서,
bcdedit.exe 라는 특수 프로그램을 통해 해당 기능을 구현할 수 있다.
만일 비활성화 시켜야 한다면,
bcdedit.exe /set {current} nx AlwaysOff
라고 입력하면된다.
활성화 시키고 싶은 경우라면,
bcdedit.exe /set {current} nx AlwaysOn
라고 입력하면 된다.
(참고 사이트 : http://www.mydigitallife.info/2007/01/15/disable-and-turn-off-or-enable-or-turn-on-data-execution-prevention-dep-in-windows-vista/ )
728x90