Done a bit to mrp 160 today, added the new 'se_' (selenium) branch/build code name in. Plus added it in to the next gui qt beta's code too. Not uploaded those yet as they still in their respective editors.
MRP 159 mis-detects activation channel information? Windows 7 fresh install, with an OEM:SLP activation MRP has even done by itself: MRP log (wrong): Code: [CHKLS] ============================================= [CHKLS] ===[ Detecting License\Activation Status ]=== [CHKLS] ============================================= [CHKLS] License/Activation Status : Licensed [CHKLS] License Channel Status : KMS_2012-R2_WIN10 {CTT} [CHKLS] Internet Connection Status : Appears not connected online [CHKLS] License Status Reason Code : 0x00000000 [CHKLS] Valid key for product's licensing channel was used for activation. QueryTool run directly after installation finished (correct): Code: Windows Activation Status : Activated Windows Licence Reason : No critical issues found Windows Product Key Channel : OEM SLP {OEM_SLP} {R:INS} Device has KMS Enabled : No KMS Auto Renewal (hook) : No MRP said WMIC method was used.
Will look into that area of mrp. I got an idea why it messed up. Luckily I have a win 7 laptop to hand to test with. May be later this week as busy until Thursday.
Managed to have a look at the Channel data section in MRP , it appears the WMIC method isn't as reliable as i thought , so have adjusted the code to use the VBScript method when a older OS (pre win 10) is detected... Hopefully this will work better Spoiler: VBScript method Code: On Error Resume Next strComputer = "." strLicTypeChannel = "" Set objWMIService = GetObject("winmgmts:[locale=ms_409]!\\" & strComputer & "\root\cimv2") Set objSWbemDateTime = CreateObject("WbemScripting.SWbemDateTime") Set colItems = objWMIService.ExecQuery( "Select * from SoftwareLicensingProduct Where PartialProductKey IS NOT NULL AND ApplicationID = '55c92734-d682-4d71-983e-d6ec3f16059f'",,48) For Each objSLP in colItems strDesc = objSLP.Description strSLPLicenseStatus = objSLP.LicenseStatus LicenseStatusReason = objSLP.LicenseStatusReason IF strLicTypeChannel = "" and InStrB(strDesc,"VOLUME_KMSCLIENT") <> 0 then strLicTypeChannel = "Volume KMS Client {VOLUME_KMSCLIENT}" end if If strLicTypeChannel = "" and InStrB(strDesc,"OEM_SLP") <> 0 then strLicTypeChannel = "OEM SLP {OEM_SLP}" end if If strLicTypeChannel = "" and InStrB(strDesc,"OEM_COA_NSLP") <> 0 then strLicTypeChannel = "OEM Certificate Of Authentication [System Builder] {OEM_COA_NSLP}" end if If strLicTypeChannel = "" and InStrB(strDesc,"VOLUME_MAK") <> 0 then strLicTypeChannel = "Volume MAK {VOLUME_MAK}" end if If strLicTypeChannel = "" and InStrB(strDesc,"VOLUME_KMS") <> 0 then strLicTypeChannel = "Volume KMS Server {VOLUME_KMS}" end if If strLicTypeChannel = "" and InStrB(strDesc,"OEM_COA_SLP") <> 0 then strLicTypeChannel = "OEM Certificate Of Authentication SLP {OEM_COA_SLP}" end if If strLicTypeChannel = "" and InStrB(strDesc,"OEM_DM") <> 0 then strLicTypeChannel = "OEM Digital Marker {OEM_DM}" end if If strLicTypeChannel = "" and InStrB(strDesc,"VOLUME_KMS_W10") <> 0 then strLicTypeChannel = "Volume KMS Windows 10 {VOLUME_KMS_W10}" end if If strLicTypeChannel = "" and InStrB(strDesc,"VOLUME_KMS_2012-R2_WIN10") <> 0 then strLicTypeChannel = "Volume KMS 2012R2 to Win10 {VOLUME_KMS_2012-R2_WIN10}" end if If strLicTypeChannel = "" and InStrB(strDesc,"VOLUME_KMS_W7") <> 0 then strLicTypeChannel = "Volume KMS Win7 {VOLUME_KMS_W7}" end if If strLicTypeChannel = "" and InStrB(strDesc,"VOLUME_KMS_WS12_R2") <> 0 then strLicTypeChannel = "Volume KMS Server 2012R2 {VOLUME_KMS_WS12_R2}" end if If strLicTypeChannel = "" and InStrB(strDesc,"VOLUME_KMS_WS16") <> 0 then strLicTypeChannel = "Volume KMS Server 2016 {VOLUME_KMS_WS16}" end if If strLicTypeChannel = "" and InStrB(strDesc,"TIMEBASED_EVAL") <> 0 then strLicTypeChannel = "Timebased Evaluation {TIMEBASED_EVAL}" end if If strLicTypeChannel = "" and InStrB(strDesc,"TIMEBASED_SUB") <> 0 then strLicTypeChannel = "Timebased Subscription {TIMEBASED_SUB}" end if If strLicTypeChannel = "" and InStrB(strDesc,"RETAIL") <> 0 then strLicTypeChannel = "Retail {RETAIL}" IF LicenseStatusReason = 1074066433 then strLicTypeChannel = "Retail/HWID" end if if strLicTypeChannel = "" then strLicTypeChannel = "Unknown" 'End If objSWbemDateTime.Value = objSLP.EvaluationEndDate strSLPEvaluationEndDate = objSWbemDateTime.GetVarDate(True) Name = objSLP.Name Desc = objSLP.Description IF Name <> "" then Name = Replace(Name, "(", "{") Name = Replace(Name, ")", "}") end if IF Desc <> "" then Desc = Replace(Desc, "(", "{") Desc = Replace(Desc, ")", "}") end if LicenseStatus = strSLPLicenseStatus LicenseStatusReason = objSLP.LicenseStatusReason LicTypeChannel = strLicTypeChannel GracePeriodRemaining = objSLP.GracePeriodRemaining IsKM = objSLP.IsKeyManagementServiceMachine ExtendedGrace = objSLP.ExtendedGrace IF ExtendedGrace < 0 then ExtendedGrace = "N/A" Wscript.Echo LicenseStatus & "|" & LicenseStatusReason & "|" & Name & "|" & Desc & "|" & LicTypeChannel & "|" & GracePeriodRemaining & "|" & ExtendedGrace & "|" & IsKM Next WMIC is still used on win 10/11 (if present or the VBScript method if WMIC not present).
Funny thing is that the vbs routine is actually slightly quicker to get results than WMIC!! Powershell would take a lot longer - not use that method, just WMIC or vbscript.
Have uploaded MRP v160 BT3 for the beta testers if they wish to test, this is with the above vbscript update and changes to the windows license detection routine to use the vbscript method when a pre w10 OS is detected or if WMIC is missing on win10/11.
Have been asked why the line below is sometimes shown in the project's log and what it means. Code: MRP was unable to obtain permission of specific registry areas [DE_I1, DE_S1], some User selected options/features may not work as expected. It references to 'DE'fender as MRP attempts to set Exclusions on some registry areas so that the tweak options can be used. Sometimes defender won't release its grip so MRP tries several methods to unlock those areas. DE_Ix = internal command using the mp set commands. DE_S× = using powershell commands. The x is how many tries usually one. The last method, (not shown), is using SETACL with TrustedInstaller rights which 99.9% gets the area away from defender's grip. Defender is particularly non cooperative with insider/Preview builds. The MRP line can also be shown if defender has been removed or disabled from the OS's wim file by other means, which throws an error that MRP interprets as defender ignoring to add to its exclusion list in its registry area or via its own add commands. The part about some options may not operate as usual is just in case things not go to plan. MRP does silently retry getting them added to the exclusion list later on if they have been flagged earlier. Used exclusions are removed at the clean up stage of the project as they are no longer needed. There may be a couple left added for the Query Tool to hopefully prevent defender messing with that if used later on. Hope that explains that line , I had mentioned it many posts ago when I added the code in the project but it's buried in the thread.
Code: Multi-OEM/Retail Project Version : CY25M01D31-R159.BL - BaseLine [Distributed via MDL Forum ONLY] MRP was unable to obtain permission of specific registry areas [DE_I1, DE_S1], some User selected options/features may not work as expected. The extracted OEM's folder structure appears to be correct. Installed DotNet Framework{s} : v1.1.4322, v2.0.50727, v3.0.30729.4926, v3.5.30729.4926, 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 MRP Project Files : Yes VBScript/vbs Information : VBScript.dll is present. WMIC.exe Information : WMIC.exe command present. Skip System RAM Checking : Yes FirstLogOn Script Present : No - FirstLogOn file is not detected SetupComplete Script Present : Yes - SetupComplete file is detected Specialize Script Present : No - Specialize file is not detected Unattend{ed} XML Present : Yes - Unattend.xml file is detected within the '\Setup\Panther' folder UserTweaks Script Present : No - UserTweaks file is not detected Wintel Script Present : No - Wintel file is not detected MAS Script Present : Yes - MAS script is detected Using 'MRPConfig.ini' File : Yes - Checking for any selected options. Config Creator Version Used : 63d.0 {Advanced Mode} {Edited 20.2.2025. 9:40:14 Locale Format} MRP User Options Pre-Check : Completed OK MRP Extra Debug Logging Mode : Disabled - No extra Debugging Log{s} will be created. W1x TitleBar Colorization : Enabled - Title Bars will be colorized to Default. 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 : Disabled - Information screens will be shown. MRP Deletes 'Scripts' Folder : Disabled - It is up to the end user to delete this folder after installation. 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] 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 : 02/20/2025 {UTC} -- 10:38am [OSINF] Installation Type : Client {Non Server} [OSINF] OS Media Boot Method : Clean [OSINF] HyperVisor Detected : No [OSINF] Domain Detected : No [OSINF] Stock Keeping Unit # : 161 [OSINF] Version {Product} : Windows 11 Pro [OSINF] Version {SKU} : Windows Pro for Workstations [OSINF] Edition {Registry} : ProfessionalWorkstation [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 : 24H2 [OSINF] Build Information : 26100.1.amd64fre.ge_release.240331-1435 [OSINF] Internal Build Number : 13000 [OSINF] Experience Pack # : 1000.26100.48.0 [OSINF] Branch Code Name : Germanium [OSINF] Branch Reference : ge_release [OSINF] Readiness Level : Semi-Annual Channel [Targeted CB] {8 Dec / 0xa} {Default Ref: M1} [OSINF] Reference Version : 10.0.26100.1 [OSINF] ProductID Reference : 3917 [OSINF] Update Build Revision : 3194 [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 : Bosnia and Herzegovina [25] [OSINF] GeoID Nation CUR Loc : Bosnia and Herzegovina [25] [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] TPM 2.x Bypass Check : N/A [OSINF] SecureBoot Bypass : N/A [OSINF] Low RAM Bypass Check : N/A [OSINF] Allow W1x WU Upgrades : Yes {0x1} [Registry Value] [MBINF] ============================================================= [MBINF] =================[ Motherboard Information ]================= [MBINF] ============================================================= [MBINF] #01 SP Product Name : [To be filled by O.E.M.] [MBINF] #02 CS Model Name : [To be filled by O.E.M.] [MBINF] #03 BP Base Product : [H77-DS3H] [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 Inc.] [BDINF] Version Number : [F5] [BDINF] SMBIOS Version : [2.7] [BDINF] Release Date : [05/14/2012] {UTC or as defined by Manufacturer location} [BDINF] Using Primary Chip : [True] [BDINF] UEFI Certifications : [None detected] [BDINF] UEFI DBX Revocations : [None detected] [BDINF] S/Boot CVE-2020-10713 : [Boothole fix not available in UEFI] [MPINF] ============================================================= [MPINF] ===================[ Processor Information ]================= [MPINF] ============================================================= [MPINF] Full Name : [Intel{R} Core{TM} i5-3330 CPU @ 3.00GHz {Ref:NVR}] [MPINF] Description : [Intel64 Family 6 Model 58 Stepping 9] [MPINF] Architecture : [32/64 Bit] [MPINF] Current Clock Speed : [3201 Mhz] {Approx} [MPINF] Max Clock Speed : [3,2 GHz] {Approx} [MPINF] L2 Cache Size : [1024 MB] [MPINF] L3 Cache Size : [6144 MB] [MPINF] Manufacturer ID Data : [GenuineIntel] [MPINF] Processor Family : [198] [MPINF] CPUID Signature : [00306A9] [MPINF] Revision Number {Hex} : [0x3a09] [MPINF] Sockets/CPU's Present : [1] [MPINF] Cores/Threads : [4] / [4] [MPINF] VT Firmware Mode : [Disabled] [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 newer hardware-based protections against Meltdown/Spectre. [SUOEA] ============================================================= [SUOEA] ===[ Show Other User Options Applied/Enabled Or Disabled ]=== [SUOEA] ============================================================= [SUOEA] =====================[ Applied Options ]===================== [SUOEA] ============================================================= [SUOEA] Translations for most of the Context Menu texts will be performed via the OS where possible. [DMSRT] Disable 'MSRT' - {Malicious Software Removal Tool}. [NOWUR] Prevent the 'Automatic Restart' after any Windows Update operations. Later CU may reset this. [AUTCU] Use a bypass to allow WU upgrading to later OS's with 'unsupported' hardware. {Experimental} [UFODT] Show the 'User' folder icon on the Desktop. [CPODT] Show the 'Control Panel' icon on the Desktop. [CPMDM] Add 'Disk Management' item to Control Panel, this allows easy access to the 'Virtual Disk Manager'. [DBSRS] Disable the 'Blue Screen Of Death's automatic OS restart, so you can view the error/stop messages. [ABWCT] Add 'About Windows' to the Desktop's Context Menu. [DIMSD] Disable the UAC's 'Secure Desktop' dimming of the Desktop, this does not disable/alter any other UAC security functions. [NOAMT] Disable any 'Automatic Computer Maintenance' scheduled tasks, like cleanup desktop shortcuts etc. [CPDCM] Add 'Control Panel' entries to the Desktop's Context Menu. [CPANV] Set the Control Panel's window view to Category {Default}. [DVTEW] Disable the creation of video thumbnails within any Explorer windows to allow easier move/delete operations. [PPCTM] Add 'Manage Power Plans' entries to the Desktop Context Menu. [OS Translated] [ESTCM] Add 'Screenshots' Context Menu entries. [OS Translated] [SDCCM] Add 'Disk Clean-up' entry to a SSD/HDD Drive's Context Menu. [CTMSI] Add 'System Information' to ThisPC/Computer's Context Menu. Wording may change via OS Translation. [DUCIR] Disable/block USB Plug-and-Play 'Co-Installers' auto-installing insecure apps/etc to prevent a possible security risk. [EAPOL] Enable 'AHCI Link Power Management' in 'Power Options'. Set to OS default. NOTE: Can cause issues if not set correctly. [SDLEV] Drive Letter view set as: OS default. Usually after any drive labels. [TOCTM] The extended 'Take Ownership' entries will be added to the Context Menus using 'English' default wording. [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. [CTNAB] Prevent Cortana from operating. Normal local 'Search Windows' functions are still available, unless Cortana was removed by other means. [REDSC] Remove 'Microsoft Edge' shortcuts. This may also appear to remove Edge from the OS. [P3DCM] Remove the 'Edit with Paint3D' Context Menu entry. [RDSKQ] Remove the Disk 'Quota' tab from the drive's 'Properties' menu. [RRDFE] Remove the 'Retail Demo' files from the Operating System. [DNIFD] Disable 'News and Interests' Feed. [DMAFD] Disable the majority of other Feeds. [NSOFW] Remove the 'Look for an App in the Store to open this file' Context Menu entry. [SMTBO] The Start Menu and Taskbar will use the default OS presentations. [DCAPP] Disable/Block Microsoft Compatibility Appraiser 'CompatTelRunner' and related tasks/telemetry where possible. [NBLOS] Disable the blurred 'Log-On' background screen effect. [HOAOS] Hide the create, or use, a Microsoft 'Online Account' screen during OOBE/Windows Setup. Does NOT affect creating a 'Local' account. [CPMUM] Show 'Manage User Accounts' {Classic User Accounts} within the Control Panel view. [SMDEW] Show more details on the copy dialog window. [EXEXR] Expand the Explorer window's ribbon menu for Windows 1x. Reboot or Logout/in cycle required for it to work. May no longer work on later Win 11 Builds. [DFLAU] Disable the first logon animation/adverts screen after a upgrade. [DCCOT] Disable 'Cloud Optimized Content' for 20H2+. {Policy Edit} [APSCT] Add the 'PC Settings' sub C/Text Menu to Desktop's right-click menu. [ATMCT] Add the 'Task Manager' C/Text Menu to Desktop's right-click menu. [RPTCM] Remove most 'Pin To' C/T Menu items, mainly for Recycle Bin at present. [DTSED] Enable the 22H2+ 'Desktop Stickers' feature. [DMSMT] Disable the 'Meltdown and Spectre' patches for better CPU speed. [RSSAS] No 'All Safe Apps' option{s} was selected. [RSSAS] Approximate time taken to remove any selected Apps: 00h 00m 57s {Some options may also remove other associated Apps} [DVDBL] Disable the 'Vulnerable Driver Blocklist' to allow older drivers to be installed. [DSMEP] Disable 'SmartScreen' including tasks etc. [NSAAU] {**} Prevent any UWP/Store Apps from automatically updating. [NWURS] {**} Do not reserve the 7GB+ Disk Space 'Feature' for future Windows Updates. [ERABU] {##} Enable Registry automatic backups, {RS4+} - this may not work as expected if M$ has blocked it by a later update. [NOTEL] {##} Reduce Telemetry via CEIP, AppCompat and Diagtrack etc. Also sets the 'Diagnostic and Feedback' option to lowest possible. [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. [RSCIR] Remove the '-Shortcut' references from icons. [TOCBI] Turn off check boxes on icons. [SCADV] The shortcut's arrow design is set to: None [LTTPI] Launch to 'ThisPC' view instead of the newer 'Quick Access'. [OCDEN] Disable Network connections to allow offline account creation etc. May require a manual re-enable later. [DERTM] Disable Windows Error Reporting. [MSBTL] Move Win11+'s 'Start Menu' Button from central area to the left, or right, side depending on locale. [DHTBW] Disable/Hide Taskbar News/Interests Widget, if present. [RNIWA] Uninstall/Remove 'News/Interests' and 'Chat' Widget Apps. [RRNMW] Remove the 'System Requirements Not Met' desktop watermark. Requires reboot. [ESAFA] Disable the 'Snap Assist' Flyout/Bar. [ESAFA] Prevent TaskBar Grouping, note this may not function correctly on early win11 builds. [UCCMS] Use 'Classic' expanded Context Menus. {Experimental and m$ may disable later} [HTBCI] Hide the Taskbar's 'Chat' icon, if present. [TBS11] Set Taskbar layout size to 'Default'. [ACPTB] Hide and disable 'Co-Pilot' on the System Tray/TaskBar. This does not uninstall the App. [HMUAS] Hide/Prevent 'Most Used' Apps section showing on the Start Menu for Windows 1x. [DBITD] Remove the Windows 'Burn image to disc' feature entries from the C/Text Menus. [PODAI] Prevent OneDrive from automatically installing after Setup has completed. [SSOSC] Show the 'seconds' on the System Tray's clock, Win10 and later 2262x+ Win11 builds Only. {May be disabled by m$ at anytime} [IPKEA] Will attempt to insert/use the PID.txt's key, if found and valid. [WUNFY] Set Windows Update to 'Notify' mode. This may get overridden by a later Windows Update. [DLTSM] Disable the animated, 'Live', tiles on the large Start Menu. Depreciated on Windows 11+ OS Kernels. [HMNST] Hide Skype's 'Meet Now' icon on the System Tray, if present/detected. [UCMEW] Enable the 'Compact Mode' for the File Explorer's views. [DGMNW] Disable the 'Get More...' and 'Welcome Experience' notifications, mainly after updates installed. [RWOPD] Restore the Legacy Print Dialog for Windows 11+. [NMPTB] Hide/Unpin the 'Mail' icon on the TaskBar. May not always work due to OS conflicts. [NSPTB] Hide/Unpin the 'Store' icon on the TaskBar. [NTVTB] Hide/Unpin the 'Task View' icon on the TaskBar. [PDAOA] Turn Off 'Share Across Devices for Apps'. [TOSCF] Turn off the new 'Smart Clipboard' feature. [TOPTF] Turn Off the new 'Predictive Text' feature {Multilingual}. [RSMIA] Remove Desktop's Spotlight 'More information about this image' icon. [EDOSC] Expand Date on the System Clock. [UNLDA] Unlock Defender: Special Control Mode {v2}. [WFWCT] Add Windows Defender Firewall Context Menu Entries. [DPTAC] {**} Disable the majority of 'Push/Toast' notifications shown on the Action Center etc. {This uses a Group Policy} [TGBMD] {$$} Turn off Gaming Mode/Bar/DVR functions. [DFSBN] {$$} Adjust the 'Diagnostic and Feedback' setting to the lowest possible. [PEFPL] {##} Prevent 'MS Edge' from pre-loading automatically, plus reduce its 'Telemetry' footprint. [NOARA] {##} Disable the auto restarting of any Apps/Programs after reboot. May be overwritten by a later CU. [SUOEA] =================================================== [SUOEA] ==============[ Disabled MRP Options ]============= [SUOEA] =================================================== [NOTES] Because a Windows 11 or above OS has been installed, some specific options may be auto disabled to prevent issues. [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. [MTTBT] The 'Extra TaskBar Transparency' option could not be used due to the OS's new 'Acrylic' feature. [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. [HVECI] Hypervisor Enforced Code Integrity requires CPU VT/x mode to be enabled in the BIOS. [HVCIS] Advanced HVCI Option: Was disabled because the special Option's variable was not set via the oobe.cmd file. [TBVW1] Some Taskbar view options have been auto disabled as they can cause issues on Windows 11+ OS Kernels. [PBLAE] The 'Prevent Bitlocker auto encryption' option was not used to prevent issues. [INFOS] =================================================== [INFOS] ============[ {xx} Marked Information ]============ [INFOS] =================================================== [INFOS] {**} = This can be reverted later by script, check the '\Optional\MiscExtraScripts' folder within the main MRP archive. [INFOS] {$$} = This option is User changeable later via the Settings App or Control Panel etc. [INFOS] {##} = This is an experimental option, may not always work as expected depending on the OS Build etc. [USRDN] ==================================================== [USRDN] ===[ User Specified System Drive Rename Routine ]=== [USRDN] ==================================================== [USRDN] The System Drive [C:] 'Local Disk' was renamed to 'WINDOWS 11' [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, the 'Insert PID key' advanced option routine will not be used. [CKDMI] ============================================================= [CKDMI] ===[ Querying DMI For OEM Manufacturer Brand Information ]=== [CKDMI] ============================================================= [CKDCF] DMI Internal Reference : 1c/4/1 [CKDCF] No DMI conflicts was found. [CKDCF] DMI query routine has completed. [DCTPR] ============================================= [DCTPR] ===[ DMI or Custom Theme Data Processing ]=== [DCTPR] ============================================= [DCTPR] Gigabyte [#04] 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] ======================================= [SYSPD] The DMI/BIOS's 'SystemProductName' value was voided [Ref:1]. [CHKMN] The Computer's Model name was not defined within the BIOS, User specified or defined within '#03 CS BaseBoard Product'. [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 : Gigabyte [TBTMS] Original 'WallpaperStyle' value found within the 'Gigabyte.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] Gigabyte 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] =================================================== [NOTES] FirstLogOn Script Present : No - FirstLogOn file was not detected [NOTES] SetupComplete Script Present : Yes - SetupComplete file was detected [NOTES] Specialize Script Present : No - Specialize file was not detected [NOTES] UserTweaks Script Present : No - UserTweaks file was not detected [NOTES] Wintel Script Present : No - Wintel file was not detected [NOTES] MAS Script Present : Yes - MAS script was detected [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 colorization: Default OS setting. [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. [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. [DBITD] Remove the Windows 'Burn image to disc' feature entries from the C/Text Menus. [TOTNU] Transfer Options to any 'New Users' created. This may not always transfer all User options/settings over due to OS Permissions. [RSCIR] Remove the '-Shortcut' reference on icons. [SCADV] The shortcut's arrow design is set to: None [TOCBI] Turn off check boxes on icons. [DERTM] Disable Windows Error Reporting. [MSBTL] Move Win11+'s 'Start Menu' Button from central area to the left, or right, side depending on locale. [DHTBW] Disable/Hide Taskbar News/Interests Widget, if present. [RNIWA] Uninstall/Remove 'News/Interests' and 'Chat' Widget Apps. [RRNMW] Remove the 'System Requirements Not Met' desktop watermark. Requires reboot. [ESAFA] Disable the 'Snap Assist' Flyout/Bar. [UCCMS] Use 'Classic' expanded Context Menus. {Experimental and m$ may disable later} [EDOSC] Expand Date on the System Clock. [HTBCI] Hide the Taskbar's 'Chat' icon, if present. [TBVW1] Taskbar view options have been auto disabled as they can cause issues on this OS Build. [LTTPI] Launch to 'ThisPC' instead of the newer 'Quick Access' view. [WUNFY] Set Windows Update to 'Notify' mode. May get overridden with a new Cumulative Update. [PODAI] Prevent 'OneDrive' from automatically installing. [TGBMD] Turn off Gaming Mode/Bar/DVR functions. [DFSBN] Adjust the 'Diagnostic and Feedback' setting to the lowest possible. [SSOSC] Show the 'seconds' on the System Tray's clock, this depends on the locale and/or OS Build if they are shown. [NMPTB] Unpin the 'Mail' icon from the TaskBar. May not always work due to OS conflicts. [NSPTB] Unpin the 'Store' icon on the TaskBar. [NTVTB] Unpin the 'Task View' icon on the TaskBar. [PDAOA] Turn Off 'Share Across Devices for Apps'. [OCDEN] Attempt to automatically re-enable Network connections. [OCDEN] Note: You may need to manually re-enable Network connections later if not done automatically. [NOARA] Disable the auto restarting of Apps/Programs after a reboot. [PEFPL] Prevent 'Microsoft Edge' from pre-loading automatically and reduce its 'Telemetry' footprint. [DPTAC] Disable the majority of 'Push/Toast' notifications shown in the 'Action Center' etc. [DLTSM] Disable the animated, 'Live', tiles on the Start Menu. Depreciated on this OS Build. [HMNST] Hide Skype's 'Meet Now' icon on the System Tray, if present. [UCMEW] Use 'Compact Mode' for the File Explorer's views. [DGMNW] Disable the 'Get More...' and 'Welcome Experience' notifications, mainly after updates installed. [RWOPD] Restore the Legacy Print Dialog for Windows 11+. [ACPTB] Hide and disable 'Co-Pilot' on the System Tray/TaskBar. This does not uninstall the App. [WFWCT] Add Windows Defender Firewall Context Menu Entries. [UNLDA] Unlock Defender: Special Control Mode {v2}. [RSMIA] Remove Desktop's Spotlight 'More information about this image' icon. [TOSCF] Turn off the new 'Smart Clipboard' feature. [TOPTF] Turn Off the new 'Predictive Text' feature {Multilingual}. [AMBPS] ================================================================= [AMBPS] ===[ Check BIOS/Boot Mode, OS Partition Type/Controller Mode ]=== [AMBPS] ================================================================= [AMBPS] BIOS/Boot Mode : UEFI [AMBPS] Partition Type : GPT [AMBPS] Secure Boot : N/A [AMHDC] Bitlocker State : Not protected by BitLocker [EXTSR] ===================================== [EXTSR] ===[ External Add-On's Detection ]=== [EXTSR] ===================================== [EXTSR] No external Add-On's was detected or processed. [CHKLS] ============================================= [CHKLS] ===[ Detecting License\Activation Status ]=== [CHKLS] ============================================= [CHKLS] License/Activation Status : Notification [CHKLS] License Channel Status : Retail {RETAIL} {CTT} [CHKLS] Internet Connection Status : Appears not connected online [CHKLS] License Status Reason Code : 0xC004F034 [CHKLS] License not found/invalid or could not connect to the Activation Server. [CHKLS] Online connection maybe required to complete Activation. [ADMAN] =============================== [ADMAN] ===[ Finalization Routines ]=== [ADMAN] =============================== [CLNUP] The Windows.old folder was empty and removed. [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.
Uploaded 160 BT4 for beta testers Updated the Licence Channel routine as I found a duplicate line in the VBScript version which could of given an incorrect result if 'PayGo' was detected, although I have not seen that channel show up yet, now it will be shown as 'PayGo' and not the incorrect 'TimeBased_SUB' as it would of shown previously as technically they are not the same.
Something i have noticed on some newer laptops that are in Windows 11 S mode, the Shift+F10 method to get to a command line appears to no longer work, the last two new w11 Asus laptops i have used refused to get out of oobe via that method. I am wondering if it because they both had the co-pilot AI chip in them? Have tried with FN and a external keyboard without the FN button, still no go... So i had to go through and use a temporary MS account to get to desktop etc then go through the store way to switch out of S mode to win 11 home so i could install their AV software and libre office.
Spoiler: ServerStandard 26100.3194 Code: Multi-OEM/Retail Project Version : CY25M02D22-R160.BT4 - Beta Test [Distributed via MDL Forum ONLY] NOTE: This is a BETA release, features/wording may change before BaseLine release. The extracted OEM's folder structure appears to be 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 Execution Policy : RemoteSigned PS Scripted Diagnostics : Unrestricted Unicode Mode In Operation : Yes - {Original Code 850} Protected MRP Project Files : Yes VBScript/vbs Information : VBScript.dll is present. WMIC.exe Information : WMIC.exe command present. Skip System RAM Checking : No FirstLogOn Script Present : No - FirstLogOn file is not detected SetupComplete Script Present : Yes - SetupComplete file is detected Specialize Script Present : Yes - Specialize file is detected Unattend{ed} XML Present : Yes - Unattend.xml file is detected within the '\Setup\Panther' folder UserTweaks Script Present : No - UserTweaks file is not detected Wintel Script Present : Yes - WinTel file is detected MAS Script Present : Yes - MAS script is detected Using 'MRPConfig.ini' File : Yes - Checking for any selected options. Config Creator Version Used : 64.0-BT1 {Advanced Mode} {Edited 22/02/2025 13:13:25 Locale Format} 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 : Enabled - Highlighted Text will be colorized to Grey. See log notes later. 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 : Disabled - Information screens will be shown. 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] 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 : 02/22/2025 {UTC} -- 2:46pm [OSINF] Installation Type : Server [OSINF] OS Media Boot Method : Clean [OSINF] HyperVisor Detected : Faux [OSINF] Domain Detected : Faux [OSINF] Stock Keeping Unit # : 7 [OSINF] Version {Product} : Windows Server 2025 Standard [OSINF] Version {SKU} : Server Standard [OSINF] Edition {Registry} : ServerStandard [OSINF] Edition {CBS} : ServerStandard [OSINF] Edition {Composition} : ServerStandard [OSINF] Edition {Type} : General [OSINF] Architecture : 64 Bit {AR:1} [OSINF] Release Identifier : 2009 [OSINF] Short Display Version : 24H2 [OSINF] Build Information : 26100.1.amd64fre.ge_release.240331-1435 [OSINF] Internal Build Number : 26100 [OSINF] Experience Pack # : 1000.26100.48.0 [OSINF] Branch Code Name : Germanium [OSINF] Branch Reference : ge_release [OSINF] Readiness Level : Semi-Annual Channel [Targeted CB] {8 Dec / 0xa} {Default Ref: M1} [OSINF] Reference Version : 10.0.26100.1 [OSINF] ProductID Reference : 4929 [OSINF] Update Build Revision : 3194 [OSINF] Base Build Rev Number : 1 {0x1} [OSINF] General UILang/Code : fr-FR / 1036 {0x40Ch} [OSINF] General Locale : French - France [OSINF] Multiple Lang Names : fr-FR [OSINF] GeoID Nation ISO Loc : France [84] [OSINF] GeoID Nation CUR Loc : France [84] [OSINF] Time Zone Data {Reg} : Romance Standard Time {Bias: +01:00} [OSINF] Time Zone Data {TZU} : Romance Standard Time [OSINF] Daylight Saving Mode : Faux [OSINF] DST Adjust Clock Mode : Enabled/Checked [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 : Yes {0x1} [Registry Value] [MBINF] ============================================================= [MBINF] =================[ Motherboard Information ]================= [MBINF] ============================================================= [MBINF] #01 SP Product Name : [Default string] [MBINF] #02 CS Model Name : [Default string] [MBINF] #03 BP Base Product : [Default string] [MBINF] #04 BMH Vendor Name : [Default string] [MBINF] #05 SM System Vendor : [Default string] [MBINF] #06 BM Baseboard Name : [Default string] [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] #11 MSDM Information : [No MSDM Table Present {Unable to define MSDM ACPI Data}] [MBINF] Chassis Type : [Desktop {3}] [MBINF] PC System Type : [Mobile {0x2}] [BDINF] ============================================================= [BDINF] ==================[ Main BIOS Information ]================== [BDINF] ============================================================= [BDINF] Manufacturer/Type : [American Megatrends International, LLC.] [BDINF] Version Number : [5.19] [BDINF] SMBIOS Version : [3.3] [BDINF] Release Date : [11/15/2023] {UTC or as defined by Manufacturer location} [BDINF] Using Primary Chip : [Vrai] [BDINF] UEFI Certifications : [CA_2011 PCA_2011] [BDINF] UEFI DBX Revocations : [None detected] [BDINF] S/Boot CVE-2020-10713 : [Boothole fix appears not to be available in UEFI] [MPINF] ============================================================= [MPINF] ===================[ Processor Information ]================= [MPINF] ============================================================= [MPINF] Full Name : [AMD Ryzen 5 PRO 5675U with Radeon Graphics {Ref:NVR}] [MPINF] Description : [AMD64 Family 25 Model 80 Stepping 0] [MPINF] Architecture : [32/64 Bit] [MPINF] Current Clock Speed : [2301 Mhz] {Approx} [MPINF] Max Clock Speed : [2,3 GHz] {Approx} [MPINF] L2 Cache Size : [3072 MB] [MPINF] L3 Cache Size : [16384 MB] [MPINF] Manufacturer ID Data : [AuthenticAMD] [MPINF] Processor Family : [107] [MPINF] CPUID Signature : [0A50F00] [MPINF] Revision Number {Hex} : [0x5000] [MPINF] Sockets/CPU's Present : [1] [MPINF] Cores/Threads : [6] / [12] {Some Cores/Threads may not be shown as active at time of query} [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. [SPCTR] ============================================================= [SPCTR] =================[ AMD: Spectre Information ]================ [SPCTR] ============================================================= [SPCTR] The AMD Spectre routine was auto disabled due to not being fully compatible with this OS at this time. [SPCTR] Later Ryzen AMD CPU's will have newer hardware-based protections against Spectre. [MMINF] ============================================================= [MMINF] ====================[ Memory Information ]=================== [MMINF] ============================================================= [MMINF] Total Physical : 32157 MB [MMINF] Used During Setup : 1166 MB [MMINF] Available : 30991 MB [MMINF] Design Type : DDR4 {26} [SUOEA] ============================================================= [SUOEA] ===[ Show Other User Options Applied/Enabled Or Disabled ]=== [SUOEA] ============================================================= [SUOEA] =====================[ Applied Options ]===================== [SUOEA] ============================================================= [SUOEA] Translations for most of the Context Menu texts will be performed via the OS where possible. [DMSRT] Disable 'MSRT' - {Malicious Software Removal Tool}. [NOWUR] Prevent the 'Automatic Restart' after any Windows Update operations. Later CU may reset this. [AUTCU] Use a bypass to allow WU upgrading to later OS's with 'unsupported' hardware. {Experimental} [CMECM] Add the 'Command Prompt' Context Menu entries. [PSECM] Add the 'Powershell Prompt' Context Menu entries. [CSECM] Add the 'Copy/MoveTo' Context Menu entries. [DBSRS] Disable the 'Blue Screen Of Death's automatic OS restart, so you can view the error/stop messages. [ABWCT] Add 'About Windows' to the Desktop's Context Menu. [DIMSD] Disable the UAC's 'Secure Desktop' dimming of the Desktop, this does not disable/alter any other UAC security functions. [NOIDX] Disable the Windows 'Search Indexing' Service{s}, this helps prevent HDD disk 'thrashing' and/or SSD wasted write cycles. [NOAMT] Disable any 'Automatic Computer Maintenance' scheduled tasks, like cleanup desktop shortcuts etc. [CPDCM] Add 'Control Panel' entries to the Desktop's Context Menu. [CPANV] Set the Control Panel's window view to Category {Default}. [VRBOS] Show verbose OS information when loading and shutting down the device. [MP3PC] Enable the use of the Fraunhofer IIS MP3 Professional HQ Codec within Windows, if found. [OLFFS] Add the Open 'file, folder' location context menu. [DVTEW] Disable the creation of video thumbnails within any Explorer windows to allow easier move/delete operations. [PPCTM] Add 'Manage Power Plans' entries to the Desktop Context Menu. [OS Translated] [ESTCM] Add 'Screenshots' Context Menu entries. [OS Translated] [SDCCM] Add 'Disk Clean-up' entry to a SSD/HDD Drive's Context Menu. [ARAAP] Add 'Run as administrator' for Powershell Scripts Context Menu entry. [RSECT] Add 'Restart Explorer Service' to the Desktop's Context Menu. Wording may change via OS Translation. [CTMSI] Add 'System Information' to ThisPC/Computer's Context Menu. Wording may change via OS Translation. [OKCTM] Added 'On-Screen Keyboard' entry to the Desktop C/T Menu. [POSML] Prevent the 'Server Manager' from opening at logon. [DSDTA] Disable the 'Shutdown Event Tracker' asking for reasons etc. Mainly used on Servers. {Policy Edit} [DCADL] Disable the 'CTRL-ALT-DEL' method for logging in. Mainly used on Servers. {Policy Edit} [DRAAS] Disable/Remove Azure Arc Setup and Feature for Server 2022/2025. [SDLEV] Drive Letter view set as: OS default. Usually after any drive labels. [RDLLF] Add Install/Uninstall for .dll files via 'right-click' C/Text Menus. [ROCXF] Add Install/Uninstall for .ocx files via 'right-click' C/Text Menus. [TOCTM] The extended 'Take Ownership' entries will be added to the Context Menus using 'English' default wording. [SATCM] ---------------------------------------------------------------------------- [SATCM] ---[ Administrative Tools Context Menu - OS Translations Where Possible ]--- [SATCM] ---------------------------------------------------------------------------- [SATCM] System Properties [SATCM] Control Panel [SATCM] Device Manager [SATCM] Event Viewer [SATCM] MSConfig {f06} [SATCM] Programs and Features [SATCM] Registry Editor [SATCM] Security and Maintenance {nAC} {iAC} {cMA} [SATCM] Services [SATCM] Task Scheduler [SATCM] PC/Windows Settings [SATCM] Windows Update [SATCM] ---------------------------------------------------------------------------- [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. [NOFBT] Disable 'Fast Boot' was set via MRP's 'SSDTweaks' Option, this can be re-enabled later via your OS's Power Plan options. [REM3D] Remove the '3D Objects Folder' entry from 'ThisPC's view. [CTNAB] Force prevent Cortana from operating. Normal local 'Search Windows' functions are still available. May not be present in the installed OS. [NODDM] Do not allow Windows Updates from other PC's found on the Local Network/Internet, only use Microsoft Update Servers. [P3DCM] Remove the 'Edit with Paint3D' Context Menu entry. [RDSKQ] Remove the Disk 'Quota' tab from the drive's 'Properties' menu. [RPFMT] Remove the 'Previous File Versions' tab from the 'Properties' menu. [RRDFE] Remove the 'Retail Demo' files from the Operating System. [DNIFD] Disable 'News and Interests' Feed. [DMAFD] Disable the majority of other Feeds. [NSOFW] Remove the 'Look for an App in the Store to open this file' Context Menu entry. [SMTBO] MRP's slim Start Menu and tidier Taskbar 'LayoutModification' file was applied. [DCAPP] Disable/Block Microsoft Compatibility Appraiser 'CompatTelRunner' and related tasks/telemetry where possible. [NBLOS] Disable the blurred 'Log-On' background screen effect. [NWLOC] Add the 'Network Category' entry to the Desktop's Context Menu to allow easy setting of 'Private' or 'Public' modes. [HOAOS] Hide the create, or use, a Microsoft 'Online Account' screen during OOBE/Windows Setup. Does NOT affect creating a 'Local' account. [DFMYO] Disable the 'Find My Device' feature. This can be reverted in the Settings App later if required. [WINRE] Add 'Advanced Recovery Tools' entry to 'ThisPC's Context Menu. [PHONE] Allow/Keep the 'Add Phone' feature in PC Settings. Note that Adverts and some new Apps may start to appear later. [CPMUM] Show 'Manage User Accounts' {Classic User Accounts} within the Control Panel view. [RHFNP] Remove/Hide 'Home' from the Navigation Panel. May not work on a later File Explorer app. [RGFNP] Remove/Hide 'Gallery' from the Navigation Panel. May not work on a later File Explorer app. [EXEXR] Expand the Explorer window's ribbon menu for Windows 1x. Reboot or Logout/in cycle required for it to work. May no longer work on later Win 11 Builds. [SLCTM] The 'Select All', 'Invert Selection' and 'Select None' Context Menu entries added. [DFLAU] Disable the first logon animation/adverts screen after a upgrade. [DCCOT] Disable 'Cloud Optimized Content' for 20H2+. {Policy Edit} [APSCT] Add the 'PC Settings' sub C/Text Menu to Desktop's right-click menu. [ATMCT] Add the 'Task Manager' C/Text Menu to Desktop's right-click menu. [RPTCM] Remove most 'Pin To' C/T Menu items, mainly for Recycle Bin at present. [DTSED] Enable the 22H2+ 'Desktop Stickers' feature. [EPDCT] Add the 'Permanently Delete' C/T menu for files/folders. [DSKFO] Disable 'Special Keys' such as 'Sticky' etc. [PBLAE] Prevent Bitlocker auto encryption should now be fully disabled. [ARECT] Added 'Registration Entries' item to the New's C/T Menu. [HVECI] Hypervisor Enforced Code Integrity has been left as OS default. Note: This can block drivers from installing. [NOADV] Block as many OS Adverts as is possible. This may also have an effect on the 'Prevent Store Apps from auto-updating' MRP Option. [RSSAS] No 'All Safe Apps' option{s} was selected. [RSSAS] Not all the selected Apps are present within 'Server' Editions. [RCFTB] Remove/Uninstall Cortana App - Build 19041+ only. Note this sometimes may fail to uninstall due to OS permissions. [SDIST] Attempt to show the Defender's icon in the System Tray area {Server Installations Only}. [DDSMC] Disable Defender's 'Smart App Control', this CANNOT be reverted unless a OS reset or clean install is performed. [DRSSP] Disable and Remove 'SmartScreen.exe' including tasks etc.. [ATICT] Added [TI] 'Run as a different user' to the context menu. [OS Translated, but English fallback] [ADOCT] Added Drive Analyze, Optimize etc to a drive's C/T Menu. [OS Translated] [NSAAU] {**} Prevent any UWP/Store Apps from automatically updating. [DWCNW] {**} Disable the 'Windows Connect Now' feature as it could be a possible security risk. [REM6F] {**} Remove the majority of 'Library Folders' from ThisPC's main window. Note that the 'Camera Roll' feature may fail. [SSDTK] {**} SSD Tweaks - Disables PreFetch, SuperFetch, BootTrace, FastBoot, Search Indexing and Paging Executive. [SSDTK] {**} SSD Tweaks - Defrag Task was not disabled because the OS is fully SSD aware. [NORAC] {**} Disable the OS's Remote Assistance/Connections feature. [NWURS] {**} Do not reserve the 7GB+ Disk Space 'Feature' for future Windows Updates. [TSCTM] {##} Add the 'Theme Settings' entries on the Desktop's Context Menu. [DMWEL] {##} Disable majority of Windows Event Logging. [NOAFH] {##} Disable/prevent any 'Activity History' data collection. [NOTEL] {##} Reduce Telemetry via CEIP, AppCompat and Diagtrack etc. Also sets the 'Diagnostic and Feedback' option to lowest possible. [SUOEA] ============================================================= [SUOEA] =====================[ Enabled Options ]===================== [SUOEA] ============================================================= [FEXTS] Show all File Extensions. [SHFIE] Show any normal 'Hidden' folders and files, but NOT any 'Super-Hidden' ones. [RSCIR] Remove the '-Shortcut' references from icons. [TOCBI] Turn off check boxes on icons. [SCADV] The shortcut's arrow design is set to: OS Default [LTTPI] Launch to 'ThisPC' view instead of the newer 'Quick Access'. [OCDEN] Disable Network connections to allow offline account creation etc. May require a manual re-enable later. [DERTM] Disable Windows Error Reporting. [MSBTL] Move Win11+'s 'Start Menu' Button from central area to the left, or right, side depending on locale. [DHTBW] Disable/Hide Taskbar News/Interests Widget, if present. [RNIWA] Uninstall/Remove 'News/Interests' and 'Chat' Widget Apps. [RRNMW] Remove the 'System Requirements Not Met' desktop watermark. Requires reboot. [UCCMS] Use 'Classic' expanded Context Menus. {Experimental and m$ may disable later} [HTBCI] Hide the Taskbar's 'Chat' icon, if present. [TBS11] Set Taskbar layout size to 'Default'. [ACPTB] Hide and disable 'Co-Pilot' on the System Tray/TaskBar. This does not uninstall the App. [UFENP] Add the User's Folder to the Explorer's Navigation Pane. [DBITD] Remove the Windows 'Burn image to disc' feature entries from the C/Text Menus. [ESPFE] Enable a separate process for Explorer.exe file. [RPBST] Hide the 'People Band' icon from the System Tray area. [PODAI] Prevent OneDrive from automatically installing after Setup has completed. [WUNFY] Set Windows Update to 'Notify' mode. This may get overridden by a later Windows Update. [DLSNS] Disable 'Lockscreen' notifications. This may get overridden by a later Windows Update. [DLTSM] Disable the animated, 'Live', tiles on the large Start Menu. Depreciated on Windows 11+ OS Kernels. [HMNST] Hide Skype's 'Meet Now' icon on the System Tray, if present/detected. [DGMNW] Disable the 'Get More...' and 'Welcome Experience' notifications, mainly after updates installed. [DEWPC] Remove the 'Edit With Photos' Context Menu entry. [HTBSI] Hide/Unpin the 'Search' icon on the Taskbar. Policy Edits. [PDAOA] Turn Off 'Share Across Devices for Apps'. [UPSFS] Use the 'PrtScr' keyboard button for easy accessing of the screen 'Snipping Tool'. [TOSCF] Turn off the new 'Smart Clipboard' feature. [TOPTF] Turn Off the new 'Predictive Text' feature {Multilingual}. [RSMIA] Remove Desktop's Spotlight 'More information about this image' icon. [EDOSC] Expand Date on the System Clock. [UNLDA] Unlock Defender: Special Control Mode {v2}. [WFWCT] Add Windows Defender Firewall Context Menu Entries. [NOTES] {$$} Due to a change m$ made in the Dark/Light theme modes, MRP has set, or unset, both options as required for this OS/Build. [APPDT] {$$} Most Windows UWP Apps are now set to use the 'Dark' Theme. May require a 2nd reboot. [SUDTI] {$$} Windows System/File Explorer is now set to use the 'Dark' Theme. May require a 2nd reboot. [TOABA] {$$} Turn off all possible running 'Background' Apps. [TGBMD] {$$} Turn off Gaming Mode/Bar/DVR functions. [DFSBN] {$$} Adjust the 'Diagnostic and Feedback' setting to the lowest possible. [EETTB] {##} Add 'End Task' Right-Click item to the Task Bar's jump lists for Builds 22620+. [PEFPL] {##} Prevent 'MS Edge' from pre-loading automatically, plus reduce its 'Telemetry' footprint. [NOARA] {##} Disable the auto restarting of any Apps/Programs after reboot. May be overwritten by a later CU. [SUOEA] =================================================== [SUOEA] ==============[ Disabled MRP Options ]============= [SUOEA] =================================================== [NOTES] Because a Windows 11 or above OS has been installed, some specific options may be auto disabled to prevent issues. [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. [SNOAP] If any remove Apps options was selected they have been auto disabled as none are included in Server OS's. {For now anyway} [MTTBT] The 'Extra TaskBar Transparency' option could not be used due to the OS's new 'Acrylic' feature. [EESRC] The 'Enhanced Search' option has been auto-disabled because the 'SSDTweaks' was selected. [AOTCM] The Add 'OEM Info' option was auto disabled as it is no longer operative for Builds above 22100. [DMSDF] The 'Disable Defender' and 'Hide Defender' options were not used due to a 'Server' OS being detected. [SCIPS] The option to Show 'Command Prompt' instead of 'Powershell' on the Win-X Menu was disabled as it is not compatible with Win11 at this time. [HVCIS] Advanced HVCI Option: Was disabled because a Server OS has been installed. [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. [INFOS] {$$} = This option is User changeable later via the Settings App or Control Panel etc. [INFOS] {##} = This is an experimental option, may not always work as expected depending on the OS Build etc. [AUTDN] =================================================== [AUTDN] ===[ MRP Automated System Drive Rename Routine ]=== [AUTDN] =================================================== [AUTDN] The System Drive [C:] 'Local Disk' was renamed to 'Windows_11_Server' via the selected automated option. [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 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] ============================================================= [SVROS] Server OS detected, Branding and/or SLIC Activation may fail, see 'Server-Readme.txt' file for details. [CKDCF] Detected some possible DMI conflicts. [NOSLC] No valid SLIC was found for Server OEM Activation {Unable to define MSDM ACPI Data}. [DCTPR] ============================================= [DCTPR] ===[ DMI or Custom Theme Data Processing ]=== [DCTPR] ============================================= [DCTPR] No Manufacturer was detected in database for automated branding. Windows default branding/theme will be applied. [DCTPR] ======================================= [XRMAM] ================================================================== [XRMAM] ===[ OEM XRM-MS Certificate/Activation Sub-Routine Management ]=== [XRMAM] ================================================================== [XRMAM] The OEM SLP Key, Certificate and Activation Sub-Routine will not be processed. [XRMAM] Reason: Retail.txt was detected. [RT] [SYSPD] ======================================= [SYSPD] ===[ Model Name Processing Routine ]=== [SYSPD] ======================================= [SETMN] BIOS defined "Default string" has been applied for the Computer's 'Model' Name. {Validated} [SETMN] Note: Could not use the '#03 CS BaseBoard Product' value as it was undefined or had invalid characters. [RETXT] =============================== [RETXT] ===[ Retail.txt Processing ]=== [RETXT] =============================== [RETXT] Retail.txt was detected indicating that an external activation method will be used instead of OEM or MSDM. [RETXT] You will need to enter your own valid Product Key or use 'another' activation method after setup has completed to activate your Edition. [TBPRT] =================================== [TBPRT] ===[ Theme Processing Routines ]=== [TBPRT] =================================== [USRFT] The User's specified theme was not defined. [THMWD] Using the Windows 'Default' theme. [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] =================================================== [NOTES] FirstLogOn Script Present : No - FirstLogOn file was not detected [NOTES] SetupComplete Script Present : Yes - SetupComplete file was detected [NOTES] Specialize Script Present : Yes - Specialize file was detected [NOTES] UserTweaks Script Present : No - UserTweaks file was not detected [NOTES] Wintel Script Present : Yes - WinTel file was detected [NOTES] MAS Script Present : Yes - MAS script was detected [USR1X] ============================================================================== [USR1X] ===[ Colorization, User Account Pictures and Remove DefaultUser0 Routines ]=== [USR1X] ============================================================================== [USRAC] The 'Enhanced' Log-On screen registry entry has been applied. [USRAC] The 'User Account Pictures' routine is not required. [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: Some elements may not have been applied fully. [USRRO] Windows 'Registered Owner' {Winver} registry entry was corrected and set to the primary username. [USRD0] The 'defaultuser0' account was not present. [TFFIB] The theme's registry fix was not required. [SATOU] =================================================== [SATOU] ====[ User Options that have now been applied ]==== [SATOU] =================================================== [WSTYL] Original 'WallpaperStyle' registry value: 10 - Fill image to display resolution. [FEXTS] Show File Extensions. [SHFIE] Show any normal 'Hidden' folders and files, but NOT show any 'Super-Hidden' ones. [DBITD] Remove the Windows 'Burn image to disc' feature entries from the C/Text Menus. [ESPFE] Enable a separate process for Explorer.exe file. [RSCIR] Remove the '-Shortcut' reference on icons. [SCADV] The shortcut's arrow design is set to: OS Default [TOCBI] Turn off check boxes on icons. [DERTM] Disable Windows Error Reporting. [MSBTL] Move Win11+'s 'Start Menu' Button from central area to the left, or right, side depending on locale. [DHTBW] Disable/Hide Taskbar News/Interests Widget, if present. [RNIWA] Uninstall/Remove 'News/Interests' and 'Chat' Widget Apps. [RRNMW] Remove the 'System Requirements Not Met' desktop watermark. Requires reboot. [UCCMS] Use 'Classic' expanded Context Menus. {Experimental and m$ may disable later} [EDOSC] Expand Date on the System Clock. [HTBCI] Hide the Taskbar's 'Chat' icon, if present. [TBVW1] Taskbar view options have been auto disabled as they can cause issues on this OS Build. [RPBST] Hide the 'People Band' icon on the System Tray. [LTTPI] Launch to 'ThisPC' instead of the newer 'Quick Access' view. [APPDT] Windows UWP Apps are set to use the 'Dark Theme'. [SUDTI] Windows System/File Explorer is set to use the 'Dark Theme'. [WUNFY] Set Windows Update to 'Notify' mode. May get overridden with a new Cumulative Update. [PODAI] Prevent 'OneDrive' from automatically installing. [TGBMD] Turn off Gaming Mode/Bar/DVR functions. [DFSBN] Adjust the 'Diagnostic and Feedback' setting to the lowest possible. [DEWPC] Remove the 'Edit With Photos' Context Menu. [HTBSI] Hide the 'Search' icon on the Taskbar. Policy Edits. [PDAOA] Turn Off 'Share Across Devices for Apps'. [OCDEN] Attempt to automatically re-enable Network connections. [OCDEN] Note: You may need to manually re-enable Network connections later if not done automatically. [UPSFS] Use the 'PrtScr' keyboard button for easy accessing of the screen 'Snipping Tool'. [NOARA] Disable the auto restarting of Apps/Programs after a reboot. [PEFPL] Prevent 'Microsoft Edge' from pre-loading automatically and reduce its 'Telemetry' footprint. [DLSNS] Disable any 'Lockscreen' notifications. [DLTSM] Disable the animated, 'Live', tiles on the Start Menu. Depreciated on this OS Build. [HMNST] Hide Skype's 'Meet Now' icon on the System Tray, if present. [TOABA] Turn off all possible running 'Background' Apps. [DGMNW] Disable the 'Get More...' and 'Welcome Experience' notifications, mainly after updates installed. [EETTB] Add 'End Task' Right-Click item to the Task Bar's jump lists for Builds 22620+. [ACPTB] Hide and disable 'Co-Pilot' on the System Tray/TaskBar. This does not uninstall the App. [UFENP] Add the User's Folder to the Explorer's Navigation Pane. [WFWCT] Add Windows Defender Firewall Context Menu Entries. [UNLDA] Unlock Defender: Special Control Mode {v2}. [RSMIA] Remove Desktop's Spotlight 'More information about this image' icon. [TOSCF] Turn off the new 'Smart Clipboard' feature. [TOPTF] Turn Off the new 'Predictive Text' feature {Multilingual}. [SVRAF] ========================================== [SVRAF] ===[ Server 'Features' Add-On Routine ]=== [SVRAF] ========================================== [SVRAF] Server Features Add-On Module started. [SVRAF] Adding required Features for the Server... [SVRAF] Installing Feature - 'Server Media Foundation'. [SVRAF] Error: DISM 'Server Media Foundation' failed [0x00000BC2] - May require reboot to action. [SVRAF] Error: Server Features Add-On module failed - Undefined Type. [SVRAF] Note: Server reboot is required to finalize any features added after the Desktop appears. [AMBPS] ================================================================= [AMBPS] ===[ Check BIOS/Boot Mode, OS Partition Type/Controller Mode ]=== [AMBPS] ================================================================= [AMBPS] BIOS/Boot Mode : UEFI [AMBPS] Partition Type : GPT [AMBPS] Secure Boot : Enabled [AMHDC] Controller Mode : NVMe/PCIe {S} [AMHDC] Bitlocker State : Unencryptable and is not protected by BitLocker [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 : OEM Digital Marker {OEM_DM} {CTT} [CHKLS] Internet Connection Status : Appears not connected online [CHKLS] License Status Reason Code : 0x00000000 [CHKLS] Valid key for product's licensing channel was used for activation. [ADMAN] =============================== [ADMAN] ===[ Finalization Routines ]=== [ADMAN] =============================== [CLNUP] The Windows.old folder was empty and removed. [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.
Hmm I thought servers could use slic or mak/vol keys, seems server 2025 also can use oem dm too. Either that or wmic/vbscript getting confused. Or tsforge confused mrp
As long as it gets activated or licenced by what ever method works that's all that matters, It's only info after all.
Mrp disables the msdm routine for servers that why it not show what the oem dm key is for in the log. It also auto disables the msdm key check for certain builds or older os's that not use it. This is what confused me and mrp on the server log which shown oem dm data which tsforge seems to use in the activation process it now uses. If tsforge/mas is detected then I may not show the channel data etc in mrp's log as it looks confusing.