배치 스크립트를 사용하여 명령 프롬프트에서 .exe 파일 실행
MD Aminul Islam
2023년3월20일
- 제목 및 위치를 사용하여 배치 스크립트를 사용하여 명령 프롬프트에서 .exe 파일 실행
- 위치 및 파일 이름을 사용하여 배치 스크립트를 사용하여 명령 프롬프트에서 .exe 파일 실행
이 문서에서는 Batch(.bat
) 스크립트를 사용하여 .exe
유형의 파일을 실행하는 방법을 보여줍니다.
이 목적으로 사용할 수 있는 두 가지 명령이 있습니다. 다음 섹션에서 각 방법에 대해 설명하겠습니다.
제목 및 위치를 사용하여 배치 스크립트를 사용하여 명령 프롬프트에서 .exe 파일 실행
파일의 창 제목과 정확한 위치를 알고 있는 경우 다음 형식으로 명령을 사용할 수 있습니다.
start "Windows Title" c:\Location\file.exe
아래 예는 notepad.exe
파일을 엽니다.
예제 코드:
start "Notepad" c:\windows\system32\notepad.exe
위치 및 파일 이름을 사용하여 배치 스크립트를 사용하여 명령 프롬프트에서 .exe 파일 실행
아래 명령을 사용하여 .exe
파일을 열 수도 있습니다. 이 명령을 사용하려면 위치와 파일 이름이 필요합니다.
이 방법의 일반적인 형식은 다음과 같습니다.
start "c:\location\" file.exe
이 명령을 사용하여 notepad.exe
를 열 것입니다.
예제 코드:
start "c:\windows\system32" notepad.exe
여기서 설명하는 모든 방법은 Batch 스크립트를 사용하여 작성되었으며 Windows CMD에서만 작동합니다.
작가: MD Aminul Islam
Aminul Is an Expert Technical Writer and Full-Stack Developer. He has hands-on working experience on numerous Developer Platforms and SAAS startups. He is highly skilled in numerous Programming languages and Frameworks. He can write professional technical articles like Reviews, Programming, Documentation, SOP, User manual, Whitepaper, etc.
LinkedIn