반응형

자작 프로그램은 아니고 PrepFormat Disk v2.0 소스가 유용해 보여서 개선해 보았습니다.

■ 소스 출처 : https://www.autoitscript.com/forum/topic/207112-winntsetup-format-helper-tool-is-it-possible-to-move-the-gui-out-of-this-function-easily/page/4/#comments

 

PrepFormat Disk v3.0.zip
4.69MB

 

 

WinNTSetup format helper tool (Is it possible to move the GUI out of this function easily? )

I am making a basic GUI for Diskpart using examples I have found across your forum, for the purpose of preparing a hard drive for WinNTSetup5. It will format the selected drive in your choice of either MBR or GPT layout then edit WinNTSetup.ini and add the

www.autoitscript.com

MBR 소스는 그대로 유지

Func MBR_Prepare($s_Drive)
    GetDriveLetters()
    DiskPart_CreateScriptFile(GetCachePath() & 'clean.dat', 'Sel Dis ' & $s_Drive & @CRLF & 'clean' & @CRLF & 'Exit')
    DiskPart_CreateScriptFile(GetCachePath() & 'scrub.dat', 'Sel Dis ' & $s_Drive & @CRLF & 'cre par pri' & @CRLF & 'format quick fs=NTFS label=MBRscrubber' & @CRLF & 'Exit')
    DiskPart_CreateScriptFile(GetCachePath() & 'attrib.dat', 'Sel Dis ' & $s_Drive & @CRLF & 'attribute disk clear readonly' & @CRLF & 'Exit')
    DiskPart_CreateScriptFile(GetCachePath() & 'convert.dat', 'Sel Dis ' & $s_Drive & @CRLF & 'convert mbr' & @CRLF & 'Exit')
    DiskPart_CreateScriptFile(GetCachePath() & 'formatmain.dat', 'Sel Dis ' & $s_Drive & @CRLF & 'cre par pri' & @CRLF & 'format quick fs=NTFS label=Windows' & @CRLF & 'Active' & @CRLF & 'Assign letter=W' & @CRLF & 'Exit')
EndFunc   ;==>MBR_Prepare

 

GPT > System | MSR | Windows | Recovery 구성에서
각 파티션의 용량을 선택할 수 있도록 개선
MSR, Recovery 파티션은 선택 생성하도록 개선

Func GPT_Prepare($s_DiskNumber)
    GetDriveLetters()
    DiskPart_CreateScriptFile(GetCachePath() & 'clean.dat', 'Sel Dis ' & $s_DiskNumber & @CRLF & 'clean' & @CRLF & 'Exit')
    DiskPart_CreateScriptFile(GetCachePath() & 'scrub.dat', 'Sel Dis ' & $s_DiskNumber & @CRLF & 'cre par pri' & @CRLF & 'format quick fs=NTFS label=GPTscrubber' & @CRLF & 'Exit')
    DiskPart_CreateScriptFile(GetCachePath() & 'attrib.dat', 'Sel Dis ' & $s_DiskNumber & @CRLF & 'attribute disk clear readonly' & @CRLF & 'Exit')
    DiskPart_CreateScriptFile(GetCachePath() & 'convert.dat', 'Sel Dis ' & $s_DiskNumber & @CRLF & 'convert gpt' & @CRLF & 'Exit')
    DiskPart_CreateScriptFile(GetCachePath() & 'formatsystem.dat', 'Sel Dis ' & $s_DiskNumber & @CRLF & 'cre par efi size=100' & @CRLF & 'format quick fs=fat32 label=System' & @CRLF & 'assign letter=S' & @CRLF & 'Exit')
    DiskPart_CreateScriptFile(GetCachePath() & 'createmsr.dat', 'Sel Dis ' & $s_DiskNumber & @CRLF & 'cre par msr size=16' & @CRLF & 'Exit')
    DiskPart_CreateScriptFile(GetCachePath() & 'formatmain.dat', 'Sel Dis ' & $s_DiskNumber & @CRLF & 'cre par pri' & @CRLF & 'shrink minimum=450' & @CRLF & 'format quick fs=ntfs label=Windows' & @CRLF & 'assign letter=W' & @CRLF & 'Exit')
    DiskPart_CreateScriptFile(GetCachePath() & 'formatwinre.dat', 'Sel Dis ' & $s_DiskNumber & @CRLF & 'cre par pri' & @CRLF & 'format quick fs=ntfs label=WinRE' & @CRLF & 'set id=de94bba4-06d1-4d40-a16a-bfd50179d6ac' & @CRLF & 'Exit')
