PC · IT · DB/PC

[CMD+PowerShell] 동일 ISO 중복 마운트 방지 방법 (Prevent duplicate ISO mounting)

뿌레도 2023. 11. 6. 23:59
728x90
[CMD+PowerShell] 동일 ISO 중복 마운트 방지 방법 (Prevent duplicate ISO mounting)

 

중복 마운트 방지

 

 

How to prevent duplicate mounting of the same ISO.

 

 지난 글에서 < ISO 탑재하기 > / < Windows 부팅 시 ISO 자동 마운트 > 에 대해서 글을 썼는데 이미 마운트한 ISO도 bat파일을 실행하면 마운트되는 증상(?)이 있었습니다. 그래서 이번에는 해당 ISO 파일의 마운트 확인 후 마운트가 안된 경우에만 ISO 마운트를 실행하는 방법을 적어둡니다.

 

REM Set ISO file path
set "imgPath=C:\Password.iso"

REM Check if the ISO is already mounted
for /f "usebackq delims=" %%G in (`powershell -Command "(Get-DiskImage -ImagePath '%imgPath%').Attached"`) do set "isoStatus=%%G"

REM If the ISO is not mounted, mount it
if "%isoStatus%" == "False" (
    powershell -Command "Mount-DiskImage -ImagePath '%imgPath%'"
)

exit

 

 

파일로 가져가실 분을 위해 첨부파일 업로드

Check_Befor_Mount.bat
0.00MB

 

#cmd ISO Mount #ISO 중복 마운트 #ISO 중복 탑재 방지 #ISO 탑재되었는지 확인 #Prevent duplicate ISO mounting #동일 ISO 중복 마운트 방지 방법 #동일한 ISO 탑재 방지 #명령프롬프트 ISO 탑재 #윈도우 ISO 탑재 명령어 #탑재된 ISO 파일 경로 확인

 

이전 글

[CMD+PowerShell] 윈도우 시작시 ISO 자동 탑재하기, 가상 CDROM 필요할 때 (ISO Auto Mount)

 

[CMD+PowerShell] 윈도우 시작시 ISO 자동 탑재하기, 가상 CDROM 필요할 때 (ISO Auto Mount)

[CMD+PowerShell] 윈도우 시작시 ISO 자동 탑재하기, 가상 CDROM 필요할 때 (ISO Auto Mount) 특정 프로그램을 실행하기 위해 ISO 탑재가 필수이거나 CD-ROM이 없는 상황에서 CD-ROM을 인식해야 하는 상황이 생겨

trivia-korea.tistory.com

 

300x250