카테고리 없음

auntorun.inf

컴공 2013. 6. 12. 10:50
반응형
[autorun]
action=USB열기
open=hello.exe 맨 상위가 아닌 폴더 안이면 폴더명₩hellow.exr
shell\lost=주인을 찾아주세요!
shell\lost\command=hello.exe
shell=lost

ex)
i)  아이콘파일이 있을때
    icon=rezin.ico
ii) 아이콘파일이 없을때
    icon=hello.exe


[AutoRun]
open=setup.exe
Icon=setup.exe,0
Action=setup.exe
Label=설치
Shell\Open\Command=Setup.exe

위는 Autorun.inf의 간단한 예이다.

1. Open="setup.exe"
  기본적으로 open=뒤에 있는 "setup.exe"가 실행되도록 설정하는 부분이다.

2. Icon=setup.exe,0
  아이콘을 지정하는 부분이다. 아이콘이 있는 아이콘 파일이나 프로그램을 지정하고, 여러 개가 있을 경우 뒤에 반점과 함께 원하는 번호를 지정하면 된다.

3. Action=setup.exe
  자동 실행 창이 뜰 경우 실행 메뉴에 뜨는 이름을 지정한다.

4. Label=설치
 디스크의 이름을 지정하게 된다.

5. Shell\Open\Command=Setup.exe
  내 컴퓨터에서 해당 드리이브를 더블클릭 하게 되면 Setup.exe가 실행되게 된다.
반응형