Multi-OEM/Retail Project {MRP} - Mk3

Discussion in 'MDL Projects and Applications' started by mxman2k, Oct 15, 2016.

  1. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    5,922
    19,746
    180
    I will have to sit and read through the function and pick out just the bit im after as it all WMI type stuff so should be easy and i not need to use any arrays.

    I think it because i am using the last beta autoit which may not like win 7 or vista but had to use this beta release so that it covered w11.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    5,922
    19,746
    180
    ok fingers crossed this new check for bitlocker status works on vista,7 and upwards...

    No arrays or fancy coding, stripped to the bare bones!

    Uploaded to beta test area.

    Open a console prompt it not need to be admin now and hopefully it will work :)

    I get:
    Volume C: is not a BitLocker volume {2}.

    I have covered values 0 to 8 which should give verbose info.

    Code:
    
    #Region ;**** Directives created by AutoIt3Wrapper_GUI ****
    #AutoIt3Wrapper_Change2CUI=y
    #EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
    Opt("TrayMenuMode", 1)
    Opt("TrayIconHide", 1)
    Opt("GUICloseOnESC", 0)
    Opt("MustDeclareVars", 1)
    Opt("SetExitCode", 1)
    Local $sysdrive = EnvGet("systemdrive"),$Status = "", $sBitLocker
    Local $oShell = ObjCreate("Shell.Application")
    Local $sBitLocker = $oShell.Namespace($sysdrive).Self.ExtendedProperty('System.Volume.BitLockerProtection')
    
    Select
        Case $sBitLocker = 0
            $Status = "Volume " & $sysdrive & " is not protected by BitLocker {0}."
        Case $sBitLocker = 1
            $Status = "Volume " & $sysdrive & " is protected by BitLocker {1}."
        Case $sBitLocker = 2
            $Status = "Volume " & $sysdrive & " is not a BitLocker volume {2}."
        Case $sBitLocker = 3
            $Status = "Volume " & $sysdrive & " is BitLocker Encrypting {3}."
        Case $sBitLocker = 4
            $Status = "Volume " & $sysdrive & " is already decrypted {4}."
        Case $sBitLocker = 5
            $Status = "Volume " & $sysdrive & " is being encrypted {5}."
        Case $sBitLocker = 6
            $Status = "Volume " & $sysdrive & " is already encrypted {6}."
        Case $sBitLocker = 7
            $Status = "Volume " & $sysdrive & " is in a transitional state {7}."
        Case $sBitLocker = 8
            $Status = "BitLocker waiting for activation {8}."
        Case Else
            $Status = $sBitLocker & " - Unknown status."
    EndSelect
    
    If $Status <> "" Then ConsoleWrite($Status & @CRLF)
    
    
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. Carlos Detweiller

    Carlos Detweiller Emperor of Ice-Cream

    Dec 21, 2012
    6,477
    7,241
    210
    Code:
    E:\Download\test>BitLockerCheck.exe
    Volume C: is not protected by BitLocker {0}.
    
    E:\Download\test>
     
  4. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    5,922
    19,746
    180
    Yay! at least no errors :D

    Talking of errors i am adding in some error checking in case the routine somehow fails like if a WMI object failure etc rare but it seems to happen.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    5,922
    19,746
    180
    Added into GUI QT v103-rc5 :)
    Code:
    ===================================================================================================================
                                      Booted System Drive Partition Information
    ===================================================================================================================
    Drive Type                      : SSD
    BUS Type                        : NVMe
    Total Space                     : 953.22 GB
    Free Space                      : 882.97 GB
    Partition Type                  : GPT
    Firmware Boot Type              : UEFI Mode {R:1}
    Secure Boot Status              : Disabled [Ref:3]
    File System                     : NTFS
    System Drive Letter             : C:
    Bitlocker Protection Status     : Volume C: is not a BitLocker volume {2}.
    Not compiled as 64 bit this time so it will fail probably on Vista kernels.

    Uploaded GUI QT for beta testing. :)
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    5,922
    19,746
    180
    As the GUI QT has been in RC stage for a long time after this beta test i will upload for general public use as v1.03 and update post #2 with the download link etc.

    Its pretty much stable and it does have a few new feature/data lines than the one currently public v1.01.

    Its just that on 64 bit Vista kernels it can have crashing issues, so its not recommended on those kernels i cant seem to sort that code out, have done some 'fixes' that are in place but some data wont be shown.

    However 32Bit Vista kernels are ok.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. Carlos Detweiller

    Carlos Detweiller Emperor of Ice-Cream

    Dec 21, 2012
    6,477
    7,241
    210
    Will use the old 64bit RC5 for that one VM.
     
  8. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    5,922
    19,746
    180
    I will return to the 64 bit gui qt at some point in the very near future.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  9. Carlos Detweiller

    Carlos Detweiller Emperor of Ice-Cream

    Dec 21, 2012
    6,477
    7,241
    210
    Aaaaawrighty then! :D
     
  10. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    5,922
    19,746
    180
    The one routine that not work under 64bit for 6.0 kernels is the cpu feature set decoding as the dll calling code isnt present in that kernel so that one item that will be skipped as there is no work around for that.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  11. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    5,922
    19,746
    180
    MRP158 BT2 uploaded for beta testers :)

    Mainly bit locker detection has been enhanced so that the 'Prevent Bit locker Encryption' option now properly checks if BL is already active in any way, if so it will not use the option to prevent issues.

    Routine will use Vbscript or PShell as needed depending on the OS.

    If the option is skipped due to BL active then you will have to manually decrypt and turn off protection for the drive(s) after the OS installation.

    Hopefully BL will be off by default, but cannot guarantee if that will be the case later on...
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  12. migascalp

    migascalp MDL Senior Member

    Sep 18, 2009
    367
    592
    10
    Code:
    Multi-OEM/Retail Project Version : CY24M05D23-R158.BT2 - Beta Test [MDL Forum ONLY]
     
    NOTE: This is a BETA release, features/wording may change before BaseLine release.
     
    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 850}
    Protected Main Project Files  : Yes - SetupComplete and/or FirstLogOn scripts detected
    Unattend XML Present          : Yes - Unattend.xml file detected in Panther folder
    VBScript/vbs Information      : VBScript.dll is present.
    Using 'MRPConfig.ini' File    : Yes - Checking for any selected options.
    Config Creator Version Used   : 61.0 {Advanced Mode} {Edited 18/05/2024 14:47:33 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  : 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] WMIC command is present in this OS, normal WMI 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  : 05/25/2024 {UTC} -- 09:51am
    [OSINF] Installation Type     : Client {Non Server}
    [OSINF] OS Media Boot Method  : Clean
    [OSINF] HyperVisor Detected   : Yes
    [OSINF] Domain Detected       : No
    [OSINF] Stock Keeping Unit #  : 48
    [OSINF] Version {Product}     : Windows 11 Pro  
    [OSINF] Version {SKU}         : Windows Pro
    [OSINF] Edition {Registry}    : Professional
    [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.22700.1003.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   : 3311
    [OSINF] Update Build Revision : 3593
    [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
    [OSINF] Time Zone Data {TZU}  : Romance Standard Time
    [OSINF] Daylight Saving Mode  : Vrai
    [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   : [MP200]
    [MBINF] #02 CS Model Name     : [MP200]
    [MBINF] #03 BP Base Product   : [Default string]
    [MBINF] #04 BMH Vendor Name   : [Shenzhen DOKE electronic co. LTD]
    [MBINF] #05 SM System Vendor  : [Shenzhen DOKE electronic co. LTD]
    [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] #09 SLIC Detect Plan  : [G4] [OA2T:0]
    [MBINF] #11 MSDM Information  : [No MSDM Table Present]
    [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          : [05/11/2023] {UTC or as defined by Manufacturer location}
    [BDINF] UEFI Certification{s} : [CA_2011 PCA_2011]
    [BDINF] S/Boot DBX Revocation : [Grub patch may not be applied]
    [MPINF] =============================================================
    [MPINF] ===================[ Processor Information ]=================
    [MPINF] =============================================================
    [MPINF] Full Name             : [11th Gen Intel{R} Core{TM} i5-11400H @ 2.70GHz]
    [MPINF] Description           : [Intel64 Family 6 Model 141 Stepping 1]
    [MPINF] Architecture          : [32/64 Bit]
    [MPINF] Current Clock Speed   : [2688 Mhz] {Approx}
    [MPINF] Max Clock Speed       : [2,69 GHz] {Approx}
    [MPINF] L2 Cache Size         : [7680 MB]
    [MPINF] L3 Cache Size         : [12288 MB]
    [MPINF] Manufacturer ID Data  : [GenuineIntel]
    [MPINF] Processor Family      : [205]
    [MPINF] CPUID Signature       : [0806D1]
    [MPINF] Revision Number {Hex} : [0x8d01]
    [MPINF] Sockets/CPU's Present : [1]
    [MPINF] Cores/Threads         : [6] / [12]  
    [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.
    [MMINF] =============================================================
    [MMINF] ====================[ Memory Information ]===================
    [MMINF] =============================================================
    [MMINF] Total Physical        : 15,75 GB
    [MMINF] Used During Setup     : 1,74 GB
    [MMINF] Available             : 14,01 GB [88,97%]
    [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          : 131072 MB - Depends on how the Chipset's memory array handles this information.
    [MMINF] Max Per Socket/Slot   : 32768 MB {Approx Value}
    [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.
    [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.
    [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] Add 'On-Screen Keyboard' entry to the Desktop C/T Menu.
    [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}
    [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} {cCW}
    [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.
    [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 'Home' from the Navigation Panel. May not work on a later Explorer app.
    [RGFNP] Remove 'Gallery' from the Navigation Panel. May not work on a later 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.
    [DFLAU] Disable the first logon animation/adverts screen after a upgrade.
    [DCCOT] Disable 'Cloud Optimized Content' on the TaskBar 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.
    [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] Removed All UWP Apps possible, but *NOT* the Store, Screen Snip, Calculator, Camera OR any that are 'System' required.
    [RSSAS] There are separate removal options for OneDrive, Bing related, Phone and XBox Apps.
    [RSSAS] Approximate time taken to remove any selected 'Special' Apps: 00h 00m 13s {Some options may also remove other associated Apps}
    [RSSAS] Remove the 'XBox' App{s} and hide its page within the 'Settings' App. Some M$ games may not run with Xbox App removed.
    [RCFTB] Remove/Uninstall Cortana App - Build 19041+ only. Note this sometimes may fail to uninstall due to OS permissions.
    [ATICT] Added [TI] 'Run as a different user' to the context menu. [OS Translated, but English fallback]
    [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'.
    [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.
    [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}.
    [UNLDA] Unlock Defender: Special Control Mode. {Experimental}
    [NOTES] Some MRP options like 'SmartAppControl' and 'SmartScreen' have been auto disabled to prevent major OS issues with latest CU.
    [WDTPS] Windows Defender Tamper Protection Status : Enabled
    [WDTPS] Windows Defender Tamper Protection Info   : Tamper Protection on, no Cloud Protection
    [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.
    [RANSA] {##} Remove all possible UWP Apps from the OS.
    [RANSA]      Except: Store, Screen Snip, Camera, Cortana/Search, XBox, Phone, Calculator OR any that are 'System' required.
    [RANSA]      Some links to online or non UWP Apps may still be present on the Start Menu{s}.
    [EETTB] {##} Add 'End Task' Right-Click item to the Task Bar's jump lists for Builds 22620+ {M$ Experimental}.
    [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.
    [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.
    [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.
    [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 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.
    [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_Pro' 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] =============================================================
    [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] Shenzhen [#04] Manufacturer was detected for automated theme/branding.
    [DCTPR] =======================================
    [SYSPD] =======================================
    [SYSPD] ===[ Model Name Processing Routine ]===
    [SYSPD] =======================================
    [SETMN] BIOS defined "MP200" 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.
    [TBTMS] ===========================================
    [TBTMS] ===[ Brand Transfer Management Routine ]===
    [TBTMS] ===========================================
    [TBTMS] Brand theme that will be attempted to be used : Shenzhen
    [TBTMS] Original 'WallpaperStyle' value found within the 'Shenzhen.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.
    [EWBSC] Additional found 'Wallpaper' file{s} was copied over for use as 'Desktop' backgrounds or a slideshow later, if required.
    [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] Shenzhen 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] ===================================================
    [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: Some elements may not have been applied fully.
    [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.
    [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}
    [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.
    [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+, {Experimental}.
    [ACPTB] Hide and disable 'Co-Pilot'.
    [UFENP] Add the User's Folder to the Explorer's Navigation Pane.
    [UNLDA] Unlock Defender: Special Control Mode. {Experimental}
    [NOTES] Some MRP options like 'SmartAppControl' and 'SmartScreen' have been auto disabled to prevent major OS issues with latest CU.
    [WDTPS] Windows Defender Tamper Protection Status : Enabled
    [WDTPS] Windows Defender Tamper Protection Info   : Tamper Protection on, no Cloud Protection
    [RANSA] Removed: All possible UWP Apps from the OS, except the Store, Screen Snip, Camera, Cortana/Search, Calculator or any 'System' required.
    [RANSA]          Some links to online or non UWP Apps may still be present on the Start Menu{s}.
    [TOSCF] Turn off the new 'Smart Clipboard' feature.
    [TOPTF] Turn Off the new 'Predictive Text' feature {Multilingual}.
    [RXSMS] Removed the 'XBox' App's Start Menu links, if present.
    [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     : Enabled
    [AMHDC] Controller Mode : NVMe/PCIe {S}
    [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  : Licensed
    [CHKLS] License Channel Status     : VL_KMSClient {CTT}
    [CHKLS] Internet Connection Status : Appears connected online [Pinged : google.com]
    [CHKLS] KMS Capable/Permitted      : Yes
    [CHKLS] Key Management Used        : Yes
    [CHKLS] VL Remaining Allowance     : 4986 days / 7180981 minutes.
    [CHKLS] VL Activation Interval     : 0 days / 120 minutes.
    [CHKLS] VL Renewal Interval        : 7 days / 10080 minutes.
    [CHKLS] Other Information          : Some results are beyond the standard allowance range. {K38}
    [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.
     
    
     
  13. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    5,922
    19,746
    180
    Started on v158 bt3 but had a setback on my first test install this morning so until i can fix that little issue i wont upload it.

    Its a change to the unlock defender, although it is at the moment a separate internal test option. This version also turns off the smartapp part and removes smartscreen or at least prevents it working.

    This unlock defender version will only work on 26100+ win 11 kernels as on older w11 ones it would cause many performance issues.

    The set back i caused was the usual copy/paste blunder and im guessing i missed off a ( or a ) bracket as mrp aborts at that section in the addon manager.

    As i had to go out early today I've not had a chance to fix the mistake i made, hopefully either later on today, or early/late tomorrow, it will be sorted, re-tested and if all ok it will be uploaded for beta testers.

    On a standalone code test on a running 26100 install there was no noticeable issues with the smartapp control disabled and smartscreen removed, only edge grizzled about smartscreen but that normal and not really affect edge's use.

    The option is not available in the creator at the moment and a temporary option switch needs to be entered into the mrpconfig.ini to tell mrp to use that defender unlock option. Mrp will ignore the usual option if this one is detected so both options can be set in the .ini file and mrp will just use the 2nd one only if it set as yes too.

    Side note:
    I think i found a possible cause for the explorer hard fail error, if you use the option to set the explorer's view to details etc it can upset the explorer.exe's shell. Luckily it is only on the first run when the desktop appears after the windows setup has completed and have not seen it appear again.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  14. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    5,922
    19,746
    180
    #10934 mxman2k, May 25, 2024
    Last edited: May 25, 2024
    (OP)
    Just fixed MRP 158 BT3 (hopefully) and test installing...

    Once happy all is ok and no crashes with the 'Unlock Defender 2' option i will upload for beta testers.

    See the Readme.txt file as this option is NOT in the creator, it has to be manually added to the ini file and will take preference over the original unlock defender option, ONLY if build 26100 or above is detect otherwise it will be ignored.

    Basically Unlock Defender 2 option unlock's defender as before but also disables the SmartAppControl program and Smartscreen., for builds below 26100 the SmartAppControl could cause major OS performance issues. This is experimental and if found to cause weird issues then the option will be removed.

    **Edit**

    It does help to understand 26099 plus 1 equals 26100 :D for some silly reason i was checking for 25999 + 1 and seeing if it was 26100!! :oops: :D

    Have sorted that and now it should work properly have uploaded the 158 BT3 anyway as now the logic check is correct.

    Doing another test install as i type to make sure... :) If it fails again then i will remove BT3 until tomorrow.

    Not sure if it just my setup of the ini file with all guns blazing (options set) that the install is stuck at 94% for ages... Probably all the apps being removed :D :D

    MRP 158 BT3 is ok no crashes etc and 'unlock defender v2' option set and working.:)
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  15. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    5,922
    19,746
    180
    MRP 158 BT4 uploaded for Beta Testers :)

    Quite a few updates in this release, added uninstall Co-Pilot App option this replaces the 'Get Started' app as you cannot easily remove that app from the OS without a struggle so repurposed the creator entry. :)

    The 'All Apps' removal option{s} will/should also remove Co-Pilot too now.

    The ReadMe.txt explains the other areas changed/updated etc.

    My test install was successful :)
    Code:
    Multi-OEM/Retail Project Version : CY24M05D26-R158.BT4 - Beta Test [MDL Forum ONLY]
     
    NOTE: This is a BETA release, features/wording may change before BaseLine release.
     
    MRP was unable to obtain permission of certain registry areas [DE_I1, DE_S1], some User selected options/features may not work as expected.
     
    The extracted OEM's folder structure appears 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 850}
    Unattend XML Present          : Yes - Unattend.xml file detected in Panther folder
    VBScript/vbs Information      : VBScript.dll is present.
    Using 'MRPConfig.ini' File    : Yes - Checking for any selected options.
    Config Creator Version Used   : 62.0-BT1 {Advanced Mode} {Edited 26/05/2024 7:46:00 AM 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 Blue. See log notes later.
    Highlight Colorization        : Enabled  - Highlighted Text will be colorized to Blue. See log notes later.
    Change Lock/Login Screen's    : Enabled  - Screen's will be replaced via the brand's theme.
    Confirm File Delete           : Enabled  - User is notified when a file/folder is being deleted.
    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] WMIC command is present in this OS, normal WMI 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  : 05/26/2024 {UTC} -- 08:26am
    [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 Education
    [OSINF] Stock Keeping Unit #  : 121
    [OSINF] Version {Product}     : Windows 11 Education
    [OSINF] Version {SKU}         : Windows Education
    [OSINF] Edition {Registry}    : Education
    [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 : 26100
    [OSINF] Experience Pack #     : 1000.26100.1.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   : 3280
    [OSINF] Update Build Revision : 560
    [OSINF] Base Build Rev Number : 1 {0x1}
    [OSINF] General UILang/Code   : en-GB / 2057 {0x809h}
    [OSINF] General Locale        : English - United Kingdom
    [OSINF] Multiple Lang Names   : en-GB
    [OSINF] GeoID Nation ISO Loc  : United Kingdom [242]
    [OSINF] GeoID Nation CUR Loc  : United Kingdom [242]
    [OSINF] Time Zone Data {Reg}  : GMT Standard Time {Bias: +01:00}
    [OSINF] Time Zone Data {TZU}  : GMT Standard Time
    [OSINF] Daylight Saving Mode  : Yes
    [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   : [System Product Name]
    [MBINF] #02 CS Model Name     : [System Product Name]
    [MBINF] #03 BP Base Product   : [Z170-K]
    [MBINF] #04 BMH Vendor Name   : [System manufacturer]
    [MBINF] #05 SM System Vendor  : [System manufacturer]
    [MBINF] #06 BM Baseboard Name : [ASUSTeK COMPUTER INC.]
    [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        : [3805]
    [BDINF] SMBIOS Version        : [3.0]
    [BDINF] Release Date          : [05/16/2018] {UTC or as defined by Manufacturer location}
    [BDINF] UEFI Certification{s} : [None detected]
    [BDINF] S/Boot DBX Revocation : [Unable to test for Secure Boot Revocation fix]
    [MPINF] =============================================================
    [MPINF] ===================[ Processor Information ]=================
    [MPINF] =============================================================
    [MPINF] Full Name             : [Intel{R} Celeron{R} CPU G3900 @ 2.80GHz]
    [MPINF] Description           : [Intel64 Family 6 Model 94 Stepping 3]
    [MPINF] Architecture          : [32/64 Bit]
    [MPINF] Current Clock Speed   : [2800 Mhz] {Approx}
    [MPINF] Max Clock Speed       : [2.8 GHz] {Approx}
    [MPINF] L2 Cache Size         : [512 MB]
    [MPINF] L3 Cache Size         : [2048 MB]
    [MPINF] Manufacturer ID Data  : [GenuineIntel]
    [MPINF] Processor Family      : [15]
    [MPINF] CPUID Signature       : [0506E3]
    [MPINF] Revision Number {Hex} : [0x5e03]
    [MPINF] Sockets/CPU's Present : [1]
    [MPINF] Cores/Threads         : [2] / [2]
    [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 newer hardware-based protections against Meltdown/Spectre.
    [MMINF] =============================================================
    [MMINF] ====================[ Memory Information ]===================
    [MMINF] =============================================================
    [MMINF] Total Physical        : 7.81 GB
    [MMINF] Used During Setup     : 1.13 GB
    [MMINF] Available             : 6.68 GB [85.53%]
    [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] =============================================================
    [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.
    [UFODT] Show the 'User' folder 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.
    [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.
    [CPANV] Set the Control Panel's window view to Small icons.
    [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.
    [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.
    [DUCIR] Disable/block USB Plug-and-Play 'Co-Installers' auto-installing insecure apps/etc to prevent a possible security risk.
    [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}
    [SDLEV] Drive Letter view set as: Show all drive letters before any drive labels.
    [RAVBS] Add 'Run as Administrator' for .vbs scripts via 'right-click' C/Text Menus.
    [RAJSS] Add 'Run as Administrator' for .js scripts via 'right-click' C/Text Menus.
    [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} {cCW}
    [SATCM] Services
    [SATCM] Task Scheduler
    [SATCM] PC/Windows Settings
    [SATCM] Windows Update
    [SATCM] ----------------------------------------------------------------------------
    [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.
    [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] 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.
    [DASMT] Don't use the TitleBar's Accent Color on Start, Taskbar and Action Centre etc. M$ may force this to not work.
    [NOCBH] Disable the 'Enhanced' multiple clipboard history feature. Note: Copy/Paste in Edge or some Apps may not work when this option is used.
    [NODDM] Do not allow Windows Updates from other PC's found on the Local Network/Internet, only use Microsoft Update Servers.
    [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.
    [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.
    [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.
    [CPMAT] Show 'All Tasks' within the Control Panel view.
    [CPMUM] Show 'Manage User Accounts' {Classic User Accounts} within the Control Panel view.
    [SLONP] Show 'Libraries' folder on the Navigation Panel.
    [HQVNP] Hide the 'Quick Access' view on Explorer's Navigation Panels.
    [HFFNP] Hide 'Favorites' folder on the Navigation Panel.
    [RHFNP] Remove 'Home' from the Navigation Panel. May not work on a later Explorer app.
    [RGFNP] Remove 'Gallery' from the Navigation Panel. May not work on a later Explorer app.
    [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' on the TaskBar 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.
    [ASRPM] Adds 'System Restore' items to the desktop C/T menu.
    [DTSED] Disable the 22H2+ 'Desktop Stickers' feature.
    [EPDCT] Add the 'Permanently Delete' C/T menu for files/folders.
    [DSKFO] Disable 'Special Keys' such as 'Sticky' etc.
    [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] Removed All UWP Apps possible, but *NOT* the Store, Screen Snip, Calculator, Camera OR any that are 'System' required.
    [RSSAS] There are separate removal options for OneDrive, Bing related, Phone and XBox Apps.
    [RSSAS] Approximate time taken to remove any selected 'Special' Apps: 00h 00m 15s {Some options may also remove other associated Apps}
    [RSSAS] Remove the Windows 'Phone' App and hide its page within the 'Settings' App.
    [RSSAS] Remove the 'XBox' App{s} and hide its page within the 'Settings' App. Some M$ games may not run with Xbox App removed.
    [RCFTB] Remove/Uninstall Cortana App - Build 19041+ only. Note this sometimes may fail to uninstall due to OS permissions.
    [HDFST] Hide the Defender's icon from the System Tray area.
    [DVDBL] Disable the 'Vulnerable Driver Blocklist' to allow older drivers to be installed.
    [DDSMC] Disable Defender's 'Smart App Control', this CANNOT be reverted unless a OS reset or clean install is performed.
    [DSMEP] Disable and remove 'SmartScreen' including tasks etc.
    [ATICT] Added [TI] 'Run as a different user' to the context menu. [OS Translated, but English fallback]
    [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.
    [HIPFS] {**} Hide the 'Insider Programme' Page within the 'PC Settings' App, if present.
    [NWURS] {**} Do not reserve the 7GB+ Disk Space 'Feature' for future Windows Updates.
    [SAICM] {**} Set all Internet connections to 'Metered', including wired LAN.
    [SAICM]      Note: Microsoft Office may not update/operate properly when the 'Metered Connections' option is used.
    [ERABU] {##} Enable Registry automatic backups, {RS4+} - this may not work as expected if M$ has blocked it by a later update.
    [ENLPS] {##} Allow longer than 260 character's 'Long File Paths', {1607/RS1+}.
    [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] =============================================================
    [WSTYL] User selected 'WallpaperStyle' value: Stretch image to display resolution. - This will be applied later via the Add-On Manager.
    [FEXTS] Show all File Extensions.
    [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: Classic/Small
    [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.
    [DF1HP] Disable pressing 'F1' and 'Active' Help. NOTE: May not always work on all applications.
    [HMUAS] Hide/Prevent 'Most Used' Apps section showing on the Start Menu for Windows 1x.
    [DGSWM] Remove the 'Sharing Wizards' and 'Give access to' entries from the C/Text Menus.
    [DBITD] Remove the Windows 'Burn image to disc' feature entries from the C/Text Menus.
    [SSLEW] Show the 'Status Bar' data on Notepad and other Explorer windows, where possible.
    [EFEWD] Enable the 'Full Window Dragging' effect instead of just the frame outline.
    [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.
    [SSOSC] Show the 'seconds' on the System Tray's clock, Win10 and later 2262x+ Win11 builds Only. {May be disabled by m$ at anytime}
    [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.
    [SYSRF] Re-enable of the 'System Restore' task and feature will be enabled later via the Add-On Manager stage.
    [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.
    [DEWPC] Remove the 'Edit With Photos' Context Menu entry.
    [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'.
    [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}.
    [UNLDA] Unlock Defender: Special Control Mode v2. Also disables SmartAppControl and Smartscreen.
    [RDCTM] Remove Defender's Context Menu items.
    [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.
    [RANSA] {##} Remove all possible UWP Apps from the OS.
    [RANSA]      Except: Store, Screen Snip, Camera, Cortana/Search, XBox, Phone, Calculator OR any that are 'System' required.
    [RANSA]      Some links to online or non UWP Apps may still be present on the Start Menu{s}.
    [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.
    [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.
    [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.
    [EBTRD] The 'Battery Time Remaining' option was auto disabled as the device appears to be non battery operated.
    [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 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.
    [PBLAE] Prevent Bitlocker auto encryption option was disabled 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.
    [AUTDN] ===================================================
    [AUTDN] ===[ MRP Automated System Drive Rename Routine ]===
    [AUTDN] ===================================================
    [AUTDN] The System Drive [C:] 'Local Disk' was renamed to 'Windows_11_Edu' 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 not detected within the 'Scripts' folder.
    [REPDR] The 'ei.cfg' file was detected within the 'D:\Sources' folder. [DV]
    [REPDR] The 'PID.txt' file was not detected.
    [CKDMI] =============================================================
    [CKDMI] ===[ Querying DMI For OEM Manufacturer Brand Information ]===
    [CKDMI] =============================================================
    [CKDCF] DMI Internal Reference : 3/6
    [CKDCF] No DMI conflicts was found.
    [CKDCF] DMI query routine has completed.
    [DCTPR] =============================================
    [DCTPR] ===[ DMI or Custom Theme Data Processing ]===
    [DCTPR] =============================================
    [DCTPR] Asus [#06] 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:2].
    [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 : Asus
    [TBTMS] Original 'WallpaperStyle' value found within the 'Asus.theme' file : 2 {Stretch 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.
    [EWBSC] Additional found 'Wallpaper' file{s} was copied over for use as 'Desktop' backgrounds or a slideshow later, if required.
    [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] Asus OEM brand theme was applied.
    [BSHCS] ============================================
    [BSHCS] ===[ Primary/Branding Script Completion ]===
    [BSHCS] ============================================
    [BSHCS] The Primary/Branding script has completed.
    [BSHCS] ============================================
    [RBOOT] -----------------------------[ OOBE Reboot via Windows Setup ]-----------------------------
    [ADMAN] ===================================================
    [ADMAN] ============[ Add-On Manager: Started ]============
    [ADMAN] ===================================================
    [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: 'Blue' color has been applied via normal and uSID routines.
    [WXSHL] Highlight: 'Blue' text color has been applied via normal and uSID routines.
    [NOTES] Windows may need to be activated to set the Title Bar and other colors.
    [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: 2 - Stretch image to display resolution.
    [WSTYL] User selected 'WallpaperStyle' value: 2 - Stretch image to display resolution. - Reboot may be required to fully apply this option/tweak.
    [FEXTS] Show File Extensions.
    [DBITD] Remove the Windows 'Burn image to disc' feature entries from the C/Text Menus.
    [SSLEW] Show 'Status Bar' data on Notepad and other Explorer windows.
    [EFEWD] Enable the 'Full Window Dragging' effect instead of just the frame outline.
    [ESPFE] Enable a separate process for Explorer.exe file.
    [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: Classic/Small
    [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}
    [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.
    [DGSWM] Remove the 'Sharing Wizards' and 'Give access to' entries from C/Text Menus.
    [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.
    [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.
    [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.
    [UCMEW] Use 'Compact Mode' for the File Explorer's views.
    [TOABA] Turn off all possible running 'Background' Apps.
    [DF1HP] Disable pressing 'F1' and 'Active' Help. NOTE: May not always work on all applications.
    [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.
    [RDCTM] Remove Defender's Context Menu items.
    [UNLDA] Unlock Defender: Special Control Mode v2. Also disables SmartAppControl and Smartscreen.
    [RANSA] Removed: All possible UWP Apps from the OS, except the Store, Screen Snip, Camera, Cortana/Search, Calculator or any 'System' required.
    [RANSA]          Some links to online or non UWP Apps may still be present on the Start Menu{s}.
    [TOSCF] Turn off the new 'Smart Clipboard' feature.
    [TOPTF] Turn Off the new 'Predictive Text' feature {Multilingual}.
    [RWPHA] Removed the Windows 'Phone' App's Start Menu links, if present.
    [RXSMS] Removed the 'XBox' App's Start Menu links, if present.
    [SYSRF] The 'System Restore' Task and Feature has now been enabled.
    [AMBPS] =================================================================
    [AMBPS] ===[ Check BIOS/Boot Mode, OS Partition Type/Controller Mode ]===
    [AMBPS] =================================================================
    [AMBPS] BIOS/Boot Mode  : UEFI
    [AMBPS] Partition Type  : GPT
    [AMBPS] Secure Boot     : Disabled
    [AMHDC] Controller Mode : AHCI {I}
    [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 {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] 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.
     
    
    Out for a few hours, back later :)
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  16. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    5,922
    19,746
    180
    Odd i know i can take a few seconds as mrp updates the group policies and then restarts the explorer.exe's shell -- that blanks the screen for a second or so but it should show the desktop again.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  17. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    5,922
    19,746
    180
    On vm's it could take a bit longer due to the emulations.

    Will look into it when i get home later.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  18. migascalp

    migascalp MDL Senior Member

    Sep 18, 2009
    367
    592
    10
    Same ISO as my BT3 test.
    No problem.
    Code:
    Multi-OEM/Retail Project Version : CY24M05D26-R158.BT4 - Beta Test [MDL Forum ONLY]
     
    NOTE: This is a BETA release, features/wording may change before BaseLine release.
     
    DeCompile has detected a VMWare Virtual Machine.
     
    MRP was unable to obtain permission of certain registry areas [DE_I1, DE_S1], some User selected options/features may not work as expected.
     
    The extracted OEM's folder structure appears 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 850}
    Protected Main Project Files  : Yes - SetupComplete and/or FirstLogOn scripts detected
    Specialize Script Present     : Yes - Specialize script detected
    Unattend XML Present          : Yes - Unattend.xml file detected in Panther folder
    VBScript/vbs Information      : VBScript.dll is present.
    Using 'MRPConfig.ini' File    : Yes - Checking for any selected options.
    Config Creator Version Used   : 62.0-BT1 {Advanced Mode} {Edited 26/05/2024 10:25:45 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  : 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] WMIC command is present in this OS, normal WMI 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  : 05/26/2024 {UTC} -- 12:06pm
    [OSINF] Installation Type     : Client {Non Server}
    [OSINF] OS Media Boot Method  : Clean
    [OSINF] HyperVisor Detected   : Yes
    [OSINF] Domain Detected       : No
    [OSINF] Stock Keeping Unit #  : 191
    [OSINF] Version {Product}     : Windows 11 IoT  
    [OSINF] Edition {Registry}    : IoTEnterpriseS
    [OSINF] Edition {WMIC}        : IoTEnterpriseS
    [OSINF] Edition {CBS}         : EnterpriseS
    [OSINF] Edition {Composition} : EnterpriseS
    [OSINF] Edition {Type}        : Created Virtually
    [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.1.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   : 4845
    [OSINF] Update Build Revision : 560
    [OSINF] Base Build Rev Number : 1 {0x1}
    [OSINF] General UILang/Code   : fr-FR / 1036 {0x40Ch}
    [OSINF] General Locale        : French - France
    [OSINF] Multiple Lang Names   : en-US,fr-FR
    [OSINF] GeoID Nation ISO Loc  : France [84]
    [OSINF] GeoID Nation CUR Loc  : France [84]
    [OSINF] Time Zone Data {Reg}  : Romance Standard Time
    [OSINF] Time Zone Data {TZU}  : Romance Standard Time
    [OSINF] Daylight Saving Mode  : Vrai
    [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   : [VMware201]
    [MBINF] #02 CS Model Name     : [VMware201]
    [MBINF] #03 BP Base Product   : [440BX Desktop Reference Platform]
    [MBINF] #04 BMH Vendor Name   : [VMware Inc.]
    [MBINF] #05 SM System Vendor  : [VMware Inc.]
    [MBINF] #06 BM Baseboard Name : [Intel Corporation]
    [MBINF] #08 BIOS or SLIC ID 0 : [N/A]
    [MBINF] #08 BIOS or SLIC ID 1 : [INTEL  - 6040000]
    [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          : [Other {01}]
    [MBINF] PC System Type        : [Desktop {0x1}]
    [MBINF] Virtual Machine Data  : [VMware {Hypervisor}]
    [MBINF] Information/Notes     : On Virtual Machines some CPU/DMI/Motherboard data may not of been fully configured.
    [BDINF] =============================================================
    [BDINF] ==================[ Main BIOS Information ]==================
    [BDINF] =============================================================
    [BDINF] Manufacturer/Type     : [VMware, Inc.]
    [BDINF] Version Number        : [VMW201.00V.21805430.B64.2305221830]
    [BDINF] SMBIOS Version        : [2.7]
    [BDINF] Release Date          : [05/22/2023] {UTC or as defined by Manufacturer location}
    [BDINF] UEFI Certification{s} : [CA_2023 CA_2011 PCA_2011]
    [BDINF] S/Boot DBX Revocation : [Grub patch appears to be applied]
    [MPINF] =============================================================
    [MPINF] ===================[ Processor Information ]=================
    [MPINF] =============================================================
    [MPINF] Data For Processor #  : [CPU0]
    [MPINF] Full Name             : [Intel{R} Core{TM} i9-14900K]
    [MPINF] Description           : [Intel64 Family 6 Model 183 Stepping 1]
    [MPINF] Architecture          : [32/64 Bit]
    [MPINF] Current Clock Speed   : [3187 Mhz] {Approx}
    [MPINF] Max Clock Speed       : [3,19 GHz] {Approx}
    [MPINF] L2 Cache Size         : [4096 MB]
    [MPINF] L3 Cache Size         : [73728 MB]
    [MPINF] Manufacturer ID Data  : [GenuineIntel]
    [MPINF] Processor Family      : [2]
    [MPINF] CPUID Signature       : [0B0671]
    [MPINF] Revision Number {Hex} : [0xb701]
    [MPINF] Sockets/CPU's Present : [2]
    [MPINF] Cores/Threads         : [2] / [2]  
    [MPINF] VT Firmware Mode      : [Disabled]
    [MPINF] Notes: Data may vary depending if info is currently available within the database.
    [MPINF]        Virtual Machines may not have certain CPU data available or internally configured correctly.
    [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.
    [MMINF] =============================================================
    [MMINF] ====================[ Memory Information ]===================
    [MMINF] =============================================================
    [MMINF] Total Physical        : 16 GB
    [MMINF] Used During Setup     : 1,15 GB
    [MMINF] Available             : 14,85 GB [92,79%]
    [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.
    [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.
    [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] Add 'On-Screen Keyboard' entry to the Desktop C/T Menu.
    [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}
    [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} {cCW}
    [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.
    [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 'Home' from the Navigation Panel. May not work on a later Explorer app.
    [RGFNP] Remove 'Gallery' from the Navigation Panel. May not work on a later 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.
    [DFLAU] Disable the first logon animation/adverts screen after a upgrade.
    [DCCOT] Disable 'Cloud Optimized Content' on the TaskBar 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.
    [ARECT] Added 'Registration Entries' item to the New's C/T Menu.
    [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] Removed All UWP Apps possible, but *NOT* the Store, Screen Snip, Calculator, Camera OR any that are 'System' required.
    [RSSAS] There are separate removal options for OneDrive, Bing related, Phone and XBox Apps.
    [RSSAS] Approximate time taken to remove any selected 'Special' Apps: 00h 00m 04s {Some options may also remove other associated Apps}
    [RSSAS] Remove the 'XBox' App{s} and hide its page within the 'Settings' App. Some M$ games may not run with Xbox App removed.
    [RCFTB] Remove/Uninstall Cortana App - Build 19041+ only. Note this sometimes may fail to uninstall due to OS permissions.
    [DDSMC] Disable Defender's 'Smart App Control', this CANNOT be reverted unless a OS reset or clean install is performed.
    [DSMEP] Disable and remove 'SmartScreen' including tasks etc.
    [ATICT] Added [TI] 'Run as a different user' to the context menu. [OS Translated, but English fallback]
    [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.
    [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}.
    [UNLDA] Unlock Defender: Special Control Mode v2. Also disables SmartAppControl and Smartscreen.
    [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.
    [RANSA] {##} Remove all possible UWP Apps from the OS.
    [RANSA]      Except: Store, Screen Snip, Camera, Cortana/Search, XBox, Phone, Calculator OR any that are 'System' required.
    [RANSA]      Some links to online or non UWP Apps may still be present on the Start Menu{s}.
    [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.
    [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 it is not available on this OS.
    [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.
    [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.
    [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 oobe.cmd file.
    [TBVW1] Some Taskbar view options have been auto disabled as they can cause issues on Windows 11+ OS Kernels.
    [PBLAE] Prevent Bitlocker auto encryption option was disabled 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.
    [AUTDN] ===================================================
    [AUTDN] ===[ MRP Automated System Drive Rename Routine ]===
    [AUTDN] ===================================================
    [AUTDN] The System Drive [C:] 'Local Disk' was renamed to 'Windows_11_IOTEnt' 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 detected within the 'D:\Sources' folder. [DV]
    [REPDR] The 'PID.txt' file was not detected.
    [CKDMI] =============================================================
    [CKDMI] ===[ Querying DMI For OEM Manufacturer Brand Information ]===
    [CKDMI] =============================================================
    [CKDCF] No DMI conflicts was found.
    [CKDCF] DMI query routine has completed.
    [DCTPR] =============================================
    [DCTPR] ===[ DMI or Custom Theme Data Processing ]===
    [DCTPR] =============================================
    [DCTPR] VMWare Manufacturer was detected for automated theme/branding.
    [DCTPR] =======================================
    [SYSPD] =======================================
    [SYSPD] ===[ Model Name Processing Routine ]===
    [SYSPD] =======================================
    [SETMN] The '#03 CS Base Product' "440BX Desktop Reference Platform" has been applied for the Computer's 'Model' Name. {Validated}
    [SETMN] Note: On some OS Languages this may not always translate/show correctly, use the 'ChangeModelName' script in the MRP's 'Optional' folder, if required.
    [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.
    [TBTMS] ===========================================
    [TBTMS] ===[ Brand Transfer Management Routine ]===
    [TBTMS] ===========================================
    [TBTMS] Brand theme that will be attempted to be used : VMWare
    [TBTMS] Original 'WallpaperStyle' value found within the 'VMWare.theme' file : 2 {Stretch 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.
    [EWBSC] Additional found 'Wallpaper' file{s} was copied over for use as 'Desktop' backgrounds or a slideshow later, if required.
    [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] VMWare 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] This Edition may have branding/theme errors due to the nature of the OS.
    [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] ===================================================
    [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: Some elements may not have been applied fully.
    [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.
    [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}
    [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.
    [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.
    [UNLDA] Unlock Defender: Special Control Mode v2. Also disables SmartAppControl and Smartscreen.
    [RANSA] Removed: All possible UWP Apps from the OS, except the Store, Screen Snip, Camera, Cortana/Search, Calculator or any 'System' required.
    [RANSA]          Some links to online or non UWP Apps may still be present on the Start Menu{s}.
    [TOSCF] Turn off the new 'Smart Clipboard' feature.
    [TOPTF] Turn Off the new 'Predictive Text' feature {Multilingual}.
    [RXSMS] Removed the 'XBox' App's Start Menu links, if present.
    [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 : 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     : VL_KMSClient {CTT}
    [CHKLS] Internet Connection Status : Appears not connected online
    [CHKLS] KMS Capable/Permitted      : Yes
    [CHKLS] Key Management Used        : Yes
    [CHKLS] VL Remaining Allowance     : 4985 days / 7179422 minutes.
    [CHKLS] VL Activation Interval     : 0 days / 120 minutes.
    [CHKLS] VL Renewal Interval        : 7 days / 10080 minutes.
    [CHKLS] Other Information          : Some results are beyond the standard allowance range. {K38}
    [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.