Iam having problem fresh install using the project beside my setupcomplete getting blue screen to restart during installation is this error from my setupcomplete? Code: start /w "" "%CDROM%\Updates\DX9\DXSETUP.exe" /silent :skipDX9 set CDROM= fsutil behavior set disableLastAccess 1 >nul 2>&1 net accounts /maxpwage:unlimited >nul 2>&1 powercfg /h off >nul 2>&1 powercfg /SETACVALUEINDEX 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c 7516b95f-f776-4464-8c53-06167f40cc99 3c0bc021-c8a8-4e07-a973-6b14cbcb2b7e 0 >nul 2>&1 powercfg /SETACVALUEINDEX 381b4222-f694-41f0-9685-ff5bb260df2e 7516b95f-f776-4464-8c53-06167f40cc99 3c0bc021-c8a8-4e07-a973-6b14cbcb2b7e 0 >nul 2>&1 powercfg /SETDCVALUEINDEX 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c 2a737441-1930-4402-8d77-b2bebba308a3 48e6b7a6-50f5-4782-a5d4-53bb8f07e226 0 >nul 2>&1 powercfg /SETACVALUEINDEX 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c 2a737441-1930-4402-8d77-b2bebba308a3 48e6b7a6-50f5-4782-a5d4-53bb8f07e226 0 >nul 2>&1 powercfg /SETDCVALUEINDEX 381b4222-f694-41f0-9685-ff5bb260df2e 2a737441-1930-4402-8d77-b2bebba308a3 48e6b7a6-50f5-4782-a5d4-53bb8f07e226 0 >nul 2>&1 powercfg /SETACVALUEINDEX 381b4222-f694-41f0-9685-ff5bb260df2e 2a737441-1930-4402-8d77-b2bebba308a3 48e6b7a6-50f5-4782-a5d4-53bb8f07e226 0 >nul 2>&1 powercfg /SETDCVALUEINDEX 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c 0012ee47-9041-4b5d-9b77-535fba8b1442 6738e2c4-e8a5-4a42-b16a-e040e769756e 0 >nul 2>&1 powercfg /SETACVALUEINDEX 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c 0012ee47-9041-4b5d-9b77-535fba8b1442 6738e2c4-e8a5-4a42-b16a-e040e769756e 0 >nul 2>&1 powercfg /SETDCVALUEINDEX 381b4222-f694-41f0-9685-ff5bb260df2e 0012ee47-9041-4b5d-9b77-535fba8b1442 6738e2c4-e8a5-4a42-b16a-e040e769756e 0 >nul 2>&1 powercfg /SETACVALUEINDEX 381b4222-f694-41f0-9685-ff5bb260df2e 0012ee47-9041-4b5d-9b77-535fba8b1442 6738e2c4-e8a5-4a42-b16a-e040e769756e 0 >nul 2>&1 certutil -addstore -f authroot "%windir%\Setup\Scripts\AuthRoot.sst" >nul 2>&1 set "PF=%ProgramFiles%" if not "%ProgramFiles(x86)%"=="" set "PF=%ProgramFiles(x86)%" set EdgeSetup= for /f "delims=" %%i in ('dir /b /s /a-d "%PF%\Microsoft\Edge\Application\setup.exe" 2^>nul') do (set "EdgeSetup=%%i") if "%EdgeSetup%"=="" goto skipEdgeUinstall start /w "" "%EdgeSetup%" --uninstall --system-level --force-uninstall reg delete "HKLM\SOFTWARE\Microsoft\EdgeUpdate" /f >nul 2>&1 :skipEdgeUinstall set PF= set EdgeSetup= @echo off echo "bypass online account and kms online check if geniune - fix old obsolete driver" reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OOBE /v BypassNRO /t REG_DWORD /d 1 /f reg add HKLM\SOFTWARE\Policies\Microsoft\Windows NT\CurrentVersion\Software Protection Platform /v NoGenTicket /t REG_DWORD /d 1 /f reg add HKLM\SOFTWARE\Policies\Microsoft\Dsh /v AllowNewsAndInterests /t REG_DWORD /d 0 /f reg add HKLM\SYSTEM\CurrentControlSet\Control\CI\Config /v VulnerableDriverBlocklistEnable /t REG_DWORD /d 0 /f @echo off powercfg -h off cscript.exe %windir%\system32\slmgr.vbs /upk >nul 2>&1 cscript.exe %windir%\system32\slmgr.vbs /cpky >nul 2>&1 cscript.exe %windir%\system32\slmgr.vbs /rilc cscript.exe %windir%\system32\slmgr.vbs /ipk call "%~dp0MAS_AIO.cmd" /HWID "%WINDIR%\Setup\Files\p11.exe" "%WINDIR%\Setup\Files\p12.exe" "%WINDIR%\Setup\Files\p13.exe" rd /q /s "%WINDIR%\Setup\Files" del /q /f "%0" EXIT
I know sometimes using /upk with slmgr can cause some weird issues with activations, as when you remove the product key the OS can get confused. I don't think that is the cause of the BSOD though. Is there any info shown on screen that you see before it crashes? -- so that you can roughly guess where the issue could stem from... As i see you are using echo commands to show some data on screen this may give some indication, or you could redirect the echo commands to a text file... Example: Code: @echo off echo Start log >"c:\LogData.txt" echo DXDiag Setup >>"c:\LogData.txt" start /w "" "%CDROM%\Updates\DX9\DXSETUP.exe" /silent :skipDX9 set CDROM= echo fsutil and maxpage >>"c:\LogData.txt" fsutil behavior set disableLastAccess 1 >nul 2>&1 net accounts /maxpwage:unlimited >nul 2>&1 echo PowerCFG parts. >>"c:\LogData.txt" powercfg /h off >nul 2>&1 powercfg /SETACVALUEINDEX 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c 7516b95f-f776-4464-8c53-06167f40cc99 3c0bc021-c8a8-4e07-a973-6b14cbcb2b7e 0 >nul 2>&1 powercfg /SETACVALUEINDEX 381b4222-f694-41f0-9685-ff5bb260df2e 7516b95f-f776-4464-8c53-06167f40cc99 3c0bc021-c8a8-4e07-a973-6b14cbcb2b7e 0 >nul 2>&1 powercfg /SETDCVALUEINDEX 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c 2a737441-1930-4402-8d77-b2bebba308a3 48e6b7a6-50f5-4782-a5d4-53bb8f07e226 0 >nul 2>&1 powercfg /SETACVALUEINDEX 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c 2a737441-1930-4402-8d77-b2bebba308a3 48e6b7a6-50f5-4782-a5d4-53bb8f07e226 0 >nul 2>&1 powercfg /SETDCVALUEINDEX 381b4222-f694-41f0-9685-ff5bb260df2e 2a737441-1930-4402-8d77-b2bebba308a3 48e6b7a6-50f5-4782-a5d4-53bb8f07e226 0 >nul 2>&1 powercfg /SETACVALUEINDEX 381b4222-f694-41f0-9685-ff5bb260df2e 2a737441-1930-4402-8d77-b2bebba308a3 48e6b7a6-50f5-4782-a5d4-53bb8f07e226 0 >nul 2>&1 powercfg /SETDCVALUEINDEX 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c 0012ee47-9041-4b5d-9b77-535fba8b1442 6738e2c4-e8a5-4a42-b16a-e040e769756e 0 >nul 2>&1 powercfg /SETACVALUEINDEX 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c 0012ee47-9041-4b5d-9b77-535fba8b1442 6738e2c4-e8a5-4a42-b16a-e040e769756e 0 >nul 2>&1 powercfg /SETDCVALUEINDEX 381b4222-f694-41f0-9685-ff5bb260df2e 0012ee47-9041-4b5d-9b77-535fba8b1442 6738e2c4-e8a5-4a42-b16a-e040e769756e 0 >nul 2>&1 powercfg /SETACVALUEINDEX 381b4222-f694-41f0-9685-ff5bb260df2e 0012ee47-9041-4b5d-9b77-535fba8b1442 6738e2c4-e8a5-4a42-b16a-e040e769756e 0 >nul 2>&1 echo Certutil >>"c:\LogData.txt" certutil -addstore -f authroot "%windir%\Setup\Scripts\AuthRoot.sst" >nul 2>&1 set "PF=%ProgramFiles%" if not "%ProgramFiles(x86)%"=="" set "PF=%ProgramFiles(x86)%" set EdgeSetup= echo Remove Edge...>>"c:\LogData.txt" for /f "delims=" %%i in ('dir /b /s /a-d "%PF%\Microsoft\Edge\Application\setup.exe" 2^>nul') do (set "EdgeSetup=%%i") if "%EdgeSetup%"=="" goto skipEdgeUinstall start /w "" "%EdgeSetup%" --uninstall --system-level --force-uninstall reg delete "HKLM\SOFTWARE\Microsoft\EdgeUpdate" /f >nul 2>&1 :skipEdgeUinstall set PF= set EdgeSetup= @echo off echo "bypass online account and kms online check if geniune - fix old obsolete driver" >>"c:\LogData.txt" reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OOBE /v BypassNRO /t REG_DWORD /d 1 /f reg add HKLM\SOFTWARE\Policies\Microsoft\Windows NT\CurrentVersion\Software Protection Platform /v NoGenTicket /t REG_DWORD /d 1 /f reg add HKLM\SOFTWARE\Policies\Microsoft\Dsh /v AllowNewsAndInterests /t REG_DWORD /d 0 /f reg add HKLM\SYSTEM\CurrentControlSet\Control\CI\Config /v VulnerableDriverBlocklistEnable /t REG_DWORD /d 0 /f @echo off powercfg -h off echo Slmgr parts >>"c:\LogData.txt" cscript.exe %windir%\system32\slmgr.vbs /upk >nul 2>&1 cscript.exe %windir%\system32\slmgr.vbs /cpky >nul 2>&1 cscript.exe %windir%\system32\slmgr.vbs /rilc cscript.exe %windir%\system32\slmgr.vbs /ipk echo MAS >>"c:\LogData.txt" call "%~dp0MAS_AIO.cmd" /HWID echo Run 11 >>"c:\LogData.txt" "%WINDIR%\Setup\Files\p11.exe" echo Run 12 >>"c:\LogData.txt" "%WINDIR%\Setup\Files\p12.exe" echo Run 13 >>"c:\LogData.txt" "%WINDIR%\Setup\Files\p13.exe" echo Completed. >>"c:\LogData.txt" rd /q /s "%WINDIR%\Setup\Files" del /q /f "%0" EXIT Hopefully on the C drive the log file would of been created and if the crash happens during that cmd batch then it will give a starting point where the issue is happening. With setupcomplete.cmd when the pc has crashed then it will usually get deleted on the next boot, having the log will be generated and stop logging where the crash happens. You could use the MRP option to not delete the scripts folder so your script(s) should not be affected. The option is found on the Extras tab and only shows if the Creator EXE has been run as Administrator. If i remember a few users have had weird issues when using their own programs/scripts etc with MRP so please try the option to tell MRP not to autodelete the Setup\Scripts folder when it completes, as you have the RD scripts line in your script that will clean up everything when all your 11/12/13 parts have run. If the not delete scripts option is not used then what could be happening is that MRP wipes the Scripts folder and so anything being run at that moment could cause the BSOD as the program or script being run would be corrupted/wiped etc.
Uploaded MRP 154 RC4 for beta testers Some slight update to DMI code again, hopefully if 'Default String' wording returned then it will be ignored for use for the Model Name, it could still miss the checks and insert 'Default string' as before this is because windows setup could insert it before MRP has had a chance to change or remove it.
Looks like its picked the model from another area. May do more checks so if 'default string' found in other dmi areas to ignore that wording too.
Hi, Motherboard gigabyte Z590 AORUS ELITE AX it get's branded as Systemax Spoiler: MRP Multi-OEM/Retail Project Version : CY23M05D25-R152.BL - BaseLine [MDL Forum ONLY] The extracted OEM's folder structure appears correct. Installed DotNet Framework{s} : v1.1.4322, v2.0.50727, v4.0.30319, v4.8.x or later {Rev:533320} Installed Powershell Versions : 1.0, 2.0, 3.0, 4.0, 5.0, 5.1 PS Scripted Diagnostics : Unrestricted Unicode Mode In Operation : Yes {Original Code 437} Protected Main Project Files : Yes - SetupComplete and/or FirstLogOn scripts detected. Using 'MRPConfig.ini' File : Yes - Checking for any selected options. Config Creator Version Used : 55.0 {Advanced Mode} MRP User Options Pre-Check : Completed OK MRP Extra Debug Logging Mode : Enabled W1x TitleBar Colorization : Enabled - Title Bars will be colorized to Grey. See log notes later. Highlight Colorization : Disabled - Default Color of theme will be used. Change Lock/Login Screen's : Enabled - Screen's will be replaced via the brand's theme. Confirm File Delete : Disabled - User is not notified when a file/folder is being deleted. {Win8.x/1x Kernels} Show 'ThisPC' On Desktop : Enabled - Display the icon on the Desktop. Project Uses Silent Operation : Enabled - Some scripts may still show their information screens. MRP Deletes 'Scripts' Folder : Enabled - This will delete ALL the contents of the Scripts folder when MRP ends. Allow W1x Local Account Setup : Enabled - This may be prevented by M$. RunOnce Method of Operation : Default Synchronous {'All at once'} [LNSEP] ---------------------------------------------------------------------------------------------------------------- [START] Primary/Branding script routines begin. [NOTES] WMIC command is present in this OS, normal processing should occur. [NOTES] Some options may not be available OR function as expected due to other factors within the OS. [NOTES] On Windows 11 and above OS's some options may be auto disabled, and/or not work as expected. [NOTES] Auto-translations will be performed on the majority of the options, unless the user has manually entered their own wording for them. [NOTES] The OS may need to be activated so that some theme elements and/or other options can be fully operative. [OSINF] ============================================================= [OSINF] =================[ Detected OS Information ]================= [OSINF] ============================================================= [OSINF] OS Install Date/Time : 11/06/2023 {UTC} -- 5:12pm [OSINF] Installation Type : Client {Non Server} [OSINF] OS Media Boot Method : Clean [OSINF] HyperVisor Detected : No [OSINF] Domain Detected : No [OSINF] Full Name : Microsoft Windows 11 Enterprise [OSINF] Stock Keeping Unit # : 4 [OSINF] Version {Product} : Windows 11 Enterprise [OSINF] Version {SKU} : Windows Enterprise [OSINF] Edition {Registry} : Enterprise [OSINF] Edition {CBS} : Professional [OSINF] Edition {Composition} : Enterprise [OSINF] Edition {Type} : General [OSINF] Architecture : 64 Bit {AR:1} [OSINF] Release Identifier : 2009 [OSINF] Short Display Version : 23H2 [OSINF] Build Information : 22621.1.amd64fre.ni_release.220506-1250 [OSINF] Internal Build Number : 22631 [OSINF] Experience Pack # : 1000.22674.1000.0 [OSINF] Branch Code Name : Nickel [OSINF] Branch Reference : ni_release [OSINF] Readiness Level : Semi-Annual Channel [Targeted CB] {8 Dec / 0xa} {Default Ref: M1} [OSINF] Reference Version : 10.0.22621.1 [OSINF] ProductID Reference : 3290 [OSINF] Update Build Revision : 2428 [OSINF] Base Build Rev Number : 1 {0x1} [OSINF] General UILang/Code : en-US / 1033 {0x409h} [OSINF] General Locale : English - United States [OSINF] Multiple Lang Names : en-US [OSINF] GeoID Nation ISO Loc : Egypt [67] [OSINF] GeoID Nation CUR Loc : Egypt [67] [OSINF] Time Zone Data {Reg} : Pacific Standard Time [OSINF] Time Zone Data {TZU} : Pacific Standard Time [OSINF] Daylight Saving Mode : No [OSINF] DST Adjust Clock Mode : Enabled/Checked [OSINF] Trusted Platform Modl : 2.0 [Enabled, Activated, Owned] [OSINF] TPM 2.x Bypass Check : N/A [OSINF] SecureBoot Bypass : N/A [OSINF] Low RAM Bypass Check : N/A [OSINF] Allow W1x WU Upgrades : N/A [MBINF] ============================================================= [MBINF] =================[ Motherboard Information ]================= [MBINF] ============================================================= [MBINF] #01 SP Product Name : [Z590 AORUS ELITE AX] [MBINF] #02 CS Model Name : [Z590 AORUS ELITE AX] [MBINF] #03 BP Base Product : [Z590 AORUS ELITE AX] [MBINF] #04 BMH Vendor Name : [Gigabyte Technology Co. Ltd.] [MBINF] #05 SM System Vendor : [Gigabyte Technology Co. Ltd.] [MBINF] #06 BM Baseboard Name : [Gigabyte Technology Co. Ltd.] [MBINF] #08 BIOS or SLIC ID 0 : [N/A] [MBINF] #08 BIOS or SLIC ID 1 : [ALASKA - 1072009] [MBINF] #09 SLIC Information : [No SLIC table present] [MBINF] #09 SLIC Detect Plan : [G4] [OA2T:0] [MBINF] #11 MSDM Information : [No MSDM Table Present] [MBINF] Chassis Type : [Desktop {3}] [MBINF] PC System Type : [Desktop {0x1}] [BDINF] ============================================================= [BDINF] ==================[ Main BIOS Information ]================== [BDINF] ============================================================= [BDINF] Manufacturer/Type : [American Megatrends International, LLC.] [BDINF] Version Number : [F8a] [BDINF] SMBIOS Version : [3.3] [BDINF] Release Date : [01/24/2022] {UTC or as defined by Manufacturer location} [MPINF] ============================================================= [MPINF] ===================[ Processor Information ]================= [MPINF] ============================================================= [MPINF] Full Name : [Intel{R} Core{TM} i9-10850K CPU @ 3.60GHz] [MPINF] Description : [Intel64 Family 6 Model 165 Stepping 5] [MPINF] Architecture : [32/64 Bit] [MPINF] Current Clock Speed : [3600 Mhz] {Approx} [MPINF] Max Clock Speed : [3.6 GHz] {Approx} [MPINF] L2 Cache Size : [2560 MB] [MPINF] L3 Cache Size : [20480 MB] [MPINF] Manufacturer ID Data : [GenuineIntel] [MPINF] Processor Family : [207] [MPINF] CPUID Signature : [0A0655] [MPINF] Revision Number {Hex} : [0xa505] [MPINF] Sockets/CPU's Present : [1] [MPINF] Cores/Threads : [10] / [20] [MPINF] VT Firmware Mode : [Enabled] [MPINF] Notes: Data may vary depending if info is currently available within the database. [MPINF] Clock Speeds and Cache data are correct at the time of detection. [MPINF] Family data reference is obtained from SMBIOS, v2.0 to v2.5 is member 1 and later v2.6+ is member 2. [MELSP] ============================================================= [MELSP] ===============[ Intel: Meltdown/Spectre Data ]============== [MELSP] ============================================================= [MELSP] The Meltdown/Spectre routine was auto disabled due to not being fully compatible with this OS at this time. [MELSP] Later Intel 9th Gen and above CPU's have internal hardware-based protections against 2 variants of Meltdown/Spectre. [MMINF] ============================================================= [MMINF] ====================[ Memory Information ]=================== [MMINF] ============================================================= [MMINF] Total Physical : 31.87 GB [MMINF] Used During Setup : 1.36 GB [MMINF] Available : 30.51 GB [95.74%] [MMINF] Type Number : 3 [MMINF] Design Type : DDR4 {26} [MMINF] Category : Non-ECC [MMINF] Max Board Sockets : 4 - May vary depending on the Motherboard's original test design/revision. [MMINF] Max Capacity : 65536 MB - Depends on how the Chipset's memory array handles this information. [MMINF] Max Per Socket/Slot : 16384 MB {Approx Value} [SUOEA] ============================================================= [SUOEA] ===[ Show Other User Options Applied/Enabled Or Disabled ]=== [SUOEA] ============================================================= [SUOEA] =====================[ Applied Options ]===================== [SUOEA] ============================================================= [NOAMT] Disable any 'Automatic Computer Maintenance' scheduled tasks, like cleanup desktop shortcuts etc. [CPANV] Change the Control Panel's window view to Category {Default}. [SDLEV] Drive Letter view set as: OS default. Usually after any drive labels. [SATCM] No 'Administrative Tools' Context Menu items was selected for addition. [AWLBM] Enable 'F8 Legacy OS Boot Menu'. This may not always work on some motherboards due to BIOS function key conflicts. [AAFAS] Allow Apps from anywhere, default OS setting. [NETSE] Enable File Sharing. You may still need to enable SMB v1.0 via 'Programs and Features' for some older devices to work. [REDSC] Remove the 'Microsoft Edge' desktop shortcut. This may not always work due to changes in later Edge deployment. [APVWX] Allow the old Windows 'Photoviewer' program to be associated for image previews. Set as 'default' viewer, but could get un-set by m$ in a later update. [PHONE] Allow/Keep the 'Add Phone' feature in PC Settings. Note that Adverts and some new Apps may start to appear later. [DTSED] Disable the 22H2+ 'Desktop Stickers' feature. [DDSMC] Disable Defender's 'Smart App Control', this CANNOT be reverted unless a OS reset or clean install is performed. [HVECI] Hypervisor Enforced Code Integrity has been left as OS default. Note: This can block drivers from installing. [RSSAS] No 'All Safe Apps' option{s} was selected. [NWURS] {**} Do not reserve the seven GB+ Disk Space 'Feature' for future Windows Updates. [SUOEA] ============================================================= [SUOEA] =====================[ Enabled Options ]===================== [SUOEA] ============================================================= [TOTNU] Transfer the user selected MRP Options to any 'New Users' created. This may not always copy all options/settings over due to OS permissions etc. [SCADV] The shortcut's arrow design is set to: OS Default [MSBTL] Move Win11+'s 'Start Menu' Button from central area to the left, or right, side depending on locale. [TBS11] Set Taskbar layout size to 'Default'. [DGMNW] Disable the 'Get More...' and 'Welcome Experience' notifications, mainly after updates installed. [SUOEA] =================================================== [SUOEA] ==============[ Disabled MRP Options ]============= [SUOEA] =================================================== [WSTYL] User selected Wallpaper Style: Not set, using the default OS, or the .theme's, value. [TBSSI] The 'Use small TaskBar icons' option was auto disabled as it can upset the Win 11+ System Tray layout. [AOTCM] The Add 'OEM Info' option was auto disabled as it is no longer operative for Builds above 22100. [EBTRD] The 'Battery Time Remaining' option was auto disabled as the device appears to be non battery operated. [EXEXR] Expand Explorer Ribbon option was auto disabled on Win 11+ to prevent issues. [HVCIS] Advanced HVCI Option: Was ignored because the special Option's variable was not set via oobe.cmd file. [TBVW1] Some Taskbar view options have been auto disabled as they can cause issues on Windows 11+ OS Kernels. [INFOS] =================================================== [INFOS] ============[ {xx} Marked Information ]============ [INFOS] =================================================== [INFOS] {**} = This can be reverted later by script, check the '\Optional\MiscExtraScripts' folder within the main MRP archive. [USRDN] ==================================================== [USRDN] ===[ User Specified System Drive Rename Routine ]=== [USRDN] ==================================================== [USRDN] The System Drive [C:] 'Local Disk' was renamed to 'SYSTEM' [USRDN] Note: On some OS Languages this may not always be shown correctly, you may have to manually change it later. [REPDR] ====================================================== [REPDR] ===[ Retail.txt/Ei.cfg/PID.txt Detection Routines ]=== [REPDR] ====================================================== [REPDR] Note: Some results may be shown as 'not detected' if the install medium was removed during OS installation. [REPDR] The 'Retail.txt' file was not detected within the 'Scripts' folder. [REPDR] The 'ei.cfg' file was not detected. [REPDR] The 'PID.txt' file was not detected. [CKDMI] ============================================================= [CKDMI] ===[ Querying DMI For OEM Manufacturer Brand Information ]=== [CKDMI] ============================================================= [CKDCF] Detected some possible DMI conflicts. [CKDCF] Possible [Z590 AORUS ELITE AX] conflict, re-checked DMI [#01] was resolved as [Systemax]. [CKDCF] DMI Internal Reference : 1/4/1 [CKDCF] DMI query routine has completed. [DCTPR] ============================================= [DCTPR] ===[ DMI or Custom Theme Data Processing ]=== [DCTPR] ============================================= [DCTPR] Systemax [#01] Manufacturer was detected for automated theme/branding. [DCTPR] ======================================= [NOACT] The no 'OEM Activation' option was not selected, OEM activation will be applied where possible. [SYSPD] ======================================= [SYSPD] ===[ Model Name Processing Routine ]=== [SYSPD] ======================================= [SETMN] BIOS defined "Z590 AORUS ELITE AX" has been applied for the Computer's 'Model' Name. {Validated} [TBPRT] =================================== [TBPRT] ===[ Theme Processing Routines ]=== [TBPRT] =================================== [USRFT] The User's specified theme was not defined. [TBTMS] =========================================== [TBTMS] ===[ Brand Transfer Management Routine ]=== [TBTMS] =========================================== [TBTMS] Brand theme that will be attempted to be used : Systemax [TBTMS] Original 'WallpaperStyle' value found within the 'Systemax.theme' file : 10 {Fill image to display resolution} [RMXML] The 'OOBE.xml' file has been processed by Windows Setup. [WPCHK] Wallpaper.jpg was transferred. [BGDFC] The brand's 'Backgrounds' folder was created. [BGDFC] The brand's 'BackgroundDefault.jpg' file was generated from the 'Wallpaper.jpg' image. [W8XAP] =========================================================== [W8XAP] ===[ Primary User Account Picture {BMP/PNG} Management ]=== [W8XAP] =========================================================== [UBREP] The primary 'User' account picture{s} was replaced with the theme's 'User810' image file. [WXAP2] ============================================================ [WXAP2] ===[ Additional User Account Picture's {PNG} Management ]=== [WXAP2] ============================================================ [UPREP] User-32.png was replaced. [UPREP] User-40.png was replaced. [UPREP] User-48.png was replaced. [UPREP] User-192.png was replaced. [X8LLR] ==================================== [X8LLR] ===[ Lock\Log-On Screen Routine ]=== [X8LLR] ==================================== [WX8LS] Lock Screen 'img100' was replaced. Original renamed as img0100. [WX8LO] The 'Log-On' Background 'img105' was replaced. Original renamed as img0105. [OTFTR] ============================================ [OTFTR] ===[ Brand/Theme Files Transfer Routine ]=== [OTFTR] ============================================ [OTFTR] The OS branding 'info' theme folder was created. [OTFTR] The theme's branding files have been transferred. [ATREP] The original 'Aero.theme' has been backed up and replaced. [ICTAO] Registry sections for 'InstallTheme' and 'CurrentTheme' was set to '$OEM$.theme'. [ATHBA] Systemax OEM brand theme was applied. [SCFLD] ==================================================== [SCFLD] ===[ SetupComplete/FirstLogOn Scripts Detection ]=== [SCFLD] ==================================================== [SCDET] Note: The 'SetupComplete.cmd' file was detected. [NOTES] Malfunction of the Project/Theme may happen if deletion of the 'Scripts' folder, or use of a forced Shutdown/Reboot command, is done within this file. [BSHCS] ============================================ [BSHCS] ===[ Primary/Branding Script Completion ]=== [BSHCS] ============================================ [BSHCS] The Primary/Branding script has completed, SetupComplete.cmd script will now be run via Windows Setup. [BSHCS] ============================================ [RBOOT] -----------------------------[ OOBE Reboot via Windows Setup ]----------------------------- [ADMAN] =================================================== [ADMAN] ============[ Add-On Manager: Started ]============ [ADMAN] =================================================== [TFFIB] The theme's registry fix was applied. Reboot is required after setup completed. [SATOU] =================================================== [SATOU] ====[ User Options that have now been applied ]==== [SATOU] =================================================== [WSTYL] Original 'WallpaperStyle' registry value: 10 - Fill image to display resolution. [TOTNU] Transfer Options to any 'New Users' created. This may not always transfer all User options/settings over due to OS Permissions. [SCADV] The shortcut's arrow design is set to: OS Default [MSBTL] Move Win11+'s 'Start Menu' Button from central area to the left, or right, side depending on locale. [TBVW1] Taskbar view options have been auto disabled as they can cause issues on this OS Build. [DGMNW] Disable the 'Get More...' and 'Welcome Experience' notifications, mainly after updates installed. [USR1X] ============================================================================== [USR1X] ===[ Colorization, User Account Pictures and Remove DefaultUser0 Routines ]=== [USR1X] ============================================================================== [USRAC] The 'Enhanced' Log-On screen registry entry has been applied. [WXSTB] Title Bar: 'Grey' color has been applied via normal and uSID routines. [NOTES] Windows may need to be activated to set the Title Bar and other colors. [WXSHL] Highlight colorization: Default OS setting. [USRAC] User Account Picture's registry entries applied. [USRRO] Windows 'Registered Owner' {Winver} registry entry was corrected and set to the primary username. [USRD0] The 'defaultuser0' account was present, removal process has started. [RDUPM] Removal of the 'defaultuser0' account was successful. [AMBPS] ================================================================= [AMBPS] ===[ Check BIOS/Boot Mode, OS Partition Type/Controller Mode ]=== [AMBPS] ================================================================= [AMBPS] BIOS/Boot Mode : UEFI [AMBPS] Partition Type : GPT {A} [AMBPS] Secure Boot : Disabled [AMHDC] Controller Mode : NVMe/PCIe {S} [EXTSR] ===================================== [EXTSR] ===[ External Add-On's Detection ]=== [EXTSR] ===================================== [AMWTL] 'WinTel' Add-On detected and processing... [AMWTL] 'WinTel' Add-On processed. [CHKLS] ============================================= [CHKLS] ===[ Detecting License\Activation Status ]=== [CHKLS] ============================================= [CHKLS] License/Activation Status : Licensed [CHKLS] License Channel Status : VL_KMSClient {CTT} [CHKLS] KMS Capable/Permitted : Yes [CHKLS] Key Management Used : Yes [CHKLS] VL/KMS Remaining Allowance : 179 days / 259196 minutes. [CHKLS] VL/KMS Activation Interval : 0 days / 120 minutes. [CHKLS] VL/KMS Renewal Interval : 1 days / 1440 minutes. [CHKLS] License Status Reason Code : 0x00000000 [CHKLS] Valid key for product's licensing channel was used for activation. [ADMAN] =============================== [ADMAN] ===[ Finalization Routines ]=== [ADMAN] =============================== [CLNUP] Clean Up Routine Processed. [ADMAN] =================================== [ADMAN] ===[ Add-On Manager: Completed ]=== [ADMAN] =================================== [ENDAM] ----------------------------------------------------------------------------- [ENDAM] ========================================================================================= [ENDAM] = = [ENDAM] = Please Note: As User options, UserTweaks or Wintel scripts have been detected it is = [ENDAM] = required for a reboot cycle to allow these options/tweaks to take full = [ENDAM] = effect. This also allows any Theme related processes to complete. = [ENDAM] = = [ENDAM] ========================================================================================= [ENDED] The Multi-OEM/Retail Project has completed. Spoiler: Debug ======================= === [MRP Debug Log ]=== ======================= Checking for OEM folder and structure... OEM's folder structure appears to be correct. Checking for CustomTheme... CustomTheme option was not defined. Check Lock/Login screen variable state... Lock/Login screen variable = Can be used for Kernel: 10.0 Lock/Login screen's will be replaced via the brand's theme. ==================================================== ===[ First selection of 'User' Options: Started ]=== ==================================================== [007] Automatic or User set System Drive Partition Name. [008] Internal Flag Variables Set. [019] Transfer the majority of MRP's user selected options to any new accounts created. [026] Use 'F8' Legacy Boot Menu policy. {May not work on some ASUS systems due to conflict with BIOS options} [032] Start of Win1x Only options section - Mail/Store Un-Pin on Taskbar etc. [039] Show 'This PC' icon on the Desktop. [041] Set Control Panel's view to Category {Default}. [043] Win1x - Title Bar/Highlight coloring initial settings. ===================================================== ===[ First selection of 'User' Options: Finished ]=== ===================================================== Transfer of options to any new User accounts later: Enabled. Pre-checks Done - Start Main Processing Section... OS Installation Date/Time : 11/06/2023 {UTC} -- 5:12pm MRP Version Installed : CY23M05D25-R152.BL MRP Config File Used : 55.0 {Advanced Mode} Unicode Mode : Operative Original Codepage : 437 =================== ===[ Variables ]=== =================== Oobe State : Under Oobe 'System' Control Install Type : Client {Non Server} OS Media Boot : Clean HyperVisor : No PC System Type : Desktop {0x1} Chassis Type : 3 {Desktop} Domain Detected: No OS Full Name : Microsoft Windows 11 Enterprise OS Name {Prod} : Windows 11 Enterprise OS SKU Version : Windows Enterprise {4} OS Architecture: x64 {AR:1} Edition {REG} : Enterprise Edition {WMIC} : Enterprise Edition {CBS} : Professional Edition {Comp} : Enterprise Edition {OSED} : Enterprise Edition {OM1} : Enterprise Edition {Type} : General Release ID : 2009 Short Disp Ver : 23H2 Build ID {R} : 22631 Build ID {V} : 22631 Build Branch{R}: ni_release Readiness Level: Semi-Annual Channel [Targeted CB] {8 Dec / 0xa} {Default Ref: M1} Reference Ver : 10.0.22621.1 ProductID Ref : 3290 Base Build Rev : 1 {0x1} UBR : 2428 RS3 Plus : Yes RS4 Plus : Yes RS5 Plus : Yes Language/Code : en-US / 1033 {0x409h} Locale : English - United States GeoID ISO Loc : Egypt [67] GeoID CUR Loc : Egypt [67] Multi Lang Data: en-US Time Zone Data : Pacific Standard Time ========================= ===[ Main Processing ]=== ========================= Obtaining Motherboard information. Checking for SLIC and MSDM tables. ================================ ===[ DMI/SMBIOS Information ]=== ================================ CSNAME : [Z590 AORUS ELITE AX] SYSMODEL : [Z590 AORUS ELITE AX] CSVENDOR : [Gigabyte Technology Co. Ltd.] SYSMNF : [Gigabyte Technology Co. Ltd.] BASEMNF : [Gigabyte Technology Co. Ltd.] BASEPRO : [Z590 AORUS ELITE AX] BIOS or SLIC ID 1 : ALASKA - 1072009 SLIC Information : No SLIC table present SLIC Detect Plan : G4 [OA2T:0] MSDM Information : No MSDM Table Present Checking CPU Data... Checking number of CPU's fitted. Checking CPU Max Clock Speed. Checking CPU Cores. Checking CPU Manufacturer. Checking CPU Threads. Checking CPU Name. Checking CPU Description. Checking CPU Datawidth, {Bits}. Checking CPU ID. Checking if CPU Virtualization mode is active or not. Checking Memory configuration. SMBIOS Memory Type: DDR4 {26}. Checking Memory Error Correction type. Checking Memory Devices/Slots. Checking Memory Max Capacity. Total Memory - 31.87 GB Used Memory - 1.36 GB Free Memory - 30.51 GB [95.74%] The Meltdown/Spectre routine was auto disabled due to not being fully compatible with this OS at this time. Code Integrity Section. HVCEnt = [Hypervisor Enforced Code Integrity has been left as OS default. Note: This can block drivers from installing.] CodeIntegrity = [Yes] Show User Options display section. Drive Label Section. The System Drive [C:] 'Local Disk' was renamed to 'SYSTEM' Checking for 'Retail.txt'. The 'Retail.txt' file was not detected within the 'Scripts' folder. Checking for 'ei.cfg'. The 'ei.cfg' file was not detected. Checking for 'Pid.txt'. The 'PID.txt' file was not detected. Querying DMI for any OEM brand information. ======================== ===[ DMI Processing ]=== ======================== CSNAME {Conf} : DMI + Database = Match [Systemax] - resolved via Conflict Resolution. Possible DMI conflicts was detected. DMI query routine has completed. Bypassed Virtual Machine data checks as DMI [Systemax] was detected. Systemax [#01] Manufacturer was detected for automated theme/branding. No 'Man2' var set. Computer 'Model Name' Processing... BIOS defined "Z590 AORUS ELITE AX" has been applied for the Computer's 'Model' Name. {Validated} Theme Processing Routines. The User's specified theme was not defined. The DMI theme 'Systemax' will be applied. Transfer Section. Windows 10: Primary User Account Picture Management Windows 10: Additional User Account Picture's Management. Processing the Lock\Log-On Screen Routine. Replaced 'img100' file. The 'Log-On' Background 'img105' was replaced. Original renamed as img0105. See the MRP log file{s}, found on the C: drive, for more enhanced details of the above sections. Processing Brand/Theme Files Transfer Routines. The '$OEM$.theme' file transferred OK. {Ref: TF} The theme's branding files have been transferred. The original 'Aero.theme' has been backed up and replaced. Registry sections for 'InstallTheme' and 'CurrentTheme' was set to '$OEM$.theme'. Systemax OEM brand theme was applied. Checking for SetupComplete/FirstLogon files within the 'Scripts' folder... The 'SetupComplete.cmd' file was detected. Malfunction of the Project/Theme may happen if deletion of the 'Scripts' folder, or use of a forced Shutdown/Reboot command, is done within this file. Option Utilization Started... Copy the User selected MRP Options into the 'Default' User hive. Unpin Mail, Store, Taskview, PeopleBand and MeetNow Options, {where selected}. Shortcut Arrow Design Option. Default No Delete Confirm, No Shortcut Prefix, Show Extensions and Classic Menus Options. Setting the selected Options in the default registry hive. Option Utilization Completed. The Primary/Branding script has completed, SetupComplete.cmd script will now be run via Windows Setup. -------------------------------------------------------------------------------- ================================================================================ ========================[ Add-On Manager - Log Section ]======================== ================================================================================ Edition Chk : [Enterprise] {Ed0} Edition Chk1 : [Enterprise] {Ed1} Edition Chk2 : [Enterprise] {W2S} Edition {Type} : [General] Pre Windows 10 : [No] Theme Reg Tweak: Applied Transfer Opts : [Yes] MSDM Routine : Not processed. DefUsr0 Removal: [Method 1N - Successful] TB/HL Routine : [Default Colors] TitleBar Color : [Grey] Highlight Color: [Default] AccentColor : [4282927692] ColorizationCol: [3293334088] AccPalletColor : [9B9A9900848381006D6B6A004C4A4800363533002625240019191900107C1000] Cols Transfer : [Yes] ====================================================== ===[ Bios Mode and OS Drive Partition Information ]=== ====================================================== A-Routine BMode: [Unknown] A-Routine DPart: [GPT] WMIC BMode : [Unknown] WMIC DPart : [MBR] Using AR DPart : [GPT] - Possible WMIC Failure. SecureBoot : [Disabled ] Controller Mode: [NVMe/PCIe {S}] ==================== ===[ Other Data ]=== ==================== External Add-On's Detection. UserTweaks.cmd not detected. _WinTel.cmd not detected. The '_WinTel_Runonce' task was not detected. 'WinTel' Detected. AO1 Flags S1 : [DUT=0], [DWT=1], [DAT=0], [DPA=0], [DOU=0], [DSC=0], [DFL=0] AO2 Flags S2 : [PRI=0], [A2B=0], [B2Z=0], [MKU=0], [OSP=0], [OPT=0] [OKF=0] AO2 Flags S3 : [SEC=0] DT Prot Status : [Enabled] TP Excl Status : [N/A] First Tidy Up : Started First Tidy Up : Used Files First Tidy Up : Remove Any Used Environment Variables First Tidy Up : Completed Detecting Activation Status... Detecting Activation Status - Done. Detecting License Channel Type... Detecting License Channel Type {1}... Processed License Channel Type. VL_KMSClient {CTT} ======================== ===[ License Status ]=== ======================== License Status : Licensed Channel Status : VL_KMSClient {CTT} VL/KMS Capable : Yes Key Management : Yes VL Grace Time : 179 days / 259196 minutes. VL Act Int. : 0 days / 120 minutes. VL Renew Time : 1 days / 1440 minutes. Reason Code : 0x00000000 {Dec: 0} Reason Text : Valid key for product's licensing channel was used for activation. Final Tidy Up : Started Final Tidy Up : Redundant Environment Variables Final Tidy Up : Redundant Environment Variables Final Tidy Up : Completed Unicode Mode : Deactivated Orig Codepage : 437 ---------------------------------------------------------------------- MRP's enhanced debug log has completed. Spoiler: Early Log --------[ Early Log ]-------- MRP install script started. Setup Log locations, main variables... Check if Unicode can be used. Unicode mode enabled. Check EditionID... MRP Used - CY23M05D25-R152.BL OS Build Info - 22621.1.amd64fre.ni_release.220506-1250 OS Product Name - Windows 11 Enterprise {from registry} OS Full Name - Microsoft Windows 11 Enterprise OS Edition - Enterprise Create cleanup script in case of a unexpected exit... Start main script processing. WMIC command is present in this OS, normal processing should occur. Check for clean or upgrade installation. Check for Powershell versions that can be used. Check for daylight saving mode. Define the OS data being installed. Define Build code name, if available. Check if OEM folder is valid. Check OS Build for Edition etc... Define local time/date format. Determine OS architecture - 32 or 64 bits. HDD/SSD Checks... Check chassis type. Check PC System Type. Check config ini data... Checking for any MRP user selected options... MRP options check - Done. Set some default Context menu variables... Set option defaults if no config ini present... Check Insider bits... Checking which OS Kernel is installed and adjust the options not used in that OS as required... Disable use MSDM Early option as it is unreliable. Check if option values are valid section... Check for valid option responses section - processing data.. Check valid section - General opts... Check valid section - now w8.x and w1x opts... Check valid section - CT Menus... Check TakeOwn CT menu if valid parameters... Checking OS Kernel Version... Detected Windows 11+ : Set specific options to no/off/defaults that are NOT operative under win 11+. Win1x options: Check if using valid parameters... Win1x Options - Almost there... Win1x Options - Almost at the end of them... Done majority of options, just a few left to do... Check valid section - Win 1x App/Games options... Apps... Games... Now Special Apps... Check valid phone opt... check valid xbox opt... Check valid Bing opts... W1x Apps/Games done. Last valid checking Section... Check valid responses section... Done. Define the Context Menu bits... Set 'Administrator' lookup via shell32 bits... Check for and set single letter options... General all OS... Win8.x and later... Win1x Apps/Games... End of single letter checks. Set default options depending on the OS Kernel installed... Checking for NEQ values and set as No etc... MRP Extra Debug Logging Mode : Enabled Start main 'Debug' log creation {if the option was enabled}... Show a few options as they being processed. Not all will be shown in this log... RunOnce Method of Operation : Default Synchronous {'All at once'} Define Chassis Type. Check for any Drive name/letter allocation. Variable pre-sets for each OS... Pre Checks for certain 'LLFlag1' options. First Option variables NEQ checks... First Option variables NEQ checks done. Check if a Server OS being installed - set specific variables required. WU Download Mode - if option used. Taskbar Management as required... Disable Internet Explorer to Edge redirection extension by default w10+ Move Start from centre to left or right depending on locale... Set Taskbar layout size to 'Default'. Start Menu Routine if selected... Still processing user selected options... No all 'Safe' removal Apps options was selected. Remove user selected Apps... Remove any user selected Game Apps... Remove any user selected Bing apps... Other C/T menu options... Define the 'SystemTools' C/Text Menu Section. Hide Most Used Apps - if applicable... CT Menu items as required by user selections... Legacy BootMenu... Enable PhotoViewer Again. Start of only Windows 1x Options... Disable Smart App Control. Disable Reserve WU Space. Remove Edge Desktop SC. Enable File Sharing... Disable Auto Maint... Detect if a Core/Home Edition installed... Check OS Language... Misc Old things if selected = BatteryUI, VolumeUI etc. Control Panel view... Checking for OEM's folder and valid structure... If the option is used - Check CustomTheme Brand Name exists. Process any other User options defined - if any... Virtual Machine detection. Checking if OS is an Insider/Preview Build. Appears as a Insider/Preview extra information obtained... Check if a HyperVisor detected. Detect OS information... Check if Client or Server installation. OS Edition re-checking and if system drive rename {if used}. Primary/Branding script routines begin. OS Language detection. Checking for TPM information. TPM information being examined... Obtaining Motherboard information... Checking .Net Framework version available... Using WMIC to recheck Motherboard information. Checking for valid SLIC and MSDM tables. Checking CPU information... Checking number of CPU's fitted. Checking CPU Max Clock Speed. Checking CPU Cores. Checking CPU Manufacturer. Checking CPU Threads. Checking CPU Name. Checking CPU Description. Checking CPU Datawidth, {Bits}. Checking CPU ID. Checking if CPU Virtualization mode is active or not. Checking Memory information... Calculate memory values... Check to see if OS is installed on a Virtual Machine... Enhanced Memory checks for Type/Speed etc. Show CPU info in MRP Log. CPU Meltdown and Spectre checks. Show Meltdown/Spectre info in MRP log. Show memory info in MRP log. OS translation will be performed, where possible, on most of the Context Menu options. Checking for Retail.txt, ei.cfg and PID.txt files. Query DMI for OEM data. Querying DMI For OEM Manufacturer Brand Information... DMI Check1. Setkey section. Detected some possible DMI conflicts. Setkey2 section. DMI query routine has completed. Computer 'Model Name' Processing. CustomTheme Checking. OEM Brand transfer routine. Wallpaper and Background transfers. Primary User Account Picture Management. Additional User Account Picture's {PNG} Management. Processing the Lock\Log-On Screen Routine. Theme definition setting. Processing Brand/Theme Files Transfer Routines. Tidying up... Checking for SetupComplete/FirstLogon files within the 'Scripts' folder. Primary/Branding script has now completed. Preparing for OOBE reboot. Early Log Completed. Some log entries may not show depending on OS etc.
MRP 154 when ready for release should certainly fix the Aurus > Systemmax , still unsure why it got confused but defiantly sorted it in 153/154
MRP 154 RC5 uploaded for beta testers. Added new option for w1x: Fully Disable Storage Sense -- This is a policy edit so it will trigger that 'Controlled by Administrator' type message and the Storage Sense option in Settings will be greyed out. This is a system wide edit so any new user it should also be disabled on too. Updated Creator to add in this option. Also Updated DMI checks to hopefully totally ignore 'Default String' and 'Default' text strings from using them for theme or model naming.
All being well mrp154 will be at baseline candidate this week. Plus public released soon after. Got a busy week , again, but i will find time to spend time on the project to meet my deadline of before 22nd November due to medical reasons. My close friends know the reason.
Just want to say thanks again, I use this once in a bit when i do a fresh install. I have to say this project has come along way since the start of it. Again thank you for the great tool. Just fresh installed my pc this weekend
Thank you. The project is usually updated within 3 months of previous release so it not something the user will need to update the project files regularly, unless something added or updated in a later version is required. The main basic operation is unchanged unless new oem themes added or updated. The Options are just that, optional choices to tweak the installed os ready for use.