EndFunc   ;==>GPT_Prepare

 

왼쪽이 원본 > 오른쪽이 개선된 버전입니다.

디스크 목록에 파티션 구성을 트리뷰로 볼 수 있습니다.

 

작업할 디스크를 선택하면 GPT 생성 / MBR 생성 버튼이 활성화되고 클릭하여 파티션 작업을 진행할 수 있습니다.

 

https://learn.microsoft.com/ko-kr/windows-hardware/manufacture/desktop/configure-uefigpt-based-hard-drive-partitions?view=windows-11

 

UEFI/GPT 기반 하드 드라이브 파티션

UEFI/GPT 기반 하드 드라이브 파티션 아티클05/09/2023 기여자 13명 피드백 이 문서의 내용 --> UEFI(Unified Extensible Firmware Interface) 기반 디바이스에 Windows를 배포할 때 HDD(하드 디스크 드라이브), SSD(반도

learn.microsoft.com

 

PrepFormat Disk v3.0 개선 버전 - 움짤 GIF

반응형
반응형

파일 형식별 기본 앱 변경을 해보려고 했는데 잘 안돼서 대충 연결 프로그램 등록기로 마무리하였습니다.

└▶ OpenWithAdd랑 같은 기능을 한다고 보시면 됩니다.

└▶ 자주 사용하는 포터블 목록을 reg로 저장하고 병합하면 한 번에 일괄 등록할 수 있습니다.

Link_Program_Registrar.exe
1.21MB

 

 

Link_Program_Registrar 사용방법 - 움짤 GIF

반응형
반응형

VMWare 전체 화면에서 키보드, 마우스 입력 전환 시 상단에 표시되는 팝업 힌트 메시지 숨기는 방법을 녹화해 보았습니다. 아래 링크에 있는 2가지 방법을 영상에 담았으니 참고 하여 시도해 보세요.

  • To release input, press Ctrl+Alt.
  • To direct input to this virtual machine, press Ctrl+G

SFK_Launcher.7z
5.76MB

 

■ 원문 : https://superuser.com/questions/384205/hide-annoying-vmware-hint-to-release-input-press-ctrlalt

 

Hide annoying VMware hint "To release input, press Ctrl+Alt"

I'm running VMWare Workstation 7 on Windows 7 x64. In the guest OS (also Windows 7 x64) I have VMWare Tools installed, but the VMWare Tools service is disabled. I run the VM in full screen mode and...

superuser.com

 

팝업 힌트 메시지 숨기기 적용 - 움짤 GIF

  • To release input, press Ctrl+Alt.
  • To direct input to this virtual machine, press Ctrl+G

 

 

HxD Hex Editor - 사용법 자세히 ◀

 

■ 동영상 제목 클릭 후 전체화면(1080P)시청 가능합니다.

 

정보가 도움이 되었다면 아래 링크로 커피를 후원 해주세요. ^^

donaricano-btn

반응형
반응형

 

문제가 없으면 넘기려고 했는데 확장자 체크 연동 부분에 오류가 있어서 수정하였고, 기능을 소폭 개선해 보았습니다.

Context_Menu_Generator_v8.zip
0.69MB

 

  • 오류 수정 : 확장자 선택 *.reg, *.txt 선택 옵션값이 미선택 시에도 생성되는 부분 수정(함수 중복 사용 오류)
  • 기능 개선 1 : Setting.ini 설정 파일 생성으로 추가 옵션 우선순위 변경 및 옵션값 추가 등록 가능
  • 기능 개선 2 : 드라이브 탭 Drive, Directory, Folder 값을 설정 파일에 추가하여 변경할 수 있도록 개선

[3탄] 확장자 연동 우클릭 메뉴 생성기 v7 (2024-09-24)

https://noways.tistory.com/1965

 

[2탄] 확장자 연동 우클릭 메뉴 생성기 v6 (2024-09-22)

https://noways.tistory.com/1964

 

[1탄] 확장자 연동 우클릭 메뉴 생성기 (2024-09-20)

https://noways.tistory.com/1963

 

 

■ 동영상 제목 클릭 후 전체화면(1080P)시청 가능합니다.

정보가 도움이 되었다면 아래 링크로 커피를 후원 해주세요. ^^

donaricano-btn

반응형

+ Recent posts