batch
-
배치파일 실행시간 측정컴퓨터/배치파일 2019. 2. 16. 22:13
https://stackoverflow.com/questions/9922498/calculate-time-difference-in-windows-batch-file @echo off rem Get start time:for /F "tokens=1-4 delims=:.," %%a in ("%time%") do ( set /A "start=(((%%a*60)+1%%b %% 100)*60+1%%c %% 100)*100+1%%d %% 100") rem Any process here... rem Get end time:for /F "tokens=1-4 delims=:.," %%a in ("%time%") do ( set /A "end=(((%%a*60)+1%%b %% 100)*60+1%%c %% 100)*100+..
-
배치파일에서 ISO 이미지 DISM 버전 사용컴퓨터/배치파일 2015. 9. 23. 08:56
1. ISO 마운트 2. 배치파일for %%a in (A: B: C: D: E: F: G: H: I: J: K: L: M: N: O: P: Q: R: S: T: U: V: W: X: Y: Z:) do (if exist %%a\sources\install.wim ( set dism=%%a\sources\dism.exe goto isodism)) 3. 배치파일에서 dism 명령어 일반적 Dism /get-wiminfo /wimfile:install.wim ISO버전 :isodism%Dism% /get-wiminfo /wimfile:install.wim