배치파일
-
배치파일 실행시간 측정컴퓨터/배치파일 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+..
-
배치파일 비트/부팅/GUID컴퓨터/배치파일 2016. 4. 10. 15:01
1. csm/efi 구분bcdedit /enum {current} | find "winload.efi" && (bcdedit /set %guid% path \windows\system32\winload.efi)bcdedit /enum {current} | find "winload.efi" || (bcdedit /set %guid% path \windows\system32\winload.exe)orset bios=exebcdedit /enum bootmgr | findstr bootmgfw.efiif not errorlevel 1 set bios=efibcdedit /set !guid! path \windows\system32\winload.!bios! 2. guid for /f "tokens=1-5 us..
-
배치파일에서 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
-
배치파일 관리자모드로 자동실행컴퓨터/배치파일 2015. 9. 12. 11:28
@ECHO OFFColor 1FSETLOCAL ENABLEDELAYEDEXPANSIONpushd %~dp0 FSUTIL dirty query "!SYSTEMDRIVE!" >nulIF not !ERRORLEVEL! equ 0 ( ( ECHO SET UAC = CreateObject^("Shell.Application"^) ECHO UAC.ShellExecute "%~dpf0", ELAV, "", "runas", 1 )> "!TEMP!\OEgetPrivileges.vbs" "!TEMP!\OEgetPrivileges.vbs" DEL "!TEMP!\OEgetPrivileges.vbs" EXIT /B)------------------------------------------------------------ @e..
-
배치파일에서 Powershell 실행컴퓨터/배치파일 2015. 9. 11. 12:01
http://stackoverflow.com/questions/6037146/how-to-execute-powershell-commands-from-a-batch-file ;@echo off;Findstr -rbv ; %0 | powershell -c - ;goto:sCode set-location "HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings"set-location ZoneMap\Domainsnew-item TESTSERVERNAMEset-location TESTSERVERNAMEnew-itemproperty . -Name http -Value 2 -Type DWORD ;:sCode ;echo done;pause & goto :e..