Advertisement
jzef

startnet.cmd

Jun 1st, 2024 (edited)
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.37 KB | None | 0 0
  1. @echo off
  2. rem Created in 2024 by Gelip
  3. title WinXP SP2 64-bit UEFI on GPT or MBR
  4. cls
  5.  
  6. powercfg /s 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c >nul
  7.  
  8. echo:
  9. echo Searching CD\DVD\USB drive letter
  10. for %%i 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 "%%i:\sources\*.wim" set drive=%%i:
  11. echo:
  12. echo I found on %drive%
  13.  
  14. echo:
  15. echo Menu Choices
  16. echo:
  17. echo 1 Setup on clean disk
  18. echo 2 Setup next to another OS
  19. echo 3 Exit to CMD
  20. echo:
  21. choice /m "Select option:" /n /c:123
  22. if %errorlevel% equ 3 echo:&cmd /k
  23. if %errorlevel% equ 2 goto together
  24. if %errorlevel% equ 1 goto clean
  25.  
  26. :clean
  27.  
  28. echo Making partitions EFI, OS and one of the remaining space
  29. :disks
  30. cls
  31. (
  32. echo list disk
  33. )>list.txt
  34. diskpart /s list.txt
  35. echo:
  36. set /p disk=Please enter the disk number:
  37. if [%disk%]==[] (goto disks)
  38. cls
  39. (
  40. echo sel disk %disk%
  41. echo clean
  42. echo list disk
  43. )>sel.txt
  44. diskpart /s sel.txt
  45. if %errorlevel% neq 0 echo:&&pause&&goto disks
  46. for /f "tokens=6,7 delims= " %%a in ('echo list disk ^| diskpart ^| find "Disk %disk%"') do set mb=%%a&&set un=%%b
  47. if "%un%"=="GB" set /a mb=%mb%*1024&&set un=%un:GB=MB%
  48.  
  49. :parts
  50. echo:
  51. set part=0
  52. set /p part=Enter size OS partition in MB (min. 2100 MB, max. %mb% %un%):
  53. set /a p=%part%
  54. if %p% gtr %mb% echo:&&echo The size %part% MB is large than %mb% MB&&goto parts
  55. if %p% equ 0 echo:&&echo Please enter digit (not zero)&&goto parts
  56. if %p% lss 2100 echo:&&echo The size %part% MB is small than 2100 MB&&goto parts
  57.  
  58. echo:
  59. set /p mode=Disk GPT or MBR?
  60. if %mode%==gpt (
  61. set type=efi
  62. )
  63. if %mode%==mbr (
  64. set type=pri
  65. )
  66. echo:
  67. echo Disk %mode%, partition %type%
  68.  
  69. (
  70. echo sel disk %disk%
  71. echo convert %mode% noerr
  72. echo create par %type% size=100
  73. echo format fs=fat32 label="EFI"
  74. echo assign letter u
  75. echo create par pri size=%part%
  76. echo format fs=ntfs quick label="OS"
  77. echo assign letter c
  78. echo create par pri
  79. )>prep.txt
  80. diskpart /s prep.txt
  81. rem if %errorlevel% neq 0 echo:&&pause&&goto parts
  82.  
  83. echo:
  84. echo Copying EFI folder from %drive%\sources to EFI partition
  85. echo:
  86. xcopy %drive%\sources\EFI U:\EFI /e /h /c /i
  87.  
  88. echo:
  89. wimlib-imagex apply %drive%\sources\install.wim C:
  90.  
  91. if %mode%==mbr goto manual
  92.  
  93. echo:
  94. echo Moving BCC to BCD then fix, wait...
  95. move U:\EFI\Microsoft\Boot\BCC U:\EFI\Microsoft\Boot\BCD
  96. bcdedit /set {bootmgr} device partition=U: >nul
  97. bcdedit /set {ntldr} device partition=C: >nul
  98. bcdedit /set {ntldr} custom:21000001 partition=C: >nul
  99. bcdedit /set {9eb8f329-85ae-4953-aba6-2c7d803aa4fe} device partition=C: >nul
  100. bcdedit /set {9eb8f329-85ae-4953-aba6-2c7d803aa4fe} custom:21000001 partition=C: >nul
  101. bcdedit /set {0ef2423f-74c2-4688-b906-99c3dc77d8ba} device partition=C: >nul
  102. bcdedit /set {0ef2423f-74c2-4688-b906-99c3dc77d8ba} custom:21000001 partition=C: >nul
  103.  
  104. echo:
  105. echo Adding WinXP Boot Manager to NVRAM boot menu, wait...
  106. echo:
  107. bcdedit /set {fwbootmgr} displayorder {bootmgr} /addfirst
  108.  
  109. echo:
  110. echo Moving BCD to BCC
  111. move U:\EFI\Microsoft\Boot\BCD U:\EFI\Microsoft\Boot\BCC
  112.  
  113. echo:
  114. pause
  115. wpeutil reboot
  116.  
  117. :manual
  118.  
  119. (
  120. echo sel disk %disk%
  121. echo sel par 1
  122. echo set id=1b
  123. echo sel par 2
  124. echo active
  125. )>hid.txt
  126. diskpart /s hid.txt
  127.  
  128. echo:
  129. echo Mounting and searching 100MB FAT32 partition
  130. C:\WINDOWS\mountstor -ng
  131. for %%i 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 "%%i:\EFI\Microsoft\Boot\bootxp64.efi" set efi=%%i:
  132. echo I found 100MB FAT32 at %efi%
  133.  
  134. echo:
  135. echo Fix BCC, wait...
  136. set stor=%efi%\EFI\Microsoft\Boot\BCC
  137. bcdedit /store %stor% /set {bootmgr} device partition=%efi% >nul
  138. bcdedit /store %stor% /set {ntldr} device partition=C: >nul
  139. bcdedit /store %stor% /set {ntldr} custom:21000001 partition=C: >nul
  140. bcdedit /store %stor% /set {9eb8f329-85ae-4953-aba6-2c7d803aa4fe} device partition=C: >nul
  141. bcdedit /store %stor% /set {9eb8f329-85ae-4953-aba6-2c7d803aa4fe} custom:21000001 partition=C: >nul
  142. bcdedit /store %stor% /set {0ef2423f-74c2-4688-b906-99c3dc77d8ba} device partition=C: >nul
  143. bcdedit /store %stor% /set {0ef2423f-74c2-4688-b906-99c3dc77d8ba} custom:21000001 partition=C: >nul
  144.  
  145. echo:
  146. echo Now please add WinXP Boot Manager to NVRAM boot menu in BOOTICE v1.3.3 x64:
  147. echo:
  148. echo - Click UEFI tab, Edit boot entries, Add
  149. echo - Select %efi%\EFI\Microsoft\Boot\bootxp64.efi file and click OK
  150. echo - Click Up so many times to move the entry to the first place on the list
  151. echo - Change name in Menu title: to WinXP Boot Manager
  152. echo - Click Save current boot entry, OK, Close and Exit
  153. C:\WINDOWS\bootice
  154.  
  155. echo:
  156. pause
  157. wpeutil reboot
  158.  
  159. :together
  160.  
  161. echo Making OS partition
  162. :diskst
  163. cls
  164. (
  165. echo list disk
  166. )>list.txt
  167. diskpart /s list.txt
  168. echo:
  169. set /p disk=Please enter the disk number:
  170. if [%disk%]==[] (goto diskst)
  171. (
  172. echo sel disk %disk%
  173. echo list par
  174. )>sel.txt
  175. diskpart /s sel.txt
  176. if %errorlevel% neq 0 echo:&&pause&&goto diskst
  177.  
  178. :numb
  179. echo:
  180. set pnum=0
  181. set /p pnum=Select partition number for shrink (best last):
  182. set /a pn=%pnum%
  183. if %pn% equ 0 echo:&&echo Please enter digit (not zero)&&goto numb
  184.  
  185. :partst
  186. echo:
  187. set part=0
  188. set /p part=Enter shrink size for OS partition in MB (min. 2100 MB):
  189. set /a p=%part%
  190. if %p% equ 0 echo:&&echo Please enter digit (not zero)&&goto partst
  191. if %p% lss 2100 echo:&&echo The size %part% MB is small than 2100 MB&&goto partst
  192. (
  193. echo sel disk %disk%
  194. echo sel par %pnum%
  195. echo shrink desired=%part%
  196. echo create par pri
  197. echo format fs=ntfs quick label="OS"
  198. echo assign letter z
  199. )>prep.txt
  200. diskpart /s prep.txt
  201. if %errorlevel% neq 0 (goto partst)
  202.  
  203. echo:
  204. wimlib-imagex apply %drive%\sources\install.wim Z:
  205.  
  206. echo:
  207. echo MountedDevices key fix
  208. reg load HKLM\TEMPSYSTEM "Z:\WINDOWS\system32\config\system" >nul
  209. reg copy "HKLM\SYSTEM\MountedDevices" "HKLM\TEMPSYSTEM\MountedDevices" /f >nul
  210.  
  211. reg delete "HKLM\TEMPSYSTEM\MountedDevices" /v "\DosDevices\X:" /f >nul
  212.  
  213. for /f "skip=2 tokens=3 delims= " %%c in ('"reg query "HKLM\TEMPSYSTEM\MountedDevices" /v "\DosDevices\Z:""') do (
  214. reg delete "HKLM\TEMPSYSTEM\MountedDevices" /v "\DosDevices\Z:" /f >nul
  215. reg add "HKLM\TEMPSYSTEM\MountedDevices" /v "\DosDevices\C:" /t REG_BINARY /d "%%c" /f >nul
  216. )
  217. reg unload HKLM\TEMPSYSTEM >nul
  218.  
  219. echo:
  220. set efi=U:
  221. mountvol %efi% /s
  222. echo EFI partition is on %efi%
  223.  
  224. echo:
  225. echo Copying files to EFI partition without Fonts\wgl4_boot.ttf
  226. xcopy %drive%\sources\EFI\Boot\*.* %efi%\EFI\Boot\*.* /y >nul
  227. xcopy %drive%\sources\EFI\Microsoft\Boot\*.* %efi%\EFI\Microsoft\Boot\*.* /y >nul
  228.  
  229. echo:
  230. echo Moving current BCD to BCD.bak and BCC to BCD for edit
  231. move %efi%\EFI\Microsoft\Boot\BCD %efi%\EFI\Microsoft\Boot\BCD.bak
  232. move %efi%\EFI\Microsoft\Boot\BCC %efi%\EFI\Microsoft\Boot\BCD
  233.  
  234. echo:
  235. echo Fix BCD (BCC)
  236. bcdedit /set {bootmgr} device partition=%efi% >nul
  237. bcdedit /set {ntldr} device partition=Z: >nul
  238. bcdedit /set {ntldr} custom:21000001 partition=Z: >nul
  239. bcdedit /set {9eb8f329-85ae-4953-aba6-2c7d803aa4fe} device partition=Z: >nul
  240. bcdedit /set {9eb8f329-85ae-4953-aba6-2c7d803aa4fe} custom:21000001 partition=Z: >nul
  241. bcdedit /set {0ef2423f-74c2-4688-b906-99c3dc77d8ba} device partition=Z: >nul
  242. bcdedit /set {0ef2423f-74c2-4688-b906-99c3dc77d8ba} custom:21000001 partition=Z: >nul
  243.  
  244. echo:
  245. echo Adding WinXP Boot Manager to NVRAM boot menu as first
  246. bcdedit /set {fwbootmgr} displayorder {bootmgr} /addfirst
  247.  
  248. echo:
  249. echo Moving edited BCD to BCC and BCD.bak to BCD
  250. move %efi%\EFI\Microsoft\Boot\BCD %efi%\EFI\Microsoft\Boot\BCC
  251. move %efi%\EFI\Microsoft\Boot\BCD.bak %efi%\EFI\Microsoft\Boot\BCD
  252.  
  253. echo:
  254. pause
  255. wpeutil reboot
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement