분류전체보기
-
Windows 시스템 오류 코드 참조 목록컴퓨터/윈도우일반 2019. 7. 17. 16:32
https://docs.microsoft.com/en-us/windows/win32/debug/system-error-codes System Error Codes - Windows applications System Error Codes In this article --> Note This information is intended for developers so that the software they write can better deal with errors. If you're experiencing difficulty with an application that you're installing or running, contact customer s docs.microsoft.com 시스템 오류 코..
-
배치파일 실행시간 측정컴퓨터/배치파일 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+..
-
배치파일에서 작업시간단축(Power Policy Settings 변경 사용)컴퓨터/배치파일 2019. 2. 16. 20:29
https://docs.microsoft.com/en-us/windows/desktop/power/power-policy-settings - 순정설치기준 (균형 조정) - 배치파일에서 WIM 등 시간이 많이 걸리는 작업시 작업시간 단축을위해 call powercfg /s 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c (고성능) 배치 작업 내용 call powercfg /s 381b4222-f694-41f0-9685-ff5bb260df2e (원복)
-
MSR 파티션 삭제방법 (diskpart이용)컴퓨터/윈도우일반 2019. 2. 15. 11:03
https://msdn.microsoft.com/ko-kr/library/windows/hardware/dn898510(v=vs.85).aspx 1. Microsoft® Reserved(MSR) 파티션 - Windows 10부터는 MSR의 크기가 16MB입니다. - 파티션 관리에 도움이 되도록 각 GPT 드라이브에 MSR을 추가합니다. MSR은 파티션 ID를 받지 않는 예약된 파티션으로, 사용자 데이터를 저장할 수 없습니다 2. diskpart 사용 관리자 CMD에서 diskpart list disk select disk 3 select partition 1 delete partition override - delete partition 명령은 단순히 데이터 파티션을 삭제하는 것을 허용 - delete ..