diff --git a/image/autounattend_UEFI_template.xml b/image/autounattend_UEFI_template.xml deleted file mode 100644 index 392542e..0000000 --- a/image/autounattend_UEFI_template.xml +++ /dev/null @@ -1,163 +0,0 @@ - - - - - - - en-US - - ___MYLANG___ - ___MYLANG___ - en-US - ___MYLANG___ - - - - OnError - - - - - 1 - Primary - 512 - - - - 2 - EFI - 128 - - - - 3 - MSR - 128 - - - - true - Primary - 4 - - - - - - 1 - 1 - - NTFS - DE94BBA4-06D1-4D40-A16A-BFD50179D6AC - - - - 2 - 2 - - FAT32 - - - - - 3 - 4 - - C - NTFS - - - 0 - true - - - - - - 0 - 4 - - OnError - - - - true - none - - - - - - - IBM PC - Windows - - true - none - none - Central Europe Standard Time - true - - - 0 - - - - - ___MYLANG___ - ___MYLANG___ - en-US - ___MYLANG___ - - - - true - true - true - true - true - 1 - - - - - - ___MYPASS___ - true</PlainText> - </Password> - <DisplayName>___MYNAME___</DisplayName> - <Name>___MYUSER___</Name> - <Group>Administrators</Group> - </LocalAccount> - </LocalAccounts> - </UserAccounts> - <AutoLogon> - <Password> - <Value>___MYPASS___</Value> - <PlainText>true</PlainText> - </Password> - <Enabled>true</Enabled> - <LogonCount>1</LogonCount> - <Username>___MYUSER___</Username> - </AutoLogon> - <FirstLogonCommands> - <SynchronousCommand wcm:action="add"> - <Order>1</Order> - <Description>Password Never Expires</Description> - <CommandLine>cmd /C wmic useraccount where name=&quot;___MYUSER___&quot; set PasswordExpires=false</CommandLine> - </SynchronousCommand> - <SynchronousCommand wcm:action="add"> - <Order>2</Order> - <Description>Initial Setup</Description> - <CommandLine>cmd /C c:\windows\setup\scripts\SearchAutoconfig.cmd</CommandLine> - </SynchronousCommand> - </FirstLogonCommands> - </component> - </settings> - <settings pass="offlineServicing"> - <component name="Microsoft-Windows-LUA-Settings" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> - <EnableLUA>false</EnableLUA> - </component> - </settings> - <cpi:offlineImage cpi:source="wim:c:/temp/install.wim#Windows 10 Enterprise LTSC 2021 Evaluation" xmlns:cpi="urn:schemas-microsoft-com:cpi" /> -</unattend> diff --git a/image/autounattend_BIOS_template.xml b/image/autounattend_template.xml similarity index 100% rename from image/autounattend_BIOS_template.xml rename to image/autounattend_template.xml diff --git a/image/finish-boot.cmd b/image/finish-boot.cmd index 21579a7..5e213d9 100644 --- a/image/finish-boot.cmd +++ b/image/finish-boot.cmd @@ -50,24 +50,15 @@ copy /Y installer.exe %BOOT%\setup.exe echo. rem prepare unattended xml files ... -for %%A in ( +echo copying config file for unattended install [ BIOS ]... +copy /Y autounattend_template.xml %BOOT%\autounattend.xml - BIOS - UEFI - -) do ( - - echo copying config file for unattended install [ %%A ]... - copy /Y autounattend_%%A_template.xml %BOOT%\autounattend_%%A.xml - - rem prepare BIOS version ... - ..\tools\searchreplace %BOOT%\autounattend_%%A.xml ___MYUSER___ "%localadmin%" - ..\tools\searchreplace %BOOT%\autounattend_%%A.xml ___MYNAME___ "%localadmin_name%" - ..\tools\searchreplace %BOOT%\autounattend_%%A.xml ___MYPASS___ "%localadmin_password%" /S - ..\tools\searchreplace %BOOT%\autounattend_%%A.xml ___MYLANG___ "%LANG%" - echo. - -) +rem prepare BIOS version ... +..\tools\searchreplace %BOOT%\autounattend.xml ___MYUSER___ "%localadmin%" +..\tools\searchreplace %BOOT%\autounattend.xml ___MYNAME___ "%localadmin_name%" +..\tools\searchreplace %BOOT%\autounattend.xml ___MYPASS___ "%localadmin_password%" /S +..\tools\searchreplace %BOOT%\autounattend.xml ___MYLANG___ "%LANG%" +echo. if EXIST ..\company\snapshot64.exe ( echo copying LICENSED snapshot64.exe to boot image ... diff --git a/image/installer.exe b/image/installer.exe index 22f4103..56266f8 100644 Binary files a/image/installer.exe and b/image/installer.exe differ diff --git a/source/installer.pb b/source/installer.pb index 02e0aea..400f998 100644 --- a/source/installer.pb +++ b/source/installer.pb @@ -4,7 +4,7 @@ ; LICENSE : GPL ; AUTHOR : Michael H.G. Schmidt ; EMAIL : michael@schmidt2.de -; DATE : 20230220 +; DATE : 20240103 ; ------------------------------------------------------------ ; @@ -16,7 +16,7 @@ EndImport ; Get system drive Global SYS$=GetEnvironmentVariable("SystemDrive") -Procedure StartInstallation(mode$) +Procedure StartInstallation() Result = MessageRequester("+++ Windows 10 unattended Installation +++", "This will install a new OS (unattended)" + Chr(13) + @@ -32,7 +32,7 @@ Procedure StartInstallation(mode$) ; start installation ... If Result = #PB_MessageRequester_Yes - dummy=system(SYS$ + "\winsetup.exe /unattend:" + SYS$ + "\autounattend_" + mode$ + ".xml") + dummy=system(SYS$ + "\winsetup.exe /unattend:" + SYS$ + "\autounattend.xml") End EndIf @@ -79,12 +79,10 @@ Procedure ButtonHandler() Select EventGadget() Case 0 - StartInstallation("BIOS") + StartInstallation() Case 1 - StartInstallation("UEFI") - Case 2 StartCMD() - Case 3 + Case 2 StartSnapshot64() EndSelect @@ -120,23 +118,19 @@ ButtonH=H*0.1 BX0=ButtonW*3-GAP*1.5 BX1=BX0 + ButtonW + GAP BX2=BX1 + ButtonW + GAP -BX3=BX2 + ButtonW + GAP BY=H/2-ButtonH/2 ; Create Buttons -ButtonGadget(0, BX0, BY, ButtonW, ButtonH, "INSTALL (BIOS mode)", #PB_Button_MultiLine) +ButtonGadget(0, BX0, BY, ButtonW, ButtonH, "INSTALL", #PB_Button_MultiLine) BindGadgetEvent(0, @ButtonHandler()) -ButtonGadget(1, BX1, BY, ButtonW, ButtonH, "INSTALL (UEFI mode)", #PB_Button_MultiLine) +ButtonGadget(1, BX1, BY, ButtonW, ButtonH, "Commandshell"+Chr(13)+"(with network)", #PB_Button_MultiLine) BindGadgetEvent(1, @ButtonHandler()) -ButtonGadget(2, BX2, BY, ButtonW, ButtonH, "COMMAND shell"+Chr(13)+"(with network)", #PB_Button_MultiLine) +ButtonGadget(2, BX2, BY, ButtonW, ButtonH, "Snapshot"+Chr(13)+"(Backup/Restore)", #PB_Button_MultiLine) BindGadgetEvent(2, @ButtonHandler()) -ButtonGadget(3, BX3, BY, ButtonW, ButtonH, "Snapshot 64"+Chr(13)+"(Backup/Restore)", #PB_Button_MultiLine) -BindGadgetEvent(3, @ButtonHandler()) - ; MAIN LOOP Repeat : Until WaitWindowEvent() = #PB_Event_CloseWindow @@ -144,4 +138,5 @@ Repeat : Until WaitWindowEvent() = #PB_Event_CloseWindow ; CursorPosition = 125 ; FirstLine = 95 ; Folding = - -; EnableXP \ No newline at end of file +; EnableXP +