├── Scripts ├── all_Remove-DevHome-OutlookNew.ps1 ├── all_Standard_Install.reg └── all.reg ├── README.md ├── autounattend.xml ├── _OLD ├── 00.Win10-Components_22H2.xml └── 00.Win11-Components_23H2.xml ├── 03.Win11-Components_25H2-Laptop.xml ├── 02.Win11-Components_25H2.xml └── 01.Win11-Components_24H2.xml /Scripts/all_Remove-DevHome-OutlookNew.ps1: -------------------------------------------------------------------------------- 1 | Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "*Windows.DevHome*" | Remove-AppxPackage -AllUsers 2 | Get-AppxPackage -AllUsers | Where-Object {$_.Name -Like '*OutlookForWindows*'} | Remove-AppxPackage -AllUsers -ErrorAction Continue -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

Windows 11 Presets for NTLite

2 |
The goal of this preset is to give you the most barebones install while maintaining as much compatibility for everything you probably care about. This preset is a good starting point for Gaming, Video editing, streaming, and much more!

3 |

Everyone wants something different from their Windows experience. Why not start here?

4 | 5 | 🔴 Notes 🔴 6 | 7 | ▶ Scripts: 8 | 9 | `all.reg` 10 | 11 | This is a file that contains tweaks to make Windows Explorer less bloated. Removes Home, Gaming, and Windows Update tabs in the Settings App for Windows 11. Can also be used on Windows 10. Should be placed to run AFTER logon. 12 | 13 | `all_Disable-DevHome-OutlookNew.ps1` 14 | 15 | This file removes the Taskbar pin/component for DevHome and Outlook (New). Safe for both Windows 10 and 11. Should be placed to run AFTER logon. 16 | 17 | `all_Standard_Install.reg` 18 | 19 | This file is for when you make Install Media that includes XBOX and Windows Update stuff. It doesn't remove their entries in the Settings App so that you can edit them later. 20 | 21 | ▶ Windows 11: 22 | 23 | ![win11-desktop](https://github.com/user-attachments/assets/52402e6d-e9b5-4d22-b760-82552d13371e) 24 | 25 | ▶ How to update without Windows Update (Windows 11 only): 26 | 27 | [![IUpdating Windows](https://img.youtube.com/vi/MOL-pYqzcXM/0.jpg)](https://youtu.be/MOL-pYqzcXM) 28 | 29 | ▶ autounattended.xml: 30 | 31 | This is the unattended file that I use to solo boot into Windows as Administrator (System) and set the time to USET. 32 | -------------------------------------------------------------------------------- /autounattend.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 0409:00000409 6 | en-US 7 | en-US 8 | en-US 9 | en-US 10 | 11 | 12 | Eastern Standard Time 13 | 14 | true 15 | 9999999 16 | Administrator 17 | 18 | true</PlainText> 19 | <Value></Value> 20 | </Password> 21 | </AutoLogon> 22 | <OOBE> 23 | <HideEULAPage>true</HideEULAPage> 24 | <HideLocalAccountScreen>true</HideLocalAccountScreen> 25 | <HideOnlineAccountScreens>true</HideOnlineAccountScreens> 26 | <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE> 27 | <NetworkLocation>Home</NetworkLocation> 28 | <ProtectYourPC>3</ProtectYourPC> 29 | </OOBE> 30 | <UserAccounts> 31 | <AdministratorPassword> 32 | <PlainText>true</PlainText> 33 | <Value></Value> 34 | </AdministratorPassword> 35 | <LocalAccounts> 36 | <LocalAccount wcm:action="add"> 37 | <Group>Administrators</Group> 38 | <Name>Administrator</Name> 39 | <Password> 40 | <PlainText>true</PlainText> 41 | <Value></Value> 42 | </Password> 43 | </LocalAccount> 44 | </LocalAccounts> 45 | </UserAccounts> 46 | </component> 47 | </settings> 48 | <settings pass="specialize"> 49 | <component name="Microsoft-Windows-Deployment" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 50 | <RunSynchronous> 51 | <RunSynchronousCommand wcm:action="add"> 52 | <Order>1</Order> 53 | <Path>net user Administrator /active:Yes</Path> 54 | </RunSynchronousCommand> 55 | </RunSynchronous> 56 | </component> 57 | <component name="Microsoft-Windows-Security-SPP-UX" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 58 | <SkipAutoActivation>true</SkipAutoActivation> 59 | </component> 60 | <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 61 | <ComputerName>DESKTOP-PRESET0</ComputerName> 62 | </component> 63 | </settings> 64 | <settings pass="windowsPE"> 65 | <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 66 | <InputLocale>0409:00000409</InputLocale> 67 | <SystemLocale>en-US</SystemLocale> 68 | <UILanguage>en-US</UILanguage> 69 | <UILanguageFallback>en-US</UILanguageFallback> 70 | <UserLocale>en-US</UserLocale> 71 | <SetupUILanguage> 72 | <UILanguage>en-US</UILanguage> 73 | </SetupUILanguage> 74 | </component> 75 | <component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 76 | <Diagnostics> 77 | <OptIn>false</OptIn> 78 | </Diagnostics> 79 | <DynamicUpdate> 80 | <Enable>false</Enable> 81 | <WillShowUI>OnError</WillShowUI> 82 | </DynamicUpdate> 83 | <ImageInstall> 84 | <OSImage> 85 | <WillShowUI>OnError</WillShowUI> 86 | <InstallFrom> 87 | <MetaData wcm:action="add"> 88 | <Key>/IMAGE/INDEX</Key> 89 | <Value>1</Value> 90 | </MetaData> 91 | </InstallFrom> 92 | </OSImage> 93 | </ImageInstall> 94 | <UserData> 95 | <AcceptEula>true</AcceptEula> 96 | <ProductKey> 97 | <Key></Key> 98 | </ProductKey> 99 | </UserData> 100 | </component> 101 | </settings> 102 | </unattend> 103 | -------------------------------------------------------------------------------- /Scripts/all_Standard_Install.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Removes "Downloads" folder in Explorer 4 | [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{088e3905-0323-4b02-9826-5d99428e115f}] 5 | [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{088e3905-0323-4b02-9826-5d99428e115f}] 6 | 7 | ; Removes "Libraries" folder in Explorer 8 | [-HKEY_CURRENT_USER\Software\Classes\CLSID\{031E4825-7B94-4dc3-B131-E946B44C8DD5}] 9 | "System.IsPinnedToNameSpaceTree"=dword:1 10 | 11 | ; Removes "Documents" folder in Explorer 12 | [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{d3162b92-9365-467a-956b-92703aca08af}] 13 | [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{d3162b92-9365-467a-956b-92703aca08af}] 14 | 15 | ; Removes "Desktop" folder in Explorer 16 | [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}] 17 | [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}] 18 | 19 | ; Removes "3D Objects" folder in Explorer 20 | [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{0DB7E03F-FC29-4DC6-9020-FF41B59E513A}] 21 | [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{0DB7E03F-FC29-4DC6-9020-FF41B59E513A}] 22 | 23 | ; Removes "Videos" folder in Explorer 24 | [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{f86fa3ab-70d2-4fc7-9c99-fcbf05467f3a}] 25 | [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{f86fa3ab-70d2-4fc7-9c99-fcbf05467f3a}] 26 | 27 | ; Removes "Pictures" folder in Explorer 28 | [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{24ad3ad4-a569-4530-98e1-ab02f9417aa8}] 29 | [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{24ad3ad4-a569-4530-98e1-ab02f9417aa8}] 30 | 31 | ; Removes "Music" folder in Explorer 32 | [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{3dfdf296-dbec-4fb4-81d1-6a3438bcf4de}] 33 | [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{3dfdf296-dbec-4fb4-81d1-6a3438bcf4de}] 34 | 35 | ; Removes "OneDrive" folder in Explorer 36 | [-HKEY_CLASSES_ROOT\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}] 37 | "System.IsPinnedToNameSpaceTree"=dword:0 38 | [-HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}] 39 | "System.IsPinnedToNameSpaceTree"=dword:0 40 | 41 | ; Hides "Removable Drives" category in Explorer 42 | [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\DelegateFolders\{F5FB2C77-0E2F-4A16-A381-3E560C68BC83}] 43 | @="Removable Drives" 44 | [-HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\DelegateFolders\{F5FB2C77-0E2F-4A16-A381-3E560C68BC83}] 45 | @="Removable Drives" 46 | 47 | ; Unpins "Home" from Explorer 48 | [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{f874310e-b6b7-47dc-bc84-b9e6b38f5903}] 49 | 50 | ; Removes "Network" category for Explorer 51 | [-HKEY_CLASSES_ROOT\CLSID\{F02C1A0D-BE21-4350-88B0-7367FC96EF3C}\ShellFolder] 52 | "Attributes"=dword:b0940064 53 | [-HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{F02C1A0D-BE21-4350-88B0-7367FC96EF3C}}\ShellFolder] 54 | "Attributes"=dword:b0940064 55 | 56 | ; Remove "Quick Access" from Explorer 57 | [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer] 58 | "HubMode"=dword:00000001 59 | 60 | ; Restore old Right-click Context menu (Windows 11) 61 | [HKEY_CURRENT_USER\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}] 62 | @="" 63 | [HKEY_CURRENT_USER\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32] 64 | @="" 65 | 66 | ; Removes Gallery in File Explorer Nav Panel 67 | [HKEY_CURRENT_USER\Software\Classes\CLSID\{e88865ea-0e1c-4e20-9aa6-edcd0212c87c}] 68 | "System.IsPinnedToNameSpaceTree"=dword:00000000 69 | 70 | ; Disable Transparency after first restart 71 | [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize] 72 | "EnableTransparency"=dword:00000000 73 | 74 | ; Disables "Use the Print screen button to open screen snipping tool" option in settings 75 | [HKEY_CURRENT_USER\Control Panel\Keyboard] 76 | "PrintScreenKeyForSnippingEnabled"=dword:00000000 77 | 78 | ; Turns off "Sticky Keys" "Flags"="506"? 79 | [HKEY_CURRENT_USER\Control Panel\Accessibility\StickyKeys] 80 | "Flags"="2" 81 | 82 | ; Turns off "Toggle Keys" 83 | [HKEY_CURRENT_USER\Control Panel\Accessibility\ToggleKeys] 84 | "Flags"="34" 85 | 86 | [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem] 87 | "LongPathsEnabled"=dword:00000001 -------------------------------------------------------------------------------- /Scripts/all.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Removes "Downloads" folder in Explorer 4 | [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{088e3905-0323-4b02-9826-5d99428e115f}] 5 | [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{088e3905-0323-4b02-9826-5d99428e115f}] 6 | 7 | ; Removes "Libraries" folder in Explorer 8 | [-HKEY_CURRENT_USER\Software\Classes\CLSID\{031E4825-7B94-4dc3-B131-E946B44C8DD5}] 9 | "System.IsPinnedToNameSpaceTree"=dword:1 10 | 11 | ; Removes "Documents" folder in Explorer 12 | [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{d3162b92-9365-467a-956b-92703aca08af}] 13 | [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{d3162b92-9365-467a-956b-92703aca08af}] 14 | 15 | ; Removes "Desktop" folder in Explorer 16 | [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}] 17 | [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}] 18 | 19 | ; Removes "3D Objects" folder in Explorer 20 | [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{0DB7E03F-FC29-4DC6-9020-FF41B59E513A}] 21 | [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{0DB7E03F-FC29-4DC6-9020-FF41B59E513A}] 22 | 23 | ; Removes "Videos" folder in Explorer 24 | [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{f86fa3ab-70d2-4fc7-9c99-fcbf05467f3a}] 25 | [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{f86fa3ab-70d2-4fc7-9c99-fcbf05467f3a}] 26 | 27 | ; Removes "Pictures" folder in Explorer 28 | [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{24ad3ad4-a569-4530-98e1-ab02f9417aa8}] 29 | [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{24ad3ad4-a569-4530-98e1-ab02f9417aa8}] 30 | 31 | ; Removes "Music" folder in Explorer 32 | [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{3dfdf296-dbec-4fb4-81d1-6a3438bcf4de}] 33 | [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{3dfdf296-dbec-4fb4-81d1-6a3438bcf4de}] 34 | 35 | ; Removes "OneDrive" folder in Explorer 36 | [-HKEY_CLASSES_ROOT\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}] 37 | "System.IsPinnedToNameSpaceTree"=dword:0 38 | [-HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}] 39 | "System.IsPinnedToNameSpaceTree"=dword:0 40 | 41 | ; Hides "Removable Drives" category in Explorer 42 | [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\DelegateFolders\{F5FB2C77-0E2F-4A16-A381-3E560C68BC83}] 43 | @="Removable Drives" 44 | [-HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\DelegateFolders\{F5FB2C77-0E2F-4A16-A381-3E560C68BC83}] 45 | @="Removable Drives" 46 | 47 | ; Unpins "Home" from Explorer 48 | [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{f874310e-b6b7-47dc-bc84-b9e6b38f5903}] 49 | 50 | ; Removes "Network" category for Explorer 51 | [-HKEY_CLASSES_ROOT\CLSID\{F02C1A0D-BE21-4350-88B0-7367FC96EF3C}\ShellFolder] 52 | "Attributes"=dword:b0940064 53 | [-HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{F02C1A0D-BE21-4350-88B0-7367FC96EF3C}}\ShellFolder] 54 | "Attributes"=dword:b0940064 55 | 56 | ; Remove "Quick Access" from Explorer 57 | [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer] 58 | "HubMode"=dword:00000001 59 | 60 | ; Restore old Right-click Context menu (Windows 11) 61 | [HKEY_CURRENT_USER\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}] 62 | @="" 63 | [HKEY_CURRENT_USER\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32] 64 | @="" 65 | 66 | ; Removes Gallery in File Explorer Nav Panel 67 | [HKEY_CURRENT_USER\Software\Classes\CLSID\{e88865ea-0e1c-4e20-9aa6-edcd0212c87c}] 68 | "System.IsPinnedToNameSpaceTree"=dword:00000000 69 | 70 | ; Disable Transparency after first restart 71 | [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize] 72 | "EnableTransparency"=dword:00000000 73 | 74 | ; Disables "Use the Print screen button to open screen snipping tool" option in settings 75 | [HKEY_CURRENT_USER\Control Panel\Keyboard] 76 | "PrintScreenKeyForSnippingEnabled"=dword:00000000 77 | 78 | ; Turns off "Sticky Keys" "Flags"="506"? 79 | [HKEY_CURRENT_USER\Control Panel\Accessibility\StickyKeys] 80 | "Flags"="2" 81 | 82 | ; Turns off "Toggle Keys" 83 | [HKEY_CURRENT_USER\Control Panel\Accessibility\ToggleKeys] 84 | "Flags"="34" 85 | 86 | ; Hides the "Home" and "Windows Update" pages in the Settings App for Windows 11 87 | [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer] 88 | "SettingsPageVisibility"="hide:windowsupdate;home;gaming-gamebar;gaming-gamedvr;gaming-gamemode" 89 | 90 | ; WINDOWS UPDATE: disable delivery optimization 91 | [HKEY_USERS\S-1-5-20\Software\Microsoft\Windows\CurrentVersion\DeliveryOptimization\Settings] 92 | "DownloadMode"=dword:00000000 93 | 94 | [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem] 95 | "LongPathsEnabled"=dword:00000001 96 | 97 | [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\DataCollection] 98 | "AllowTelemetry"=dword:00000000 -------------------------------------------------------------------------------- /_OLD/00.Win10-Components_22H2.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <Preset isAutoSaved="true" xmlns="urn:schemas-nliteos-com:pn.v1"> 3 | <Date>05/22/2025 21:27:24</Date> 4 | <AppInfo> 5 | <Version>2025.5.10428</Version> 6 | <Licensed>Yes</Licensed> 7 | <Protections>Yes</Protections> 8 | <Host>Windows 11 Professional 24H2 x64 - 10.0.26100.4061 (en-US)</Host> 9 | </AppInfo> 10 | <ImageInfo> 11 | <Version mode="offline">Windows 10 Professional 22H2 x64 - 10.0.19045.5856 (en-US)</Version> 12 | <GUID>{93E6CCC7-407E-4DCE-BE22-D039E912B8F9}</GUID> 13 | </ImageInfo> 14 | <RemoveComponents AppRemovalMode="DISM"> 15 | <c>activedirectory 'Active Directory'</c> 16 | <c>adamclient 'Active Directory Lightweight Directory Services (AD LDS)'</c> 17 | <c>alg 'Application Layer Gateway Service'</c> 18 | <c>alljoyn 'AllJoyn Router Service'</c> 19 | <c>asimov 'Telemetry Client'</c> 20 | <c>assembly.net '.NET assembly cache'</c> 21 | <c>assignedaccess 'Assigned Access'</c> 22 | <c>axinstall 'ActiveX Installer Service'</c> 23 | <c>azman32 'Authorization Manager - 32 bit'</c> 24 | <c>azuread 'Azure Active Directory'</c> 25 | <c>battery</c> 26 | <c>bingsearch 'Bing Search (InboxApp)'</c> 27 | <c>branchcacheclient 'BranchCache Client'</c> 28 | <c>cellulartime 'Cellular Time'</c> 29 | <c>certmgr32 'Certificate Manager - 32 bit'</c> 30 | <c>commmc32 'COM+ (Component Services) (management console) - 32 bit'</c> 31 | <c>compmgmt32 'Computer Management - 32 bit'</c> 32 | <c>copilotpwa 'Windows Copilot (InboxApp)'</c> 33 | <c>dcsvc 'Declared Configuration (DC) service'</c> 34 | <c>desktopimgdownldr 'Desktop image downloader'</c> 35 | <c>deviceupdatecenter 'Device Update Center'</c> 36 | <c>devmgmt32 'Device Manager - 32 bit'</c> 37 | <c>diagnostics 'Diagnostics and Troubleshooting'</c> 38 | <c>diskdiagnosis 'Disk failure diagnostics'</c> 39 | <c>diskmgmt32 'Disk Management - 32 bit'</c> 40 | <c>diskquota 'Disk Quota'</c> 41 | <c>diskquota32 'Disk Quota - 32 bit'</c> 42 | <c>dolbyatmos 'Dolby Atmos codec pack'</c> 43 | <c>driver_battery.inf</c> 44 | <c>driver_c_barcodescanner.inf</c> 45 | <c>driver_c_battery.inf</c> 46 | <c>driver_c_cashdrawer.inf</c> 47 | <c>driver_c_fdc.inf</c> 48 | <c>driver_c_floppydisk.inf</c> 49 | <c>driver_c_infrared.inf</c> 50 | <c>driver_c_linedisplay.inf</c> 51 | <c>driver_c_magneticstripereader.inf</c> 52 | <c>driver_c_printer.inf</c> 53 | <c>driver_c_receiptprinter.inf</c> 54 | <c>driver_c_smartcard.inf</c> 55 | <c>driver_c_smartcardfilter.inf</c> 56 | <c>driver_c_smartcardreader.inf</c> 57 | <c>driver_cht4vx64.inf</c> 58 | <c>driver_cmbatt.inf</c> 59 | <c>driver_fdc.inf</c> 60 | <c>driver_flpydisk.inf</c> 61 | <c>driver_hidbatt.inf</c> 62 | <c>driver_hidir.inf</c> 63 | <c>driver_hidirkbd.inf</c> 64 | <c>driver_hidscanner.inf</c> 65 | <c>driver_hidtelephonydriver.inf</c> 66 | <c>driver_idtsec.inf</c> 67 | <c>driver_iscsi.inf</c> 68 | <c>driver_kdnic.inf</c> 69 | <c>driver_mgtdyn.inf</c> 70 | <c>driver_msclmd.inf</c> 71 | <c>driver_ntprint.inf</c> 72 | <c>driver_ntprint4.inf</c> 73 | <c>driver_perceptionsimulationheadset.inf</c> 74 | <c>driver_printqueue.inf</c> 75 | <c>driver_prnge001.inf</c> 76 | <c>driver_prnms002.inf</c> 77 | <c>driver_prnms003.inf</c> 78 | <c>driver_prnms004.inf</c> 79 | <c>driver_prnms005.inf</c> 80 | <c>driver_prnms007.inf</c> 81 | <c>driver_prnms008.inf</c> 82 | <c>driver_prnms010.inf</c> 83 | <c>driver_prnms011.inf</c> 84 | <c>driver_prnms012.inf</c> 85 | <c>driver_prnms014.inf</c> 86 | <c>driver_rdpbus.inf</c> 87 | <c>driver_rdvgwddmdx11.inf</c> 88 | <c>driver_remoteposdrv.inf</c> 89 | <c>driver_scrawpdo.inf</c> 90 | <c>driver_scunknown.inf</c> 91 | <c>driver_termkbd.inf</c> 92 | <c>driver_termmou.inf</c> 93 | <c>driver_tpmvsc.inf</c> 94 | <c>driver_ts_generic.inf</c> 95 | <c>driver_tsgenericusbdriver.inf</c> 96 | <c>driver_tsprint.inf</c> 97 | <c>driver_tsusbhubfilter.inf</c> 98 | <c>driver_usbcciddriver.inf</c> 99 | <c>driver_usbcir.inf</c> 100 | <c>driver_usbprint.inf</c> 101 | <c>driver_wsynth3dvsc.inf</c> 102 | <c>driver_wudfusbcciddriver.inf</c> 103 | <c>edgeupdate 'Microsoft Edge Update'</c> 104 | <c>embeddedmode 'Embedded Mode'</c> 105 | <c>enterpriseclientsync 'Work Folders Client'</c> 106 | <c>errorreporting 'Windows Error Reporting'</c> 107 | <c>eudcedit 'Private Character Editor'</c> 108 | <c>eventviewer32 'Event Viewer - 32 bit'</c> 109 | <c>f46d4000-fd22-4db4-ac8e-4e1ddde828fe 'Add Folder Suggestions dialog'</c> 110 | <c>firstlogonanim 'First-logon animation'</c> 111 | <c>font_holomd2 'Holo MDL2 Assets'</c> 112 | <c>fontpreviewer32 'Font previewer - 32 bit'</c> 113 | <c>fsmgmt32 'Shared Folders UI - 32 bit'</c> 114 | <c>gameexplorer 'Game Explorer'</c> 115 | <c>help 'Windows Help content'</c> 116 | <c>hwsupport_fax 'Fax'</c> 117 | <c>hwsupport_floppy 'Floppy disk'</c> 118 | <c>hwsupport_infrared 'Infrared devices'</c> 119 | <c>hwsupport_internetprintingclient 'Internet Printing Client'</c> 120 | <c>hwsupport_printer 'Printing'</c> 121 | <c>hwsupport_scanner 'Scanner'</c> 122 | <c>hwsupport_smartcard 'Smartcard'</c> 123 | <c>hwsupport_telephony 'Telephony'</c> 124 | <c>hwsupport_tv 'TV Tuner codecs and support'</c> 125 | <c>iis 'Internet Information Server (IIS)'</c> 126 | <c>indeo 'Intel Indeo Codecs'</c> 127 | <c>insiderhub 'Windows Insider Program'</c> 128 | <c>internetexplorer 'Internet Explorer'</c> 129 | <c>internetexplorer32 'Internet Explorer - 32 bit'</c> 130 | <c>iscsi 'iSCSI Initiator'</c> 131 | <c>kerberos32 'Kerberos Client - 32 bit'</c> 132 | <c>kerneldebug 'Kernel Debugging'</c> 133 | <c>lcu 'Cumulative Update cache (LCU)'</c> 134 | <c>lockscreens 'Lock Screen backgrounds'</c> 135 | <c>lusrmgr32 'Local Users and Groups Manager - 32 bit'</c> 136 | <c>lxss 'Windows Subsystem for Linux'</c> 137 | <c>mail 'Windows Mail'</c> 138 | <c>mailcommdll 'Windows Mail Communications Library'</c> 139 | <c>manifestbackup 'Manifest Backup (WinSxS\Backup)'</c> 140 | <c>mapcontrol 'Map Control'</c> 141 | <c>mediaplayer 'Windows Media Player'</c> 142 | <c>mediaplayer32 'Windows Media Player - 32 bit'</c> 143 | <c>mediaplayernetworksharing 'WMP Network Sharing Service'</c> 144 | <c>mediaplayernetworksharing32 'WMP Network Sharing Service - 32 bit'</c> 145 | <c>messagingsvc 'Messaging Service'</c> 146 | <c>microsoft.549981c3f5f10 'Cortana'</c> 147 | <c>microsoft.advertising.xaml 'Microsoft Advertising SDK for XAML'</c> 148 | <c>microsoft.asynctextservice 'AsyncTextService'</c> 149 | <c>microsoft.bingweather 'MSN Weather'</c> 150 | <c>microsoft.bioenrollment 'Windows Hello Setup'</c> 151 | <c>microsoft.ecapp 'Eye Control'</c> 152 | <c>microsoft.gethelp 'Get Help'</c> 153 | <c>microsoft.getstarted 'Tips (Get Started)'</c> 154 | <c>microsoft.heifimageextension 'HEIF Image Extensions'</c> 155 | <c>microsoft.microsoft3dviewer '3D Viewer'</c> 156 | <c>microsoft.microsoftedge 'Microsoft Edge (Legacy)'</c> 157 | <c>microsoft.microsoftedge.stable 'Microsoft Edge (Chromium)'</c> 158 | <c>microsoft.microsoftedgedevtoolsclient 'Microsoft Edge DevTools Client'</c> 159 | <c>microsoft.microsoftofficehub 'Office'</c> 160 | <c>microsoft.microsoftsolitairecollection 'Microsoft Solitaire Collection'</c> 161 | <c>microsoft.microsoftstickynotes 'Microsoft Sticky Notes'</c> 162 | <c>microsoft.mixedreality.portal 'Mixed Reality Portal'</c> 163 | <c>microsoft.mspaint 'Paint 3D'</c> 164 | <c>microsoft.office.onenote 'OneNote'</c> 165 | <c>microsoft.people 'Microsoft People'</c> 166 | <c>microsoft.screensketch 'Snip &amp; Sketch'</c> 167 | <c>microsoft.skypeapp 'Skype'</c> 168 | <c>microsoft.vp9videoextensions 'VP9 Video Extensions'</c> 169 | <c>microsoft.wallet 'Microsoft Pay'</c> 170 | <c>microsoft.webmediaextensions 'Web Media Extensions'</c> 171 | <c>microsoft.webpimageextension 'Webp Image Extensions'</c> 172 | <c>microsoft.win32webviewhost 'Desktop App Web Viewer'</c> 173 | <c>microsoft.windows.apprep.chxapp 'SmartScreen'</c> 174 | <c>microsoft.windows.assignedaccesslockapp 'Assigned Access Lock app'</c> 175 | <c>microsoft.windows.callingshellapp 'Call'</c> 176 | <c>microsoft.windows.contentdeliverymanager 'Content Delivery Manager'</c> 177 | <c>microsoft.windows.parentalcontrols 'Microsoft family features'</c> 178 | <c>microsoft.windows.photos 'Microsoft Photos'</c> 179 | <c>microsoft.windows.pinningconfirmationdialog 'PinningConfirmationDialog'</c> 180 | <c>microsoft.windows.sechealthui 'Windows Defender'</c> 181 | <c>microsoft.windows.secureassessmentbrowser 'Take a Test'</c> 182 | <c>microsoft.windows.xgpuejectdialog 'Safely Remove Device'</c> 183 | <c>microsoft.windowsalarms 'Windows Alarms &amp; Clock'</c> 184 | <c>microsoft.windowscamera 'Windows Camera'</c> 185 | <c>microsoft.windowscommunicationsapps 'Mail and Calendar'</c> 186 | <c>microsoft.windowsfeedbackhub 'Feedback Hub'</c> 187 | <c>microsoft.windowsmaps 'Windows Maps'</c> 188 | <c>microsoft.windowssoundrecorder 'Windows Voice Recorder'</c> 189 | <c>microsoft.xbox.tcui 'Xbox TCUI'</c> 190 | <c>microsoft.xboxapp 'Xbox'</c> 191 | <c>microsoft.xboxgamecallableui 'Xbox Game UI'</c> 192 | <c>microsoft.xboxgameoverlay 'Xbox Game Bar Plugin'</c> 193 | <c>microsoft.xboxgamingoverlay 'Xbox Game Bar'</c> 194 | <c>microsoft.xboxspeechtotextoverlay 'Xbox Game Speech Window'</c> 195 | <c>microsoft.yourphone 'Your Phone'</c> 196 | <c>microsoft.zunemusic 'Groove Music'</c> 197 | <c>microsoft.zunevideo 'Movies &amp; TV'</c> 198 | <c>mixedreality 'Windows Mixed Reality'</c> 199 | <c>mmc32 'Microsoft Management Console (MMC) - 32 bit'</c> 200 | <c>mobiledevicemanagement 'Mobile Device Management (MDM)'</c> 201 | <c>mobilenetworkingapi32 'Mobile Networking API - 32 bit'</c> 202 | <c>mobilepc</c> 203 | <c>mobilepc_networkprojection 'Network Projection'</c> 204 | <c>msmq 'Microsoft Message Queue (MSMQ)'</c> 205 | <c>multipointconnector 'MultiPoint Connector'</c> 206 | <c>ndu 'Network Data Usage Monitoring Driver'</c> 207 | <c>netbios 'NetBIOS over TCP transport'</c> 208 | <c>nfc 'Near Field Communication (NFC)'</c> 209 | <c>notepad 'Notepad (Legacy)'</c> 210 | <c>offlinefiles 'Offline Files'</c> 211 | <c>onedrive</c> 212 | <c>openssh</c> 213 | <c>otherthemes 'Windows Personalization themes'</c> 214 | <c>paint32 'Paint - 32 bit'</c> 215 | <c>payments</c> 216 | <c>phonesvc 'Phone Service'</c> 217 | <c>photoviewer 'Photo Viewer'</c> 218 | <c>photoviewer32 'Photo Viewer - 32 bit'</c> 219 | <c>pos 'Point of Service (POS)'</c> 220 | <c>powershellise 'PowerShell ISE'</c> 221 | <c>powershellise32 'PowerShell ISE - 32 bit'</c> 222 | <c>printmgmt 'Print Management'</c> 223 | <c>printtopdf 'Print to PDF'</c> 224 | <c>printworkflow 'Print Workflow Service'</c> 225 | <c>projfs 'Projected File System (ProjFS)'</c> 226 | <c>pushtoinstall 'Windows PushToInstall Service'</c> 227 | <c>rasauto 'Remote Access Auto Connection Manager'</c> 228 | <c>rdc 'Remote Differential Compression (RDC)'</c> 229 | <c>rdmaping 'Remote Direct Memory Access (RDMA) ping tool'</c> 230 | <c>rdpclient 'Remote Desktop Client'</c> 231 | <c>rdpclient32 'Remote Desktop Client - 32 bit'</c> 232 | <c>rdpserver 'Remote Desktop Server'</c> 233 | <c>rdpserverlic 'Remote Desktop Licensing'</c> 234 | <c>refs 'Resilient File System (ReFS)'</c> 235 | <c>regedit32 'Registry Editor - 32 bit'</c> 236 | <c>remoteactivex 'Remote Desktop Services ActiveX Client'</c> 237 | <c>remoteactivex32 'Remote Desktop Services ActiveX Client - 32 bit'</c> 238 | <c>remoteassistance 'Remote Assistance'</c> 239 | <c>remotefx</c> 240 | <c>remoteportredirector 'Remote Desktop Services Port Redirector'</c> 241 | <c>remoteregistry 'Remote Registry'</c> 242 | <c>retaildemo 'Retail Demo Content'</c> 243 | <c>rotationmanager 'Auto-Rotation Manager'</c> 244 | <c>screensavers</c> 245 | <c>securitycenter 'Security Center'</c> 246 | <c>servicesmmc32 'Services (management console) - 32 bit'</c> 247 | <c>sharedaccess 'Internet Connection Sharing (ICS)'</c> 248 | <c>simpletcp 'Simple TCP/IP services'</c> 249 | <c>skypeortc 'Skype ORTC'</c> 250 | <c>smbdirect 'SMB Direct (RDMA)'</c> 251 | <c>smbv1 'SMB v1'</c> 252 | <c>smbwitnessclientapi 'SMB Witness Client API'</c> 253 | <c>snippingtool 'Snipping Tool'</c> 254 | <c>soundsdefault 'Sounds (Default)'</c> 255 | <c>soundthemes 'Sound Themes'</c> 256 | <c>sourcessxsdir 'Manual feature repository'</c> 257 | <c>srumon 'Data Usage service'</c> 258 | <c>stepsrecorder 'Steps Recorder'</c> 259 | <c>supportdir 'Support directory'</c> 260 | <c>synccenter 'Sync Center'</c> 261 | <c>tabletpc 'Tablet PC'</c> 262 | <c>taskschdmsc32 'Task Scheduler (management console) - 32 bit'</c> 263 | <c>telnetclient 'Telnet Client'</c> 264 | <c>tempcache 'Cache and temp files'</c> 265 | <c>tftpclient 'TFTP client'</c> 266 | <c>timetraveldebugger 'Time Travel Debugger (TTD)'</c> 267 | <c>tpmmmc32 'Trusted Platform Module (TPM) (management console) - 32 bit'</c> 268 | <c>troubleshootingsvc 'Recommended Troubleshooting service'</c> 269 | <c>universalprintsvc 'Universal Print Management Service'</c> 270 | <c>userdeviceregistration 'User Device Registration'</c> 271 | <c>waasassessment 'Windows Update Medic Service'</c> 272 | <c>wallet 'Wallet Service'</c> 273 | <c>wallpaperdefault 'Wallpaper (Default)'</c> 274 | <c>wallpapers 'Wallpapers (Themes)'</c> 275 | <c>webview2core 'WebView2 Runtime (Core)'</c> 276 | <c>wfmmc32 'Windows Firewall (management console) - 32 bit'</c> 277 | <c>windows.cbspreview 'Windows Barcode Preview'</c> 278 | <c>windows.printdialog 'Windows Print'</c> 279 | <c>windowstogo 'Windows To Go'</c> 280 | <c>windowsupdate 'Windows Update'</c> 281 | <c>winsat 'Windows System Assessment Tool (WinSAT)'</c> 282 | <c>wordpad</c> 283 | <c>wordpad32 'Wordpad - 32 bit'</c> 284 | <c>xbox 'Xbox - Core'</c> 285 | </RemoveComponents> 286 | <Compatibility protectHidden="true"> 287 | <ComponentFeatures> 288 | <Feature enabled="no">AppGuard</Feature> 289 | <Feature enabled="yes">Battle.net</Feature> 290 | <Feature enabled="no">YubiKey</Feature> 291 | <Feature enabled="no">Bluetooth</Feature> 292 | <Feature enabled="yes">USBCamera</Feature> 293 | <Feature enabled="no">CapFrameX</Feature> 294 | <Feature enabled="yes">Discord</Feature> 295 | <Feature enabled="no">Docker</Feature> 296 | <Feature enabled="no">EA Anti-Cheat</Feature> 297 | <Feature enabled="no">FileSharing</Feature> 298 | <Feature enabled="no">Hyper-V</Feature> 299 | <Feature enabled="no">iCloud</Feature> 300 | <Feature enabled="no">Kaspersky</Feature> 301 | <Feature enabled="no">ManualSetup</Feature> 302 | <Feature enabled="yes">OfficeSupport</Feature> 303 | <Feature enabled="yes">AppxSupport</Feature> 304 | <Feature enabled="yes">Netflix</Feature> 305 | <Feature enabled="no">NetworkDiscovery</Feature> 306 | <Feature enabled="yes">NightLight</Feature> 307 | <Feature enabled="yes">NvidiaSetup</Feature> 308 | <Feature enabled="yes">OOBE</Feature> 309 | <Feature enabled="no">Printing</Feature> 310 | <Feature enabled="no">Recommended-All</Feature> 311 | <Feature enabled="no">RDPServer</Feature> 312 | <Feature enabled="no">SamsungSwitch</Feature> 313 | <Feature enabled="no">Scanning</Feature> 314 | <Feature enabled="yes">ServicingStack</Feature> 315 | <Feature enabled="yes">ShellSearchSupport</Feature> 316 | <Feature enabled="yes">Spotify</Feature> 317 | <Feature enabled="yes">SFC</Feature> 318 | <Feature enabled="yes">DefaultFonts</Feature> 319 | <Feature enabled="no">SafeMode</Feature> 320 | <Feature enabled="yes">TeamViewer</Feature> 321 | <Feature enabled="no">Recommended-Tablet</Feature> 322 | <Feature enabled="no">HostRefresh</Feature> 323 | <Feature enabled="no">USBModem</Feature> 324 | <Feature enabled="yes">USB</Feature> 325 | <Feature enabled="yes">VideoPlayback</Feature> 326 | <Feature enabled="no">VPN</Feature> 327 | <Feature enabled="yes">VisualStudio</Feature> 328 | <Feature enabled="no">VSS</Feature> 329 | <Feature enabled="yes">ActivationKMS</Feature> 330 | <Feature enabled="yes">Activation</Feature> 331 | <Feature enabled="yes">WinSetup</Feature> 332 | <Feature enabled="yes">WindowsStore</Feature> 333 | <Feature enabled="no">WindowsUpdate</Feature> 334 | <Feature enabled="yes">WLAN</Feature> 335 | </ComponentFeatures> 336 | <MachineDrivers> 337 | <Machine enabled="yes">HostMachine</Machine> 338 | <Machine enabled="no">Hyper-V VM</Machine> 339 | <Machine enabled="no">Parallels VM</Machine> 340 | <Machine enabled="no">Virtual Box VM</Machine> 341 | <Machine enabled="no">VMware VM</Machine> 342 | </MachineDrivers> 343 | </Compatibility> 344 | <Features> 345 | <Feature name="NetFx4-AdvSrvs">false</Feature> 346 | <Feature name="OneCoreUAP.OneSync~~~~0.0.1.0">false</Feature> 347 | <Feature name="MathRecognizer~~~~0.0.1.0">false</Feature> 348 | <Feature name="App.Support.QuickAssist~~~~0.0.1.0">false</Feature> 349 | <Feature name="Microsoft.Windows.Notepad~~~~0.0.1.0">false</Feature> 350 | <Feature name="Print.Management.Console~~~~0.0.1.0">false</Feature> 351 | <Feature name="WCF-TCP-PortSharing45">false</Feature> 352 | <Feature name="WCF-Services45">false</Feature> 353 | <Feature name="Print.Fax.Scan~~~~0.0.1.0">false</Feature> 354 | <Feature name="Hello.Face.Migration.18967~~~~0.0.1.0">false</Feature> 355 | <Feature name="Hello.Face.18967~~~~0.0.1.0">false</Feature> 356 | <Feature name="Media.WindowsMediaPlayer~~~~0.0.12.0">false</Feature> 357 | <Feature name="MicrosoftWindowsPowerShellV2">false</Feature> 358 | <Feature name="MicrosoftWindowsPowerShellV2Root">false</Feature> 359 | <Feature name="Microsoft.Windows.PowerShell.ISE~~~~0.0.1.0">false</Feature> 360 | </Features> 361 | <Packages> 362 | <Options> 363 | <CleanHotfixedLeftovers>0</CleanHotfixedLeftovers> 364 | <OptimizeAppX>false</OptimizeAppX> 365 | <UpdateBootManager>false</UpdateBootManager> 366 | </Options> 367 | </Packages> 368 | <Commands> 369 | <PostUpdates> 370 | <!--<Command>cmd /c echo Example from [MOUNTDIR]\Windows &amp; pause</Command>--> 371 | <!--<Command>dism /image:[MOUNTDIR] /get-intl</Command>--> 372 | </PostUpdates> 373 | </Commands> 374 | <Drivers> 375 | <Options> 376 | <ReuseDriverCache>false</ReuseDriverCache> 377 | <ShowHidden>true</ShowHidden> 378 | </Options> 379 | </Drivers> 380 | <Unattended mode="0"> 381 | <AnswerFileLocationPanther>false</AnswerFileLocationPanther> 382 | <AnswerFileLocationBoot>false</AnswerFileLocationBoot> 383 | <SaveBothArch>false</SaveBothArch> 384 | <EditionPrompt>false</EditionPrompt> 385 | <settings pass="windowsPE"> 386 | <component name="Microsoft-Windows-Setup"> 387 | <DynamicUpdate> 388 | <WillShowUI>OnError</WillShowUI> 389 | </DynamicUpdate> 390 | <ImageInstall> 391 | <OSImage> 392 | <WillShowUI>OnError</WillShowUI> 393 | <InstallFrom> 394 | <MetaData> 395 | <Key>/IMAGE/INDEX</Key> 396 | <Value>1</Value> 397 | </MetaData> 398 | </InstallFrom> 399 | </OSImage> 400 | </ImageInstall> 401 | <UserData> 402 | <ProductKey> 403 | <Key></Key> 404 | </ProductKey> 405 | </UserData> 406 | </component> 407 | </settings> 408 | </Unattended> 409 | <Tweaks> 410 | <Settings> 411 | <TweakGroup name="DesktopTweaks"> 412 | <Tweak name="Keyboard\PrintScreenKeyForSnippingEnabled">0</Tweak> 413 | </TweakGroup> 414 | </Settings> 415 | <Services></Services> 416 | <ExtraServices></ExtraServices> 417 | <ScheduledTasks></ScheduledTasks> 418 | </Tweaks> 419 | <ApplyOptions> 420 | <ImageTasks> 421 | <Task>imageSaveRebuild</Task> 422 | <Task>imageFormatWim</Task> 423 | </ImageTasks> 424 | <AutoIsoFile>NTLite.iso</AutoIsoFile> 425 | <AutoIsoLabel>NTLite</AutoIsoLabel> 426 | <AutoSplitSize>4000</AutoSplitSize> 427 | </ApplyOptions> 428 | <Execution BeforeLogonMode="0"> 429 | <Remove></Remove> 430 | <Change></Change> 431 | <Add></Add> 432 | </Execution> 433 | <Registry></Registry> 434 | </Preset> 435 | -------------------------------------------------------------------------------- /_OLD/00.Win11-Components_23H2.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <Preset isAutoSaved="true" xmlns="urn:schemas-nliteos-com:pn.v1"> 3 | <Date>02/26/2025 08:51:45</Date> 4 | <AppInfo> 5 | <Version>2025.2.10293</Version> 6 | <Licensed>Yes</Licensed> 7 | <Protections>Yes</Protections> 8 | <Host>Windows 11 Professional 23H2 x64 - 10.0.22631.4890 (en-US)</Host> 9 | </AppInfo> 10 | <ImageInfo> 11 | <Version mode="offline">Windows 11 Professional 23H2 x64 - 10.0.22631.4974 (en-US)</Version> 12 | <GUID>{2974E055-43DC-42AA-BFEE-68F6D7307AC2}</GUID> 13 | </ImageInfo> 14 | <RemoveComponents AppRemovalMode="DISM"> 15 | <c>accessibility_cursors 'Mouse Pointers (Accessibility tools)'</c> 16 | <c>activedirectory 'Active Directory'</c> 17 | <c>adamclient 'Active Directory Lightweight Directory Services (AD LDS)'</c> 18 | <c>alg 'Application Layer Gateway Service'</c> 19 | <c>alljoyn 'AllJoyn Router Service'</c> 20 | <c>apptargetedfeaturedb 'Application Targeted Feature Database'</c> 21 | <c>asimov 'Telemetry Client'</c> 22 | <c>assembly.net '.NET assembly cache'</c> 23 | <c>assignedaccess 'Assigned Access'</c> 24 | <c>axinstall 'ActiveX Installer Service'</c> 25 | <c>azman32 'Authorization Manager - 32 bit'</c> 26 | <c>azuread 'Azure Active Directory'</c> 27 | <c>battery</c> 28 | <c>bingsearch 'Bing Search (InboxApp)'</c> 29 | <c>branchcacheclient 'BranchCache Client'</c> 30 | <c>cellulartime 'Cellular Time'</c> 31 | <c>certmgr32 'Certificate Manager - 32 bit'</c> 32 | <c>charmap 'Character Map'</c> 33 | <c>cimfs 'Composite Image File System (CimFS)'</c> 34 | <c>clipchamp.clipchamp 'Clipchamp'</c> 35 | <c>commmc32 'COM+ (Component Services) (management console) - 32 bit'</c> 36 | <c>compmgmt32 'Computer Management - 32 bit'</c> 37 | <c>containers 'Containers (Application Guard)'</c> 38 | <c>copilotpwa 'Windows Copilot (InboxApp)'</c> 39 | <c>cursors 'Mouse Pointers'</c> 40 | <c>dcsvc 'Declared Configuration (DC) service'</c> 41 | <c>desktopimgdownldr 'Desktop image downloader'</c> 42 | <c>deviceupdatecenter 'Device Update Center'</c> 43 | <c>devmgmt32 'Device Manager - 32 bit'</c> 44 | <c>diagnostics 'Diagnostics and Troubleshooting'</c> 45 | <c>diskdiagnosis 'Disk failure diagnostics'</c> 46 | <c>diskmgmt32 'Disk Management - 32 bit'</c> 47 | <c>diskquota 'Disk Quota'</c> 48 | <c>diskquota32 'Disk Quota - 32 bit'</c> 49 | <c>dolbyatmos 'Dolby Atmos codec pack'</c> 50 | <c>driver_battery.inf</c> 51 | <c>driver_c_barcodescanner.inf</c> 52 | <c>driver_c_battery.inf</c> 53 | <c>driver_c_cashdrawer.inf</c> 54 | <c>driver_c_fdc.inf</c> 55 | <c>driver_c_floppydisk.inf</c> 56 | <c>driver_c_infrared.inf</c> 57 | <c>driver_c_linedisplay.inf</c> 58 | <c>driver_c_magneticstripereader.inf</c> 59 | <c>driver_c_printer.inf</c> 60 | <c>driver_c_receiptprinter.inf</c> 61 | <c>driver_c_smartcard.inf</c> 62 | <c>driver_c_smartcardfilter.inf</c> 63 | <c>driver_c_smartcardreader.inf</c> 64 | <c>driver_cht4vx64.inf</c> 65 | <c>driver_cmbatt.inf</c> 66 | <c>driver_fdc.inf</c> 67 | <c>driver_flpydisk.inf</c> 68 | <c>driver_hidbatt.inf</c> 69 | <c>driver_hidir.inf</c> 70 | <c>driver_hidirkbd.inf</c> 71 | <c>driver_hidscanner.inf</c> 72 | <c>driver_hidtelephonydriver.inf</c> 73 | <c>driver_idtsec.inf</c> 74 | <c>driver_iscsi.inf</c> 75 | <c>driver_kdnic.inf</c> 76 | <c>driver_mgtdyn.inf</c> 77 | <c>driver_msclmd.inf</c> 78 | <c>driver_ntprint.inf</c> 79 | <c>driver_ntprint4.inf</c> 80 | <c>driver_perceptionsimulationheadset.inf</c> 81 | <c>driver_printqueue.inf</c> 82 | <c>driver_prnge001.inf</c> 83 | <c>driver_prnms002.inf</c> 84 | <c>driver_prnms003.inf</c> 85 | <c>driver_prnms004.inf</c> 86 | <c>driver_prnms005.inf</c> 87 | <c>driver_prnms007.inf</c> 88 | <c>driver_prnms008.inf</c> 89 | <c>driver_prnms010.inf</c> 90 | <c>driver_prnms011.inf</c> 91 | <c>driver_prnms012.inf</c> 92 | <c>driver_prnms014.inf</c> 93 | <c>driver_rdpbus.inf</c> 94 | <c>driver_remoteposdrv.inf</c> 95 | <c>driver_scrawpdo.inf</c> 96 | <c>driver_scunknown.inf</c> 97 | <c>driver_termkbd.inf</c> 98 | <c>driver_termmou.inf</c> 99 | <c>driver_tpmvsc.inf</c> 100 | <c>driver_ts_generic.inf</c> 101 | <c>driver_tsgenericusbdriver.inf</c> 102 | <c>driver_tsprint.inf</c> 103 | <c>driver_tsusbhubfilter.inf</c> 104 | <c>driver_usbcciddriver.inf</c> 105 | <c>driver_usbcir.inf</c> 106 | <c>driver_usbprint.inf</c> 107 | <c>driver_wudfusbcciddriver.inf</c> 108 | <c>easeofaccessthemes 'Ease Of Access Themes'</c> 109 | <c>edgeupdate 'Microsoft Edge Update'</c> 110 | <c>embeddedexperience 'Device Lockdown (Embedded Experience)'</c> 111 | <c>embeddedmode 'Embedded Mode'</c> 112 | <c>entappsvc '[beta] Enterprise App Management Service'</c> 113 | <c>enterpriseclientsync 'Work Folders Client'</c> 114 | <c>errorreporting 'Windows Error Reporting'</c> 115 | <c>eudcedit 'Private Character Editor'</c> 116 | <c>eventviewer32 'Event Viewer - 32 bit'</c> 117 | <c>f46d4000-fd22-4db4-ac8e-4e1ddde828fe 'Add Folder Suggestions dialog'</c> 118 | <c>firstlogonanim 'First-logon animation'</c> 119 | <c>flipgridpwa 'Flipgrid PWA (InboxApp)'</c> 120 | <c>font_holomd2 'Holo MDL2 Assets'</c> 121 | <c>fontpreviewer32 'Font previewer - 32 bit'</c> 122 | <c>fsmgmt32 'Shared Folders UI - 32 bit'</c> 123 | <c>gameexplorer 'Game Explorer'</c> 124 | <c>help 'Windows Help content'</c> 125 | <c>hwsupport_floppy 'Floppy disk'</c> 126 | <c>hwsupport_infrared 'Infrared devices'</c> 127 | <c>hwsupport_internetprintingclient 'Internet Printing Client'</c> 128 | <c>hwsupport_printer 'Printing'</c> 129 | <c>hwsupport_scanner 'Scanner'</c> 130 | <c>hwsupport_smartcard 'Smartcard'</c> 131 | <c>hwsupport_telephony 'Telephony'</c> 132 | <c>hwsupport_tv 'TV Tuner codecs and support'</c> 133 | <c>iis 'Internet Information Server (IIS)'</c> 134 | <c>indeo 'Intel Indeo Codecs'</c> 135 | <c>insiderhub 'Windows Insider Program'</c> 136 | <c>internetexplorer 'Internet Explorer'</c> 137 | <c>internetexplorer32 'Internet Explorer - 32 bit'</c> 138 | <c>iscsi 'iSCSI Initiator'</c> 139 | <c>kerberos32 'Kerberos Client - 32 bit'</c> 140 | <c>kerneldebug 'Kernel Debugging'</c> 141 | <c>la57 '57-bit Linear Addressing'</c> 142 | <c>lcu 'Cumulative Update cache (LCU)'</c> 143 | <c>livecaptions 'Live Captions'</c> 144 | <c>lockscreens 'Lock Screen backgrounds'</c> 145 | <c>lusrmgr32 'Local Users and Groups Manager - 32 bit'</c> 146 | <c>lxss 'Windows Subsystem for Linux'</c> 147 | <c>mail 'Windows Mail'</c> 148 | <c>mailcommdll 'Windows Mail Communications Library'</c> 149 | <c>manifestbackup 'Manifest Backup (WinSxS\Backup)'</c> 150 | <c>mapcontrol 'Map Control'</c> 151 | <c>mediaplayer 'Windows Media Player'</c> 152 | <c>mediaplayer32 'Windows Media Player - 32 bit'</c> 153 | <c>mediaplayernetworksharing 'WMP Network Sharing Service'</c> 154 | <c>mediaplayernetworksharing32 'WMP Network Sharing Service - 32 bit'</c> 155 | <c>messagingsvc 'Messaging Service'</c> 156 | <c>microsoft.549981c3f5f10 'Cortana'</c> 157 | <c>microsoft.asynctextservice 'AsyncTextService'</c> 158 | <c>microsoft.bingnews 'Microsoft News'</c> 159 | <c>microsoft.bingweather 'MSN Weather'</c> 160 | <c>microsoft.bioenrollment 'Windows Hello Setup'</c> 161 | <c>microsoft.ecapp 'Eye Control'</c> 162 | <c>microsoft.gamingapp 'Xbox App'</c> 163 | <c>microsoft.gethelp 'Get Help'</c> 164 | <c>microsoft.getstarted 'Tips (Get Started)'</c> 165 | <c>microsoft.heifimageextension 'HEIF Image Extensions'</c> 166 | <c>microsoft.hevcvideoextension 'HEVC Video Extensions from Device Manufacturer'</c> 167 | <c>microsoft.microsoftedge 'Microsoft Edge (Legacy)'</c> 168 | <c>microsoft.microsoftedge.stable 'Microsoft Edge (Chromium)'</c> 169 | <c>microsoft.microsoftedgedevtoolsclient 'Microsoft Edge DevTools Client'</c> 170 | <c>microsoft.microsoftofficehub 'Office'</c> 171 | <c>microsoft.microsoftsolitairecollection 'Microsoft Solitaire Collection'</c> 172 | <c>microsoft.microsoftstickynotes 'Microsoft Sticky Notes'</c> 173 | <c>microsoft.people 'Microsoft People'</c> 174 | <c>microsoft.powerautomatedesktop 'Power Automate'</c> 175 | <c>microsoft.rawimageextension 'Raw Image Extension'</c> 176 | <c>microsoft.screensketch 'Snipping Tool'</c> 177 | <c>microsoft.sechealthui 'Windows Defender'</c> 178 | <c>microsoft.todos 'Microsoft To Do'</c> 179 | <c>microsoft.vp9videoextensions 'VP9 Video Extensions'</c> 180 | <c>microsoft.webmediaextensions 'Web Media Extensions'</c> 181 | <c>microsoft.webpimageextension 'Webp Image Extensions'</c> 182 | <c>microsoft.windows.apprep.chxapp 'SmartScreen'</c> 183 | <c>microsoft.windows.assignedaccesslockapp 'Assigned Access Lock app'</c> 184 | <c>microsoft.windows.callingshellapp 'Call'</c> 185 | <c>microsoft.windows.contentdeliverymanager 'Content Delivery Manager'</c> 186 | <c>microsoft.windows.parentalcontrols 'Microsoft family features'</c> 187 | <c>microsoft.windows.photos 'Microsoft Photos'</c> 188 | <c>microsoft.windows.pinningconfirmationdialog 'PinningConfirmationDialog'</c> 189 | <c>microsoft.windows.printqueueactioncenter 'Print Queue'</c> 190 | <c>microsoft.windows.secureassessmentbrowser 'Take a Test'</c> 191 | <c>microsoft.windows.xgpuejectdialog 'Safely Remove Device'</c> 192 | <c>microsoft.windowsalarms 'Windows Clock'</c> 193 | <c>microsoft.windowscamera 'Windows Camera'</c> 194 | <c>microsoft.windowscommunicationsapps 'Mail and Calendar'</c> 195 | <c>microsoft.windowsfeedbackhub 'Feedback Hub'</c> 196 | <c>microsoft.windowsmaps 'Windows Maps'</c> 197 | <c>microsoft.windowsnotepad 'Notepad'</c> 198 | <c>microsoft.windowssoundrecorder 'Windows Voice Recorder'</c> 199 | <c>microsoft.xbox.tcui 'Xbox TCUI'</c> 200 | <c>microsoft.xboxgamecallableui 'Xbox Game UI'</c> 201 | <c>microsoft.xboxgameoverlay 'Xbox Game Bar Plugin'</c> 202 | <c>microsoft.xboxgamingoverlay 'Xbox Game Bar'</c> 203 | <c>microsoft.xboxspeechtotextoverlay 'Xbox Game Speech Window'</c> 204 | <c>microsoft.yourphone 'Your Phone'</c> 205 | <c>microsoft.zunemusic 'Windows Media Player'</c> 206 | <c>microsoft.zunevideo 'Movies &amp; TV'</c> 207 | <c>microsoftcorporationii.quickassist 'Quick Assist'</c> 208 | <c>microsoftwindows.client.webexperience 'Windows Web Experience Pack'</c> 209 | <c>mixedreality 'Windows Mixed Reality'</c> 210 | <c>mmc32 'Microsoft Management Console (MMC) - 32 bit'</c> 211 | <c>mobiledevicemanagement 'Mobile Device Management (MDM)'</c> 212 | <c>mobilenetworkingapi32 'Mobile Networking API - 32 bit'</c> 213 | <c>mobilepc</c> 214 | <c>mobilepc_networkprojection 'Network Projection'</c> 215 | <c>msmq 'Microsoft Message Queue (MSMQ)'</c> 216 | <c>multipointconnector 'MultiPoint Connector'</c> 217 | <c>ndu 'Network Data Usage Monitoring Driver'</c> 218 | <c>netbios 'NetBIOS over TCP transport'</c> 219 | <c>nfc 'Near Field Communication (NFC)'</c> 220 | <c>nfsclient 'NFS Administrative Tools'</c> 221 | <c>notepad 'Notepad (Legacy)'</c> 222 | <c>offlinefiles 'Offline Files'</c> 223 | <c>onedrive</c> 224 | <c>openssh</c> 225 | <c>otherthemes 'Windows Personalization themes'</c> 226 | <c>outlookpwa 'Outlook PWA (InboxApp)'</c> 227 | <c>payments</c> 228 | <c>performancerecorder 'Windows Performance Recorder'</c> 229 | <c>phonesvc 'Phone Service'</c> 230 | <c>photoviewer 'Photo Viewer'</c> 231 | <c>photoviewer32 'Photo Viewer - 32 bit'</c> 232 | <c>pos 'Point of Service (POS)'</c> 233 | <c>powershellise 'PowerShell ISE'</c> 234 | <c>powershellise32 'PowerShell ISE - 32 bit'</c> 235 | <c>printmgmt 'Print Management'</c> 236 | <c>printtopdf 'Print to PDF'</c> 237 | <c>printworkflow 'Print Workflow Service'</c> 238 | <c>projfs 'Projected File System (ProjFS)'</c> 239 | <c>pushtoinstall 'Windows PushToInstall Service'</c> 240 | <c>rasauto 'Remote Access Auto Connection Manager'</c> 241 | <c>rdc 'Remote Differential Compression (RDC)'</c> 242 | <c>rdmaping 'Remote Direct Memory Access (RDMA) ping tool'</c> 243 | <c>rdpclient 'Remote Desktop Client'</c> 244 | <c>rdpclient32 'Remote Desktop Client - 32 bit'</c> 245 | <c>rdpserver 'Remote Desktop Server'</c> 246 | <c>rdpserverlic 'Remote Desktop Licensing'</c> 247 | <c>refs 'Resilient File System (ReFS)'</c> 248 | <c>regedit32 'Registry Editor - 32 bit'</c> 249 | <c>reliabilityanalysis 'Reliability Analysis Services'</c> 250 | <c>remoteactivex 'Remote Desktop Services ActiveX Client'</c> 251 | <c>remoteactivex32 'Remote Desktop Services ActiveX Client - 32 bit'</c> 252 | <c>remoteassistance 'Remote Assistance'</c> 253 | <c>remotefx</c> 254 | <c>remoteportredirector 'Remote Desktop Services Port Redirector'</c> 255 | <c>remoteregistry 'Remote Registry'</c> 256 | <c>retaildemo 'Retail Demo Content'</c> 257 | <c>rotationmanager 'Auto-Rotation Manager'</c> 258 | <c>screensavers</c> 259 | <c>securitycenter 'Security Center'</c> 260 | <c>servicesmmc32 'Services (management console) - 32 bit'</c> 261 | <c>sharedaccess 'Internet Connection Sharing (ICS)'</c> 262 | <c>simpletcp 'Simple TCP/IP services'</c> 263 | <c>skypeortc 'Skype ORTC'</c> 264 | <c>sleepstudy 'Sleep Study'</c> 265 | <c>smbdirect 'SMB Direct (RDMA)'</c> 266 | <c>smbv1 'SMB v1'</c> 267 | <c>smbwitnessclientapi 'SMB Witness Client API'</c> 268 | <c>soundsdefault 'Sounds (Default)'</c> 269 | <c>soundthemes 'Sound Themes'</c> 270 | <c>sourcessxsdir 'Manual feature repository'</c> 271 | <c>srumon 'Data Usage service'</c> 272 | <c>startexperiencesapp 'Start Experiences (InboxApp)'</c> 273 | <c>stepsrecorder 'Steps Recorder'</c> 274 | <c>storageqos 'Storage Quality of Service (Storage QoS)'</c> 275 | <c>supportdir 'Support directory'</c> 276 | <c>synccenter 'Sync Center'</c> 277 | <c>tabletpc 'Tablet PC'</c> 278 | <c>taskschdmsc32 'Task Scheduler (management console) - 32 bit'</c> 279 | <c>telnetclient 'Telnet Client'</c> 280 | <c>tempcache 'Cache and temp files'</c> 281 | <c>tftpclient 'TFTP client'</c> 282 | <c>timetraveldebugger 'Time Travel Debugger (TTD)'</c> 283 | <c>tpmmmc32 'Trusted Platform Module (TPM) (management console) - 32 bit'</c> 284 | <c>troubleshootingsvc 'Recommended Troubleshooting service'</c> 285 | <c>universalprintsvc 'Universal Print Management Service'</c> 286 | <c>userdeviceregistration 'User Device Registration'</c> 287 | <c>waasassessment 'Windows Update Medic Service'</c> 288 | <c>wallet 'Wallet Service'</c> 289 | <c>wallpaperdefault 'Wallpaper (Default)'</c> 290 | <c>wallpapers 'Wallpapers (Themes)'</c> 291 | <c>webthreatdefense 'Web Threat Defense Service'</c> 292 | <c>wfmmc32 'Windows Firewall (management console) - 32 bit'</c> 293 | <c>windows.cbspreview 'Windows Barcode Preview'</c> 294 | <c>windows.printdialog 'Windows Print'</c> 295 | <c>windowstogo 'Windows To Go'</c> 296 | <c>windowsupdate 'Windows Update'</c> 297 | <c>winsat 'Windows System Assessment Tool (WinSAT)'</c> 298 | <c>wordpad</c> 299 | <c>wordpad32 'Wordpad - 32 bit'</c> 300 | <c>xbox 'Xbox - Core'</c> 301 | </RemoveComponents> 302 | <Compatibility protectHidden="true"> 303 | <ComponentFeatures> 304 | <Feature enabled="no">AppGuard</Feature> 305 | <Feature enabled="yes">Battle.net</Feature> 306 | <Feature enabled="no">YubiKey</Feature> 307 | <Feature enabled="no">Bluetooth</Feature> 308 | <Feature enabled="yes">USBCamera</Feature> 309 | <Feature enabled="no">CapFrameX</Feature> 310 | <Feature enabled="yes">Discord</Feature> 311 | <Feature enabled="no">Docker</Feature> 312 | <Feature enabled="no">EA Anti-Cheat</Feature> 313 | <Feature enabled="no">FileSharing</Feature> 314 | <Feature enabled="no">Hyper-V</Feature> 315 | <Feature enabled="no">iCloud</Feature> 316 | <Feature enabled="no">Kaspersky</Feature> 317 | <Feature enabled="no">ManualSetup</Feature> 318 | <Feature enabled="yes">OfficeSupport</Feature> 319 | <Feature enabled="yes">AppxSupport</Feature> 320 | <Feature enabled="yes">Netflix</Feature> 321 | <Feature enabled="no">NetworkDiscovery</Feature> 322 | <Feature enabled="yes">NightLight</Feature> 323 | <Feature enabled="yes">NvidiaSetup</Feature> 324 | <Feature enabled="yes">OOBE</Feature> 325 | <Feature enabled="no">Printing</Feature> 326 | <Feature enabled="no">Recommended-All</Feature> 327 | <Feature enabled="no">RDPServer</Feature> 328 | <Feature enabled="no">SamsungSwitch</Feature> 329 | <Feature enabled="no">Scanning</Feature> 330 | <Feature enabled="yes">ServicingStack</Feature> 331 | <Feature enabled="yes">ShellSearchSupport</Feature> 332 | <Feature enabled="yes">Spotify</Feature> 333 | <Feature enabled="yes">SFC</Feature> 334 | <Feature enabled="yes">DefaultFonts</Feature> 335 | <Feature enabled="no">SafeMode</Feature> 336 | <Feature enabled="yes">TeamViewer</Feature> 337 | <Feature enabled="no">Recommended-Tablet</Feature> 338 | <Feature enabled="no">HostRefresh</Feature> 339 | <Feature enabled="no">USBModem</Feature> 340 | <Feature enabled="yes">USB</Feature> 341 | <Feature enabled="yes">VideoPlayback</Feature> 342 | <Feature enabled="no">VPN</Feature> 343 | <Feature enabled="yes">VisualStudio</Feature> 344 | <Feature enabled="no">VSS</Feature> 345 | <Feature enabled="yes">ActivationKMS</Feature> 346 | <Feature enabled="yes">Activation</Feature> 347 | <Feature enabled="yes">WinSetup</Feature> 348 | <Feature enabled="yes">WindowsStore</Feature> 349 | <Feature enabled="no">WindowsUpdate</Feature> 350 | <Feature enabled="yes">WLAN</Feature> 351 | </ComponentFeatures> 352 | <MachineDrivers> 353 | <Machine enabled="yes">HostMachine</Machine> 354 | <Machine enabled="no">Hyper-V VM</Machine> 355 | <Machine enabled="no">Parallels VM</Machine> 356 | <Machine enabled="no">Virtual Box VM</Machine> 357 | <Machine enabled="no">VMware VM</Machine> 358 | </MachineDrivers> 359 | </Compatibility> 360 | <Features> 361 | <Feature name="NetFx4-AdvSrvs">false</Feature> 362 | <Feature name="Windows.Kernel.LA57~~~~0.0.1.0">false</Feature> 363 | <Feature name="Microsoft.Windows.Wifi.Client.Broadcom.Bcmpciedhd63~~~~0.0.1.0">false</Feature> 364 | <Feature name="Microsoft.Windows.Wifi.Client.Broadcom.Bcmwl63a~~~~0.0.1.0">false</Feature> 365 | <Feature name="Microsoft.Windows.Wifi.Client.Broadcom.Bcmwl63al~~~~0.0.1.0">false</Feature> 366 | <Feature name="OneCoreUAP.OneSync~~~~0.0.1.0">false</Feature> 367 | <Feature name="Microsoft.Wallpapers.Extended~~~~0.0.1.0">false</Feature> 368 | <Feature name="Hello.Face.20134~~~~0.0.1.0">false</Feature> 369 | <Feature name="Microsoft.Windows.Ethernet.Client.Intel.E1i68x64~~~~0.0.1.0">false</Feature> 370 | <Feature name="Microsoft.Windows.Ethernet.Client.Intel.E2f68~~~~0.0.1.0">false</Feature> 371 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwbw02~~~~0.0.1.0">false</Feature> 372 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwew00~~~~0.0.1.0">false</Feature> 373 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwew01~~~~0.0.1.0">false</Feature> 374 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwlv64~~~~0.0.1.0">false</Feature> 375 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwns64~~~~0.0.1.0">false</Feature> 376 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwsw00~~~~0.0.1.0">false</Feature> 377 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwtw02~~~~0.0.1.0">false</Feature> 378 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwtw04~~~~0.0.1.0">false</Feature> 379 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwtw06~~~~0.0.1.0">false</Feature> 380 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwtw08~~~~0.0.1.0">false</Feature> 381 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwtw10~~~~0.0.1.0">false</Feature> 382 | <Feature name="Microsoft.Windows.Wifi.Client.Marvel.Mrvlpcie8897~~~~0.0.1.0">false</Feature> 383 | <Feature name="MathRecognizer~~~~0.0.1.0">false</Feature> 384 | <Feature name="Microsoft.Windows.Notepad.System~~~~0.0.1.0">false</Feature> 385 | <Feature name="Print.Management.Console~~~~0.0.1.0">false</Feature> 386 | <Feature name="Microsoft.Windows.Wifi.Client.Qualcomm.Athw8x~~~~0.0.1.0">false</Feature> 387 | <Feature name="Microsoft.Windows.Wifi.Client.Qualcomm.Athwnx~~~~0.0.1.0">false</Feature> 388 | <Feature name="Microsoft.Windows.Wifi.Client.Qualcomm.Qcamain10x64~~~~0.0.1.0">false</Feature> 389 | <Feature name="Microsoft.Windows.Wifi.Client.Ralink.Netr28x~~~~0.0.1.0">false</Feature> 390 | <Feature name="Microsoft.Windows.Ethernet.Client.Realtek.Rtcx21x64~~~~0.0.1.0">false</Feature> 391 | <Feature name="Microsoft.Windows.Wifi.Client.Realtek.Rtl8187se~~~~0.0.1.0">false</Feature> 392 | <Feature name="Microsoft.Windows.Wifi.Client.Realtek.Rtl8192se~~~~0.0.1.0">false</Feature> 393 | <Feature name="Microsoft.Windows.Wifi.Client.Realtek.Rtl819xp~~~~0.0.1.0">false</Feature> 394 | <Feature name="Microsoft.Windows.Wifi.Client.Realtek.Rtl85n64~~~~0.0.1.0">false</Feature> 395 | <Feature name="Microsoft.Windows.Wifi.Client.Realtek.Rtwlane~~~~0.0.1.0">false</Feature> 396 | <Feature name="Microsoft.Windows.Wifi.Client.Realtek.Rtwlane01~~~~0.0.1.0">false</Feature> 397 | <Feature name="Microsoft.Windows.Wifi.Client.Realtek.Rtwlane13~~~~0.0.1.0">false</Feature> 398 | <Feature name="WCF-TCP-PortSharing45">false</Feature> 399 | <Feature name="Microsoft.Windows.Ethernet.Client.Vmware.Vmxnet3~~~~0.0.1.0">false</Feature> 400 | <Feature name="WCF-Services45">false</Feature> 401 | <Feature name="Media.WindowsMediaPlayer~~~~0.0.12.0">false</Feature> 402 | <Feature name="MicrosoftWindowsPowerShellV2">false</Feature> 403 | <Feature name="MicrosoftWindowsPowerShellV2Root">false</Feature> 404 | <Feature name="Microsoft.Windows.PowerShell.ISE~~~~0.0.1.0">false</Feature> 405 | <Feature name="WMIC~~~~">false</Feature> 406 | </Features> 407 | <Packages> 408 | <Options> 409 | <CleanHotfixedLeftovers>0</CleanHotfixedLeftovers> 410 | <OptimizeAppX>false</OptimizeAppX> 411 | <UpdateBootManager>false</UpdateBootManager> 412 | </Options> 413 | </Packages> 414 | <Commands> 415 | <PostUpdates> 416 | <!--<Command>cmd /c echo Example from [MOUNTDIR]\Windows &amp; pause</Command>--> 417 | <!--<Command>dism /image:[MOUNTDIR] /get-intl</Command>--> 418 | </PostUpdates> 419 | </Commands> 420 | <Drivers> 421 | <Options> 422 | <ReuseDriverCache>false</ReuseDriverCache> 423 | <ShowHidden>true</ShowHidden> 424 | </Options> 425 | </Drivers> 426 | <Unattended mode="0"> 427 | <AnswerFileLocationPanther>false</AnswerFileLocationPanther> 428 | <AnswerFileLocationBoot>false</AnswerFileLocationBoot> 429 | <SaveBothArch>false</SaveBothArch> 430 | <EditionPrompt>false</EditionPrompt> 431 | <settings pass="windowsPE"> 432 | <component name="Microsoft-Windows-Setup"> 433 | <DynamicUpdate> 434 | <WillShowUI>OnError</WillShowUI> 435 | </DynamicUpdate> 436 | <ImageInstall> 437 | <OSImage> 438 | <WillShowUI>OnError</WillShowUI> 439 | <InstallFrom> 440 | <MetaData> 441 | <Key>/IMAGE/INDEX</Key> 442 | <Value>1</Value> 443 | </MetaData> 444 | </InstallFrom> 445 | </OSImage> 446 | </ImageInstall> 447 | <UserData> 448 | <ProductKey> 449 | <Key></Key> 450 | </ProductKey> 451 | </UserData> 452 | </component> 453 | </settings> 454 | </Unattended> 455 | <Tweaks> 456 | <Settings> 457 | <TweakGroup name="DesktopTweaks"> 458 | <Tweak name="Keyboard\PrintScreenKeyForSnippingEnabled">0</Tweak> 459 | </TweakGroup> 460 | </Settings> 461 | <Services></Services> 462 | <ExtraServices></ExtraServices> 463 | <ScheduledTasks></ScheduledTasks> 464 | </Tweaks> 465 | <ApplyOptions> 466 | <ImageTasks> 467 | <Task>imageSaveRebuild</Task> 468 | <Task>imageFormatWim</Task> 469 | </ImageTasks> 470 | <AutoIsoFile>NTLite.iso</AutoIsoFile> 471 | <AutoIsoLabel>NTLite</AutoIsoLabel> 472 | <AutoSplitSize>4000</AutoSplitSize> 473 | </ApplyOptions> 474 | <Execution BeforeLogonMode="0"> 475 | <Remove></Remove> 476 | <Change></Change> 477 | <Add></Add> 478 | </Execution> 479 | <Registry></Registry> 480 | </Preset> 481 | -------------------------------------------------------------------------------- /03.Win11-Components_25H2-Laptop.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <Preset isAutoSaved="true" xmlns="urn:schemas-nliteos-com:pn.v1"> 3 | <Date>11/28/2025 21:50:10</Date> 4 | <AppInfo> 5 | <Version>2025.11.10675</Version> 6 | <Licensed>Yes</Licensed> 7 | <Protections>Yes</Protections> 8 | <Host>Windows 11 Professional 25H2 x64 - 10.0.26200.7171 (en-US)</Host> 9 | </AppInfo> 10 | <ImageInfo> 11 | <Version mode="offline">Windows 11 Professional 25H2 x64 - 10.0.26200.6584 (en-US)</Version> 12 | <GUID>{F5EAAC11-BCAE-4EE4-8675-212CC44F4BA1}</GUID> 13 | </ImageInfo> 14 | <RemoveComponents AppRemovalMode="DISM"> 15 | <c>accessibility_cursors 'Mouse Pointers (Accessibility tools)'</c> 16 | <c>accessibility_magnifier 'Screen Magnifier'</c> 17 | <c>activedirectory 'Active Directory'</c> 18 | <c>adamclient 'Active Directory Lightweight Directory Services (AD LDS)'</c> 19 | <c>asimov 'Telemetry Client'</c> 20 | <c>assembly.net '.NET assembly cache'</c> 21 | <c>assignedaccess 'Assigned Access'</c> 22 | <c>axinstall 'ActiveX Installer Service'</c> 23 | <c>azman32 'Authorization Manager - 32 bit'</c> 24 | <c>azuread 'Azure Active Directory'</c> 25 | <c>bingsearch 'Bing Search (InboxApp)'</c> 26 | <c>branchcacheclient 'BranchCache Client'</c> 27 | <c>captureservice 'Capture Service'</c> 28 | <c>ceip 'CEIP (SQM)'</c> 29 | <c>cellulartime 'Cellular Time'</c> 30 | <c>certmgr32 'Certificate Manager - 32 bit'</c> 31 | <c>clipchamp.clipchamp</c> 32 | <c>commmc32 'COM+ (Component Services) (management console) - 32 bit'</c> 33 | <c>compmgmt32 'Computer Management - 32 bit'</c> 34 | <c>containers 'Containers (Application Guard)'</c> 35 | <c>copilotpwa 'Windows Copilot (InboxApp)'</c> 36 | <c>cursors 'Mouse Pointers'</c> 37 | <c>desktopimgdownldr 'Desktop image downloader'</c> 38 | <c>deviceguard 'Device Guard'</c> 39 | <c>deviceupdatecenter 'Device Update Center'</c> 40 | <c>devmgmt32 'Device Manager - 32 bit'</c> 41 | <c>diagnostics 'Diagnostics and Troubleshooting'</c> 42 | <c>diskdiagnosis 'Disk failure diagnostics'</c> 43 | <c>diskmgmt32 'Disk Management - 32 bit'</c> 44 | <c>diskquota32 'Disk Quota - 32 bit'</c> 45 | <c>driver_c_barcodescanner.inf</c> 46 | <c>driver_c_cashdrawer.inf</c> 47 | <c>driver_c_fdc.inf</c> 48 | <c>driver_c_floppydisk.inf</c> 49 | <c>driver_c_infrared.inf</c> 50 | <c>driver_c_linedisplay.inf</c> 51 | <c>driver_c_magneticstripereader.inf</c> 52 | <c>driver_c_modem.inf</c> 53 | <c>driver_c_printer.inf</c> 54 | <c>driver_c_receiptprinter.inf</c> 55 | <c>driver_c_smartcard.inf</c> 56 | <c>driver_c_smartcardfilter.inf</c> 57 | <c>driver_c_smartcardreader.inf</c> 58 | <c>driver_c_volsnap.inf</c> 59 | <c>driver_cht4vx64.inf</c> 60 | <c>driver_ehstorpwddrv.inf</c> 61 | <c>driver_ehstortcgdrv.inf</c> 62 | <c>driver_fdc.inf</c> 63 | <c>driver_flpydisk.inf</c> 64 | <c>driver_hidir.inf</c> 65 | <c>driver_hidirkbd.inf</c> 66 | <c>driver_hidlamparray.inf</c> 67 | <c>driver_hidscanner.inf</c> 68 | <c>driver_hidtelephonydriver.inf</c> 69 | <c>driver_idtsec.inf</c> 70 | <c>driver_iscsi.inf</c> 71 | <c>driver_kdnic.inf</c> 72 | <c>driver_mdm3com.inf</c> 73 | <c>driver_mdm5674a.inf</c> 74 | <c>driver_mdmadc.inf</c> 75 | <c>driver_mdmagm64.inf</c> 76 | <c>driver_mdmags64.inf</c> 77 | <c>driver_mdmairte.inf</c> 78 | <c>driver_mdmaiwa.inf</c> 79 | <c>driver_mdmaiwa3.inf</c> 80 | <c>driver_mdmaiwa4.inf</c> 81 | <c>driver_mdmaiwa5.inf</c> 82 | <c>driver_mdmaiwat.inf</c> 83 | <c>driver_mdmar1.inf</c> 84 | <c>driver_mdmarch.inf</c> 85 | <c>driver_mdmarn.inf</c> 86 | <c>driver_mdmati.inf</c> 87 | <c>driver_mdmatm2k.inf</c> 88 | <c>driver_mdmaus.inf</c> 89 | <c>driver_mdmboca.inf</c> 90 | <c>driver_mdmbsb.inf</c> 91 | <c>driver_mdmbtmdm.inf</c> 92 | <c>driver_mdmbug3.inf</c> 93 | <c>driver_mdmbw561.inf</c> 94 | <c>driver_mdmc26a.inf</c> 95 | <c>driver_mdmcdp.inf</c> 96 | <c>driver_mdmcm28.inf</c> 97 | <c>driver_mdmcodex.inf</c> 98 | <c>driver_mdmcom1.inf</c> 99 | <c>driver_mdmcommu.inf</c> 100 | <c>driver_mdmcomp.inf</c> 101 | <c>driver_mdmcpq.inf</c> 102 | <c>driver_mdmcpq2.inf</c> 103 | <c>driver_mdmcpv.inf</c> 104 | <c>driver_mdmcrtix.inf</c> 105 | <c>driver_mdmcxhv6.inf</c> 106 | <c>driver_mdmcxpv6.inf</c> 107 | <c>driver_mdmdcm5.inf</c> 108 | <c>driver_mdmdcm6.inf</c> 109 | <c>driver_mdmdf56f.inf</c> 110 | <c>driver_mdmdgitn.inf</c> 111 | <c>driver_mdmdp2.inf</c> 112 | <c>driver_mdmdsi.inf</c> 113 | <c>driver_mdmdyna.inf</c> 114 | <c>driver_mdmeiger.inf</c> 115 | <c>driver_mdmelsa.inf</c> 116 | <c>driver_mdmeric.inf</c> 117 | <c>driver_mdmeric2.inf</c> 118 | <c>driver_mdmetech.inf</c> 119 | <c>driver_mdmfj2.inf</c> 120 | <c>driver_mdmgatew.inf</c> 121 | <c>driver_mdmgcs.inf</c> 122 | <c>driver_mdmgen.inf</c> 123 | <c>driver_mdmgl001.inf</c> 124 | <c>driver_mdmgl002.inf</c> 125 | <c>driver_mdmgl003.inf</c> 126 | <c>driver_mdmgl004.inf</c> 127 | <c>driver_mdmgl005.inf</c> 128 | <c>driver_mdmgl006.inf</c> 129 | <c>driver_mdmgl007.inf</c> 130 | <c>driver_mdmgl008.inf</c> 131 | <c>driver_mdmgl009.inf</c> 132 | <c>driver_mdmgl010.inf</c> 133 | <c>driver_mdmgsm.inf</c> 134 | <c>driver_mdmhaeu.inf</c> 135 | <c>driver_mdmhandy.inf</c> 136 | <c>driver_mdmhay2.inf</c> 137 | <c>driver_mdmhayes.inf</c> 138 | <c>driver_mdminfot.inf</c> 139 | <c>driver_mdmiodat.inf</c> 140 | <c>driver_mdmirmdm.inf</c> 141 | <c>driver_mdmisdn.inf</c> 142 | <c>driver_mdmjf56e.inf</c> 143 | <c>driver_mdmke.inf</c> 144 | <c>driver_mdmkortx.inf</c> 145 | <c>driver_mdmlasat.inf</c> 146 | <c>driver_mdmlasno.inf</c> 147 | <c>driver_mdmlucnt.inf</c> 148 | <c>driver_mdmmc288.inf</c> 149 | <c>driver_mdmmcd.inf</c> 150 | <c>driver_mdmmcom.inf</c> 151 | <c>driver_mdmmct.inf</c> 152 | <c>driver_mdmmega.inf</c> 153 | <c>driver_mdmmetri.inf</c> 154 | <c>driver_mdmmhrtz.inf</c> 155 | <c>driver_mdmmhzel.inf</c> 156 | <c>driver_mdmminij.inf</c> 157 | <c>driver_mdmmod.inf</c> 158 | <c>driver_mdmmot64.inf</c> 159 | <c>driver_mdmmoto1.inf</c> 160 | <c>driver_mdmmotou.inf</c> 161 | <c>driver_mdmmts.inf</c> 162 | <c>driver_mdmneuhs.inf</c> 163 | <c>driver_mdmnis1u.inf</c> 164 | <c>driver_mdmnis2u.inf</c> 165 | <c>driver_mdmnis3t.inf</c> 166 | <c>driver_mdmnis5t.inf</c> 167 | <c>driver_mdmnokia.inf</c> 168 | <c>driver_mdmnova.inf</c> 169 | <c>driver_mdmntt1.inf</c> 170 | <c>driver_mdmnttd2.inf</c> 171 | <c>driver_mdmnttd6.inf</c> 172 | <c>driver_mdmnttme.inf</c> 173 | <c>driver_mdmnttp.inf</c> 174 | <c>driver_mdmnttp2.inf</c> 175 | <c>driver_mdmnttte.inf</c> 176 | <c>driver_mdmolic.inf</c> 177 | <c>driver_mdmomrn3.inf</c> 178 | <c>driver_mdmoptn.inf</c> 179 | <c>driver_mdmosi.inf</c> 180 | <c>driver_mdmpace.inf</c> 181 | <c>driver_mdmpenr.inf</c> 182 | <c>driver_mdmpin.inf</c> 183 | <c>driver_mdmpn1.inf</c> 184 | <c>driver_mdmpp.inf</c> 185 | <c>driver_mdmpsion.inf</c> 186 | <c>driver_mdmracal.inf</c> 187 | <c>driver_mdmrock.inf</c> 188 | <c>driver_mdmrock3.inf</c> 189 | <c>driver_mdmrock4.inf</c> 190 | <c>driver_mdmrock5.inf</c> 191 | <c>driver_mdmsier.inf</c> 192 | <c>driver_mdmsii64.inf</c> 193 | <c>driver_mdmsmart.inf</c> 194 | <c>driver_mdmsonyu.inf</c> 195 | <c>driver_mdmsun1.inf</c> 196 | <c>driver_mdmsun2.inf</c> 197 | <c>driver_mdmsupr3.inf</c> 198 | <c>driver_mdmsupra.inf</c> 199 | <c>driver_mdmsuprv.inf</c> 200 | <c>driver_mdmtdk.inf</c> 201 | <c>driver_mdmtdkj2.inf</c> 202 | <c>driver_mdmtdkj3.inf</c> 203 | <c>driver_mdmtdkj4.inf</c> 204 | <c>driver_mdmtdkj5.inf</c> 205 | <c>driver_mdmtdkj6.inf</c> 206 | <c>driver_mdmtdkj7.inf</c> 207 | <c>driver_mdmtexas.inf</c> 208 | <c>driver_mdmti.inf</c> 209 | <c>driver_mdmtkr.inf</c> 210 | <c>driver_mdmtron.inf</c> 211 | <c>driver_mdmusrf.inf</c> 212 | <c>driver_mdmusrg.inf</c> 213 | <c>driver_mdmusrgl.inf</c> 214 | <c>driver_mdmusrk1.inf</c> 215 | <c>driver_mdmusrsp.inf</c> 216 | <c>driver_mdmvdot.inf</c> 217 | <c>driver_mdmvv.inf</c> 218 | <c>driver_mdmwhql0.inf</c> 219 | <c>driver_mdmx5560.inf</c> 220 | <c>driver_mdmzoom.inf</c> 221 | <c>driver_mdmzyp.inf</c> 222 | <c>driver_mdmzyxel.inf</c> 223 | <c>driver_mdmzyxlg.inf</c> 224 | <c>driver_mgtdyn.inf</c> 225 | <c>driver_modemcsa.inf</c> 226 | <c>driver_msclmd.inf</c> 227 | <c>driver_ntprint.inf</c> 228 | <c>driver_ntprint4.inf</c> 229 | <c>driver_printqueue.inf</c> 230 | <c>driver_prnge001.inf</c> 231 | <c>driver_prnms002.inf</c> 232 | <c>driver_prnms003.inf</c> 233 | <c>driver_prnms004.inf</c> 234 | <c>driver_prnms005.inf</c> 235 | <c>driver_prnms007.inf</c> 236 | <c>driver_prnms008.inf</c> 237 | <c>driver_prnms010.inf</c> 238 | <c>driver_prnms011.inf</c> 239 | <c>driver_prnms012.inf</c> 240 | <c>driver_prnms014.inf</c> 241 | <c>driver_rawsilo.inf</c> 242 | <c>driver_rdpbus.inf</c> 243 | <c>driver_remoteposdrv.inf</c> 244 | <c>driver_scrawpdo.inf</c> 245 | <c>driver_scunknown.inf</c> 246 | <c>driver_spaceport.inf</c> 247 | <c>driver_termbus.inf</c> 248 | <c>driver_termkbd.inf</c> 249 | <c>driver_termmou.inf</c> 250 | <c>driver_tpmvsc.inf</c> 251 | <c>driver_ts_generic.inf</c> 252 | <c>driver_tsgenericusbdriver.inf</c> 253 | <c>driver_tsprint.inf</c> 254 | <c>driver_tsusbhubfilter.inf</c> 255 | <c>driver_usbcciddriver.inf</c> 256 | <c>driver_usbcir.inf</c> 257 | <c>driver_usbprint.inf</c> 258 | <c>driver_volsnap.inf</c> 259 | <c>driver_wdmvsc.inf</c> 260 | <c>driver_wfcvsc.inf</c> 261 | <c>driver_wgencounter.inf</c> 262 | <c>driver_whvcrash.inf</c> 263 | <c>driver_whyperkbd.inf</c> 264 | <c>driver_wnetvsc.inf</c> 265 | <c>driver_ws3cap.inf</c> 266 | <c>driver_wstorflt.inf</c> 267 | <c>driver_wstorvsc.inf</c> 268 | <c>driver_wudfusbcciddriver.inf</c> 269 | <c>driver_wvid.inf</c> 270 | <c>driver_wvmbus.inf</c> 271 | <c>driver_wvmbushid.inf</c> 272 | <c>driver_wvmbusvideo.inf</c> 273 | <c>driver_wvmgid.inf</c> 274 | <c>driver_wvmic.inf</c> 275 | <c>driver_wvmic_ext.inf</c> 276 | <c>driver_wvmic_vss.inf</c> 277 | <c>driver_wvpci.inf</c> 278 | <c>dynamiclighting 'Dynamic Lighting'</c> 279 | <c>e2a4f912-2574-4a75-9bb0-0d023378592b 'App Resolver'</c> 280 | <c>easeofaccessthemes 'Ease Of Access Themes'</c> 281 | <c>edgehtml32 'HTML Viewer - 32 bit'</c> 282 | <c>edgeupdate 'Microsoft Edge Update'</c> 283 | <c>edgewebview 'Microsoft Edge WebView'</c> 284 | <c>edgewebviewlegacy 'WebView2 Runtime (Legacy)'</c> 285 | <c>embeddedexperience 'Device Lockdown (Embedded Experience)'</c> 286 | <c>embeddedmode 'Embedded Mode'</c> 287 | <c>enterpriseclientsync 'Work Folders Client'</c> 288 | <c>enterprisedataprotection 'Enterprise Data Protection (EDP/WIP)'</c> 289 | <c>errorreporting 'Windows Error Reporting'</c> 290 | <c>errorreportingapi 'Windows Error Reporting API'</c> 291 | <c>eudcedit 'Private Character Editor'</c> 292 | <c>eventviewer32 'Event Viewer - 32 bit'</c> 293 | <c>f46d4000-fd22-4db4-ac8e-4e1ddde828fe 'Add Folder Suggestions dialog'</c> 294 | <c>fciclient 'File Server Resource Manager'</c> 295 | <c>firstlogonanim 'First-logon animation'</c> 296 | <c>flipgridpwa 'Flipgrid PWA (InboxApp)'</c> 297 | <c>fontpreviewer32 'Font previewer - 32 bit'</c> 298 | <c>fsmgmt32 'Shared Folders UI - 32 bit'</c> 299 | <c>gameexplorer 'Game Explorer'</c> 300 | <c>hbaapi 'Host Bus Adapter (HBA) API'</c> 301 | <c>help 'Windows Help content'</c> 302 | <c>hotpatch 'Windows Hotpatching'</c> 303 | <c>hwsupport_floppy 'Floppy disk'</c> 304 | <c>hwsupport_infrared 'Infrared devices'</c> 305 | <c>hwsupport_internetprintingclient 'Internet Printing Client'</c> 306 | <c>hwsupport_modem 'Modem'</c> 307 | <c>hwsupport_modemsettings 'Shared modem settings (mdmgl*.inf)'</c> 308 | <c>hwsupport_printer 'Printing'</c> 309 | <c>hwsupport_scanner 'Scanner'</c> 310 | <c>hwsupport_smartcard 'Smartcard'</c> 311 | <c>hwsupport_telephony 'Telephony'</c> 312 | <c>hwsupport_tv 'TV Tuner codecs and support'</c> 313 | <c>iis 'Internet Information Server (IIS)'</c> 314 | <c>insiderhub 'Windows Insider Program'</c> 315 | <c>internetexplorer 'Internet Explorer'</c> 316 | <c>internetexplorer32 'Internet Explorer - 32 bit'</c> 317 | <c>iscsi 'iSCSI Initiator'</c> 318 | <c>isolatedusermode 'Virtualization-based security (VBS)'</c> 319 | <c>kerberos32 'Kerberos Client - 32 bit'</c> 320 | <c>kerneldebug 'Kernel Debugging'</c> 321 | <c>la57 '57-bit Linear Addressing'</c> 322 | <c>lcu 'Cumulative Update cache (LCU)'</c> 323 | <c>livecaptions 'Live Captions'</c> 324 | <c>location 'Location Service'</c> 325 | <c>lockscreens 'Lock Screen backgrounds'</c> 326 | <c>lusrmgr32 'Local Users and Groups Manager - 32 bit'</c> 327 | <c>lxss 'Windows Subsystem for Linux'</c> 328 | <c>mail 'Windows Mail'</c> 329 | <c>mailcommdll 'Windows Mail Communications Library'</c> 330 | <c>manifestbackup 'Manifest Backup (WinSxS\Backup)'</c> 331 | <c>mapcontrol 'Map Control'</c> 332 | <c>mediaplayer 'Windows Media Player'</c> 333 | <c>mediaplayer32 'Windows Media Player - 32 bit'</c> 334 | <c>mediaplayernetworksharing 'WMP Network Sharing Service'</c> 335 | <c>mediaplayernetworksharing32 'WMP Network Sharing Service - 32 bit'</c> 336 | <c>messagingsvc 'Messaging Service'</c> 337 | <c>microsoft.applicationcompatibilityenhancements 'Windows Application Compatibility Enhancements'</c> 338 | <c>microsoft.asynctextservice 'AsyncTextService'</c> 339 | <c>microsoft.av1videoextension 'AV1 Video Extension'</c> 340 | <c>microsoft.avcencodervideoextension 'AVC Encoder Video Extension'</c> 341 | <c>microsoft.bingnews 'Microsoft News'</c> 342 | <c>microsoft.bingsearch 'Microsoft Bing'</c> 343 | <c>microsoft.bingweather 'MSN Weather'</c> 344 | <c>microsoft.bioenrollment 'Windows Hello Setup'</c> 345 | <c>microsoft.creddialoghost 'Credential Dialog'</c> 346 | <c>microsoft.ecapp 'Eye Control'</c> 347 | <c>microsoft.gamingapp 'Xbox App'</c> 348 | <c>microsoft.gethelp 'Get Help'</c> 349 | <c>microsoft.heifimageextension 'HEIF Image Extension'</c> 350 | <c>microsoft.hevcvideoextension 'HEVC Video Extensions from Device Manufacturer'</c> 351 | <c>microsoft.lockapp 'Windows Default Lock Screen'</c> 352 | <c>microsoft.microsoftedge 'Microsoft Edge (Legacy)'</c> 353 | <c>microsoft.microsoftedge.stable 'Microsoft Edge (Chromium)'</c> 354 | <c>microsoft.microsoftedgedevtoolsclient 'Microsoft Edge DevTools Client'</c> 355 | <c>microsoft.microsoftofficehub 'Microsoft 365 Copilot'</c> 356 | <c>microsoft.microsoftsolitairecollection 'Solitaire &amp; Casual Games'</c> 357 | <c>microsoft.microsoftstickynotes 'Microsoft Sticky Notes'</c> 358 | <c>microsoft.mpeg2videoextension 'MPEG-2 Video Extension'</c> 359 | <c>microsoft.outlookforwindows 'Outlook for Windows'</c> 360 | <c>microsoft.powerautomatedesktop 'Power Automate'</c> 361 | <c>microsoft.rawimageextension 'Raw Image Extension'</c> 362 | <c>microsoft.screensketch 'Snipping Tool'</c> 363 | <c>microsoft.sechealthui 'Windows Defender'</c> 364 | <c>microsoft.storepurchaseapp 'Store Experience Host'</c> 365 | <c>microsoft.todos 'Microsoft To Do'</c> 366 | <c>microsoft.vp9videoextensions 'VP9 Video Extensions'</c> 367 | <c>microsoft.webmediaextensions 'Web Media Extensions'</c> 368 | <c>microsoft.webpimageextension 'WebP Image Extension'</c> 369 | <c>microsoft.win32webviewhost 'Desktop App Web Viewer'</c> 370 | <c>microsoft.windows.apprep.chxapp 'SmartScreen'</c> 371 | <c>microsoft.windows.assignedaccesslockapp 'Assigned Access Lock app'</c> 372 | <c>microsoft.windows.augloop.cbs</c> 373 | <c>microsoft.windows.capturepicker 'Capture Picker'</c> 374 | <c>microsoft.windows.contentdeliverymanager 'Content Delivery Manager'</c> 375 | <c>microsoft.windows.devhome 'Dev Home'</c> 376 | <c>microsoft.windows.narratorquickstart 'Narrator'</c> 377 | <c>microsoft.windows.oobenetworkcaptiveportal 'Captive Portal Flow'</c> 378 | <c>microsoft.windows.oobenetworkconnectionflow 'Network Connection Flow'</c> 379 | <c>microsoft.windows.parentalcontrols 'Microsoft Family Safety'</c> 380 | <c>microsoft.windows.peopleexperiencehost 'Windows Shell Experience'</c> 381 | <c>microsoft.windows.photos 'Microsoft Photos'</c> 382 | <c>microsoft.windows.pinningconfirmationdialog 'PinningConfirmationDialog'</c> 383 | <c>microsoft.windows.printqueueactioncenter 'PrintQueueActionCenter'</c> 384 | <c>microsoft.windows.secureassessmentbrowser 'Take a Test'</c> 385 | <c>microsoft.windows.xgpuejectdialog 'Safely Remove Device'</c> 386 | <c>microsoft.windowsalarms 'Windows Clock'</c> 387 | <c>microsoft.windowscamera 'Windows Camera'</c> 388 | <c>microsoft.windowsfeedbackhub 'Feedback Hub'</c> 389 | <c>microsoft.windowsnotepad 'Windows Notepad'</c> 390 | <c>microsoft.windowssoundrecorder 'Windows Sound Recorder'</c> 391 | <c>microsoft.xbox.tcui 'Xbox TCUI'</c> 392 | <c>microsoft.xboxgamecallableui 'Xbox Game UI'</c> 393 | <c>microsoft.xboxgamingoverlay 'Game Bar'</c> 394 | <c>microsoft.xboxspeechtotextoverlay 'Game Speech Window'</c> 395 | <c>microsoft.yourphone 'Phone Link'</c> 396 | <c>microsoft.zunemusic 'Windows Media Player'</c> 397 | <c>microsoftcorporationii.quickassist 'Quick Assist'</c> 398 | <c>microsoftwindows.client.aix 'Windows Copilot (Windows Feature Experience Pack)'</c> 399 | <c>microsoftwindows.client.photon 'Windows Feature Experience Pack - Photon'</c> 400 | <c>microsoftwindows.client.webexperience 'Windows Web Experience Pack'</c> 401 | <c>microsoftwindows.crossdevice 'Cross Device Experience Host'</c> 402 | <c>mixedreality 'Windows Mixed Reality'</c> 403 | <c>mmc32 'Microsoft Management Console (MMC) - 32 bit'</c> 404 | <c>mpe 'Microsoft Privacy Engine'</c> 405 | <c>msmq 'Microsoft Message Queue (MSMQ)'</c> 406 | <c>msteams 'Microsoft Teams'</c> 407 | <c>ndu 'Network Data Usage Monitoring Driver'</c> 408 | <c>netbios 'NetBIOS over TCP transport'</c> 409 | <c>nfc 'Near Field Communication (NFC)'</c> 410 | <c>notepad 'Notepad (Legacy)'</c> 411 | <c>offlinefiles 'Offline Files'</c> 412 | <c>onedrive</c> 413 | <c>oobefodsetup 'Out-of-box Experience (OOBE) - FOD Setup'</c> 414 | <c>openssh</c> 415 | <c>otherthemes 'Windows Personalization themes'</c> 416 | <c>outlookpwa 'Outlook PWA (InboxApp)'</c> 417 | <c>payments</c> 418 | <c>pdfreader 'Windows Reader (PDF)'</c> 419 | <c>penservice 'Pen Service'</c> 420 | <c>phonesvc 'Phone Service'</c> 421 | <c>photoviewer 'Photo Viewer'</c> 422 | <c>photoviewer32 'Photo Viewer - 32 bit'</c> 423 | <c>pos 'Point of Service (POS)'</c> 424 | <c>powershellise 'PowerShell ISE'</c> 425 | <c>powershellise32 'PowerShell ISE - 32 bit'</c> 426 | <c>printmgmt 'Print Management'</c> 427 | <c>printtopdf 'Print to PDF'</c> 428 | <c>printworkflow 'Print Workflow Service'</c> 429 | <c>projfs 'Projected File System (ProjFS)'</c> 430 | <c>pushtoinstall 'Windows PushToInstall Service'</c> 431 | <c>rasauto 'Remote Access Auto Connection Manager'</c> 432 | <c>rdc 'Remote Differential Compression (RDC)'</c> 433 | <c>rdmaping 'Remote Direct Memory Access (RDMA) ping tool'</c> 434 | <c>rdpclient 'Remote Desktop Client'</c> 435 | <c>rdpclient32 'Remote Desktop Client - 32 bit'</c> 436 | <c>rdpserver 'Remote Desktop Server'</c> 437 | <c>rdpserverlic 'Remote Desktop Licensing'</c> 438 | <c>refs 'Resilient File System (ReFS)'</c> 439 | <c>regedit32 'Registry Editor - 32 bit'</c> 440 | <c>remoteactivex 'Remote Desktop Services ActiveX Client'</c> 441 | <c>remoteactivex32 'Remote Desktop Services ActiveX Client - 32 bit'</c> 442 | <c>remoteassistance 'Remote Assistance'</c> 443 | <c>remotefx</c> 444 | <c>remoteportredirector 'Remote Desktop Services Port Redirector'</c> 445 | <c>remoteregistry 'Remote Registry'</c> 446 | <c>retaildemo 'Retail Demo Content'</c> 447 | <c>rotationmanager 'Auto-Rotation Manager'</c> 448 | <c>ruxim 'Reusable UX Interaction Manager (RUXIM)'</c> 449 | <c>screensavers</c> 450 | <c>servicesmmc32 'Services (management console) - 32 bit'</c> 451 | <c>sharedpc 'Shared PC mode'</c> 452 | <c>simpletcp 'Simple TCP/IP services'</c> 453 | <c>sleepstudy 'Sleep Study'</c> 454 | <c>smbdirect 'SMB Direct (RDMA)'</c> 455 | <c>smbv1 'SMB v1'</c> 456 | <c>smbwitnessclientapi 'SMB Witness Client API'</c> 457 | <c>soundsdefault 'Sounds (Default)'</c> 458 | <c>soundthemes 'Sound Themes'</c> 459 | <c>sourcessxsdir 'Manual feature repository'</c> 460 | <c>srumon 'Data Usage service'</c> 461 | <c>startexperiencesapp 'Start Experiences (InboxApp)'</c> 462 | <c>stepsrecorder 'Steps Recorder'</c> 463 | <c>storageqos 'Storage Quality of Service (Storage QoS)'</c> 464 | <c>supportdir 'Support directory'</c> 465 | <c>synccenter 'Sync Center'</c> 466 | <c>tabletpc 'Tablet PC'</c> 467 | <c>targetedcontent32 'Targeted Content Service - 32 bit'</c> 468 | <c>taskmanager32 'Task Manager - 32 bit'</c> 469 | <c>taskschdmsc32 'Task Scheduler (management console) - 32 bit'</c> 470 | <c>telnetclient 'Telnet Client'</c> 471 | <c>tempcache 'Cache and temp files'</c> 472 | <c>tftpclient 'TFTP client'</c> 473 | <c>timetraveldebugger 'Time Travel Debugger (TTD)'</c> 474 | <c>tpmmmc32 'Trusted Platform Module (TPM) (management console) - 32 bit'</c> 475 | <c>troubleshootingsvc 'Recommended Troubleshooting service'</c> 476 | <c>unexpectedcodepath 'Unexpected Codepath'</c> 477 | <c>universalprintsvc 'Universal Print Management Service'</c> 478 | <c>userdeviceregistration 'User Device Registration'</c> 479 | <c>waasassessment 'Windows Update Medic Service'</c> 480 | <c>wallet 'Wallet Service'</c> 481 | <c>wallpaperdefault 'Wallpaper (Default)'</c> 482 | <c>wallpapers 'Wallpapers (Themes)'</c> 483 | <c>webthreatdefense 'Web Threat Defense Service'</c> 484 | <c>webview2core 'WebView2 Runtime (Core)'</c> 485 | <c>wfmmc32 'Windows Firewall (management console) - 32 bit'</c> 486 | <c>whesvc 'Windows Health and Optimized Experiences'</c> 487 | <c>widgetsplatformruntimeapp 'Widgets Platform Runtime (InboxApp)'</c> 488 | <c>windows.cbspreview 'Windows Barcode Preview'</c> 489 | <c>windows.devicesflow32 'Devices Flow - 32 bit'</c> 490 | <c>windows.printdialog 'Windows Print'</c> 491 | <c>windowstogo 'Windows To Go'</c> 492 | <c>windowsupdate 'Windows Update'</c> 493 | <c>xbox 'Xbox - Core'</c> 494 | </RemoveComponents> 495 | <Compatibility> 496 | <ComponentFeatures> 497 | <Feature enabled="no">Battle.net</Feature> 498 | <Feature enabled="yes">Bluetooth</Feature> 499 | <Feature enabled="no">EAC</Feature> 500 | <Feature enabled="no">OOBE</Feature> 501 | <Feature enabled="no">Printing</Feature> 502 | <Feature enabled="no">Recommended-All</Feature> 503 | <Feature enabled="no">Scanning</Feature> 504 | <Feature enabled="no">HostRefresh</Feature> 505 | <Feature enabled="no">VisualStudio</Feature> 506 | <Feature enabled="no">WindowsUpdate</Feature> 507 | </ComponentFeatures> 508 | <MachineDrivers></MachineDrivers> 509 | </Compatibility> 510 | <Features> 511 | <Feature name="Windows.Kernel.LA57~~~~0.0.1.0">false</Feature> 512 | <Feature name="Microsoft.Windows.Wifi.Client.Broadcom.Bcmpciedhd63~~~~0.0.1.0">false</Feature> 513 | <Feature name="Microsoft.Windows.Wifi.Client.Broadcom.Bcmwl63a~~~~0.0.1.0">false</Feature> 514 | <Feature name="Microsoft.Windows.Wifi.Client.Broadcom.Bcmwl63al~~~~0.0.1.0">false</Feature> 515 | <Feature name="DirectX.Configuration.Database~~~~0.0.1.0">false</Feature> 516 | <Feature name="OneCoreUAP.OneSync~~~~0.0.1.0">false</Feature> 517 | <Feature name="Microsoft.Wallpapers.Extended~~~~0.0.1.0">false</Feature> 518 | <Feature name="Hello.Face.20134~~~~0.0.1.0">false</Feature> 519 | <Feature name="Microsoft.Windows.Ethernet.Client.Intel.E1i68x64~~~~0.0.1.0">false</Feature> 520 | <Feature name="Microsoft.Windows.Ethernet.Client.Intel.E2f68~~~~0.0.1.0">false</Feature> 521 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwbw02~~~~0.0.1.0">false</Feature> 522 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwew00~~~~0.0.1.0">false</Feature> 523 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwew01~~~~0.0.1.0">false</Feature> 524 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwlv64~~~~0.0.1.0">false</Feature> 525 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwns64~~~~0.0.1.0">false</Feature> 526 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwsw00~~~~0.0.1.0">false</Feature> 527 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwtw02~~~~0.0.1.0">false</Feature> 528 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwtw04~~~~0.0.1.0">false</Feature> 529 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwtw06~~~~0.0.1.0">false</Feature> 530 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwtw08~~~~0.0.1.0">false</Feature> 531 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwtw10~~~~0.0.1.0">false</Feature> 532 | <Feature name="Microsoft.Windows.Wifi.Client.Marvel.Mrvlpcie8897~~~~0.0.1.0">false</Feature> 533 | <Feature name="MathRecognizer~~~~0.0.1.0">false</Feature> 534 | <Feature name="Edge.Webview2.Platform~~~~">false</Feature> 535 | <Feature name="Microsoft.Windows.Notepad.System~~~~0.0.1.0">false</Feature> 536 | <Feature name="Print.Management.Console~~~~0.0.1.0">false</Feature> 537 | <Feature name="Microsoft.Windows.Wifi.Client.Qualcomm.Athw8x~~~~0.0.1.0">false</Feature> 538 | <Feature name="Microsoft.Windows.Wifi.Client.Qualcomm.Athwnx~~~~0.0.1.0">false</Feature> 539 | <Feature name="Microsoft.Windows.Wifi.Client.Qualcomm.Qcamain10x64~~~~0.0.1.0">false</Feature> 540 | <Feature name="Microsoft.Windows.Wifi.Client.Ralink.Netr28x~~~~0.0.1.0">false</Feature> 541 | <Feature name="Microsoft.Windows.Ethernet.Client.Realtek.Rtcx21x64~~~~0.0.1.0">false</Feature> 542 | <Feature name="Microsoft.Windows.Wifi.Client.Realtek.Rtl8192se~~~~0.0.1.0">false</Feature> 543 | <Feature name="Microsoft.Windows.Wifi.Client.Realtek.Rtwlane~~~~0.0.1.0">false</Feature> 544 | <Feature name="Microsoft.Windows.Wifi.Client.Realtek.Rtwlane01~~~~0.0.1.0">false</Feature> 545 | <Feature name="Microsoft.Windows.Wifi.Client.Realtek.Rtwlane13~~~~0.0.1.0">false</Feature> 546 | <Feature name="Windows.SmbDirect~~~~">false</Feature> 547 | <Feature name="Microsoft.Windows.Ethernet.Client.Vmware.Vmxnet3~~~~0.0.1.0">false</Feature> 548 | <Feature name="Media.WindowsMediaPlayer~~~~0.0.12.0">false</Feature> 549 | <Feature name="Microsoft.Windows.PowerShell.ISE~~~~0.0.1.0">false</Feature> 550 | <Feature name="Windows.WorkFolders.Client~~~~">false</Feature> 551 | </Features> 552 | <Packages> 553 | <Options> 554 | <CleanHotfixedLeftovers>4</CleanHotfixedLeftovers> 555 | <OptimizeAppX>true</OptimizeAppX> 556 | </Options> 557 | </Packages> 558 | <Unattended mode="0"> 559 | <settings pass="oobeSystem"> 560 | <component name="Microsoft-Windows-International-Core"> 561 | <InputLocale>0409:00000409</InputLocale> 562 | <SystemLocale>en-US</SystemLocale> 563 | <UILanguage>en-US</UILanguage> 564 | <UILanguageFallback>en-US</UILanguageFallback> 565 | <UserLocale>en-US</UserLocale> 566 | </component> 567 | <component name="Microsoft-Windows-Shell-Setup"> 568 | <TimeZone>Eastern Standard Time</TimeZone> 569 | <AutoLogon> 570 | <Enabled>true</Enabled> 571 | <LogonCount>9999999</LogonCount> 572 | <Username>NTLiteUser</Username> 573 | <Password> 574 | <PlainText>true</PlainText> 575 | <Value></Value> 576 | </Password> 577 | </AutoLogon> 578 | <OOBE> 579 | <HideEULAPage>true</HideEULAPage> 580 | <HideLocalAccountScreen>true</HideLocalAccountScreen> 581 | <HideOnlineAccountScreens>true</HideOnlineAccountScreens> 582 | <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE> 583 | <NetworkLocation>Home</NetworkLocation> 584 | <ProtectYourPC>3</ProtectYourPC> 585 | </OOBE> 586 | <UserAccounts> 587 | <LocalAccounts> 588 | <LocalAccount> 589 | <DisplayName>NTLite User</DisplayName> 590 | <Group>Administrators</Group> 591 | <Name>NTLiteUser</Name> 592 | <Password> 593 | <PlainText>true</PlainText> 594 | <Value></Value> 595 | </Password> 596 | </LocalAccount> 597 | </LocalAccounts> 598 | </UserAccounts> 599 | </component> 600 | </settings> 601 | <settings pass="specialize"> 602 | <component name="Microsoft-Windows-Security-SPP-UX"> 603 | <SkipAutoActivation>true</SkipAutoActivation> 604 | </component> 605 | <component name="Microsoft-Windows-Shell-Setup"> 606 | <ComputerName>DESKTOP-D0UCH3</ComputerName> 607 | </component> 608 | </settings> 609 | <settings pass="windowsPE"> 610 | <component name="Microsoft-Windows-International-Core-WinPE"> 611 | <InputLocale>0409:00000409</InputLocale> 612 | <SystemLocale>en-US</SystemLocale> 613 | <UILanguage>en-US</UILanguage> 614 | <UILanguageFallback>en-US</UILanguageFallback> 615 | <UserLocale>en-US</UserLocale> 616 | <SetupUILanguage> 617 | <UILanguage>en-US</UILanguage> 618 | </SetupUILanguage> 619 | </component> 620 | <component name="Microsoft-Windows-Setup"> 621 | <Diagnostics> 622 | <OptIn>false</OptIn> 623 | </Diagnostics> 624 | <DynamicUpdate> 625 | <Enable>false</Enable> 626 | <WillShowUI>OnError</WillShowUI> 627 | </DynamicUpdate> 628 | <UserData> 629 | <AcceptEula>true</AcceptEula> 630 | </UserData> 631 | </component> 632 | </settings> 633 | </Unattended> 634 | <Tweaks> 635 | <Settings> 636 | <TweakGroup name="DesktopTweaks"> 637 | <Tweak name="Keyboard\PrintScreenKeyForSnippingEnabled">0</Tweak> 638 | </TweakGroup> 639 | </Settings> 640 | </Tweaks> 641 | <ApplyOptions> 642 | <ImageTasks> 643 | <Task>imageSaveRebuild</Task> 644 | <Task>imageFormatWim</Task> 645 | </ImageTasks> 646 | </ApplyOptions> 647 | </Preset> 648 | -------------------------------------------------------------------------------- /02.Win11-Components_25H2.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <Preset isAutoSaved="true" xmlns="urn:schemas-nliteos-com:pn.v1"> 3 | <Date>10/09/2025 11:08:51</Date> 4 | <AppInfo> 5 | <Version>2025.10.10631</Version> 6 | <Licensed>Yes</Licensed> 7 | <Protections>Yes</Protections> 8 | <Host>Windows 10 Professional 22H2 x64 - 10.0.19045.6332 (en-US)</Host> 9 | </AppInfo> 10 | <ImageInfo> 11 | <Version mode="offline">Windows 11 Professional 25H2 x64 - 10.0.26200.6584 (en-US)</Version> 12 | <GUID>{58D6290C-2772-49F0-8C7B-E4FDD78C9A4E}</GUID> 13 | </ImageInfo> 14 | <RemoveComponents AppRemovalMode="DISM"> 15 | <c>accessibility_cursors 'Mouse Pointers (Accessibility tools)'</c> 16 | <c>accessibility_magnifier 'Screen Magnifier'</c> 17 | <c>activedirectory 'Active Directory'</c> 18 | <c>adamclient 'Active Directory Lightweight Directory Services (AD LDS)'</c> 19 | <c>asimov 'Telemetry Client'</c> 20 | <c>assembly.net '.NET assembly cache'</c> 21 | <c>assignedaccess 'Assigned Access'</c> 22 | <c>axinstall 'ActiveX Installer Service'</c> 23 | <c>azman32 'Authorization Manager - 32 bit'</c> 24 | <c>azuread 'Azure Active Directory'</c> 25 | <c>battery</c> 26 | <c>bingsearch 'Bing Search (InboxApp)'</c> 27 | <c>branchcacheclient 'BranchCache Client'</c> 28 | <c>captureservice 'Capture Service'</c> 29 | <c>ceip 'CEIP (SQM)'</c> 30 | <c>cellulartime 'Cellular Time'</c> 31 | <c>certmgr32 'Certificate Manager - 32 bit'</c> 32 | <c>clipchamp.clipchamp</c> 33 | <c>commmc32 'COM+ (Component Services) (management console) - 32 bit'</c> 34 | <c>compmgmt32 'Computer Management - 32 bit'</c> 35 | <c>containers 'Containers (Application Guard)'</c> 36 | <c>copilotpwa 'Windows Copilot (InboxApp)'</c> 37 | <c>cursors 'Mouse Pointers'</c> 38 | <c>desktopimgdownldr 'Desktop image downloader'</c> 39 | <c>deviceguard 'Device Guard'</c> 40 | <c>deviceupdatecenter 'Device Update Center'</c> 41 | <c>devmgmt32 'Device Manager - 32 bit'</c> 42 | <c>diagnostics 'Diagnostics and Troubleshooting'</c> 43 | <c>diskdiagnosis 'Disk failure diagnostics'</c> 44 | <c>diskmgmt32 'Disk Management - 32 bit'</c> 45 | <c>diskquota32 'Disk Quota - 32 bit'</c> 46 | <c>driver_battery.inf</c> 47 | <c>driver_c_barcodescanner.inf</c> 48 | <c>driver_c_battery.inf</c> 49 | <c>driver_c_cashdrawer.inf</c> 50 | <c>driver_c_fdc.inf</c> 51 | <c>driver_c_floppydisk.inf</c> 52 | <c>driver_c_infrared.inf</c> 53 | <c>driver_c_linedisplay.inf</c> 54 | <c>driver_c_magneticstripereader.inf</c> 55 | <c>driver_c_modem.inf</c> 56 | <c>driver_c_printer.inf</c> 57 | <c>driver_c_receiptprinter.inf</c> 58 | <c>driver_c_smartcard.inf</c> 59 | <c>driver_c_smartcardfilter.inf</c> 60 | <c>driver_c_smartcardreader.inf</c> 61 | <c>driver_c_volsnap.inf</c> 62 | <c>driver_cht4vx64.inf</c> 63 | <c>driver_cmbatt.inf</c> 64 | <c>driver_ehstorpwddrv.inf</c> 65 | <c>driver_ehstortcgdrv.inf</c> 66 | <c>driver_fdc.inf</c> 67 | <c>driver_flpydisk.inf</c> 68 | <c>driver_hidbatt.inf</c> 69 | <c>driver_hidir.inf</c> 70 | <c>driver_hidirkbd.inf</c> 71 | <c>driver_hidlamparray.inf</c> 72 | <c>driver_hidscanner.inf</c> 73 | <c>driver_hidtelephonydriver.inf</c> 74 | <c>driver_idtsec.inf</c> 75 | <c>driver_iscsi.inf</c> 76 | <c>driver_kdnic.inf</c> 77 | <c>driver_mdm3com.inf</c> 78 | <c>driver_mdm5674a.inf</c> 79 | <c>driver_mdmadc.inf</c> 80 | <c>driver_mdmagm64.inf</c> 81 | <c>driver_mdmags64.inf</c> 82 | <c>driver_mdmairte.inf</c> 83 | <c>driver_mdmaiwa.inf</c> 84 | <c>driver_mdmaiwa3.inf</c> 85 | <c>driver_mdmaiwa4.inf</c> 86 | <c>driver_mdmaiwa5.inf</c> 87 | <c>driver_mdmaiwat.inf</c> 88 | <c>driver_mdmar1.inf</c> 89 | <c>driver_mdmarch.inf</c> 90 | <c>driver_mdmarn.inf</c> 91 | <c>driver_mdmati.inf</c> 92 | <c>driver_mdmatm2k.inf</c> 93 | <c>driver_mdmaus.inf</c> 94 | <c>driver_mdmboca.inf</c> 95 | <c>driver_mdmbsb.inf</c> 96 | <c>driver_mdmbtmdm.inf</c> 97 | <c>driver_mdmbug3.inf</c> 98 | <c>driver_mdmbw561.inf</c> 99 | <c>driver_mdmc26a.inf</c> 100 | <c>driver_mdmcdp.inf</c> 101 | <c>driver_mdmcm28.inf</c> 102 | <c>driver_mdmcodex.inf</c> 103 | <c>driver_mdmcom1.inf</c> 104 | <c>driver_mdmcommu.inf</c> 105 | <c>driver_mdmcomp.inf</c> 106 | <c>driver_mdmcpq.inf</c> 107 | <c>driver_mdmcpq2.inf</c> 108 | <c>driver_mdmcpv.inf</c> 109 | <c>driver_mdmcrtix.inf</c> 110 | <c>driver_mdmcxhv6.inf</c> 111 | <c>driver_mdmcxpv6.inf</c> 112 | <c>driver_mdmdcm5.inf</c> 113 | <c>driver_mdmdcm6.inf</c> 114 | <c>driver_mdmdf56f.inf</c> 115 | <c>driver_mdmdgitn.inf</c> 116 | <c>driver_mdmdp2.inf</c> 117 | <c>driver_mdmdsi.inf</c> 118 | <c>driver_mdmdyna.inf</c> 119 | <c>driver_mdmeiger.inf</c> 120 | <c>driver_mdmelsa.inf</c> 121 | <c>driver_mdmeric.inf</c> 122 | <c>driver_mdmeric2.inf</c> 123 | <c>driver_mdmetech.inf</c> 124 | <c>driver_mdmfj2.inf</c> 125 | <c>driver_mdmgatew.inf</c> 126 | <c>driver_mdmgcs.inf</c> 127 | <c>driver_mdmgen.inf</c> 128 | <c>driver_mdmgl001.inf</c> 129 | <c>driver_mdmgl002.inf</c> 130 | <c>driver_mdmgl003.inf</c> 131 | <c>driver_mdmgl004.inf</c> 132 | <c>driver_mdmgl005.inf</c> 133 | <c>driver_mdmgl006.inf</c> 134 | <c>driver_mdmgl007.inf</c> 135 | <c>driver_mdmgl008.inf</c> 136 | <c>driver_mdmgl009.inf</c> 137 | <c>driver_mdmgl010.inf</c> 138 | <c>driver_mdmgsm.inf</c> 139 | <c>driver_mdmhaeu.inf</c> 140 | <c>driver_mdmhandy.inf</c> 141 | <c>driver_mdmhay2.inf</c> 142 | <c>driver_mdmhayes.inf</c> 143 | <c>driver_mdminfot.inf</c> 144 | <c>driver_mdmiodat.inf</c> 145 | <c>driver_mdmirmdm.inf</c> 146 | <c>driver_mdmisdn.inf</c> 147 | <c>driver_mdmjf56e.inf</c> 148 | <c>driver_mdmke.inf</c> 149 | <c>driver_mdmkortx.inf</c> 150 | <c>driver_mdmlasat.inf</c> 151 | <c>driver_mdmlasno.inf</c> 152 | <c>driver_mdmlucnt.inf</c> 153 | <c>driver_mdmmc288.inf</c> 154 | <c>driver_mdmmcd.inf</c> 155 | <c>driver_mdmmcom.inf</c> 156 | <c>driver_mdmmct.inf</c> 157 | <c>driver_mdmmega.inf</c> 158 | <c>driver_mdmmetri.inf</c> 159 | <c>driver_mdmmhrtz.inf</c> 160 | <c>driver_mdmmhzel.inf</c> 161 | <c>driver_mdmminij.inf</c> 162 | <c>driver_mdmmod.inf</c> 163 | <c>driver_mdmmot64.inf</c> 164 | <c>driver_mdmmoto1.inf</c> 165 | <c>driver_mdmmotou.inf</c> 166 | <c>driver_mdmmts.inf</c> 167 | <c>driver_mdmneuhs.inf</c> 168 | <c>driver_mdmnis1u.inf</c> 169 | <c>driver_mdmnis2u.inf</c> 170 | <c>driver_mdmnis3t.inf</c> 171 | <c>driver_mdmnis5t.inf</c> 172 | <c>driver_mdmnokia.inf</c> 173 | <c>driver_mdmnova.inf</c> 174 | <c>driver_mdmntt1.inf</c> 175 | <c>driver_mdmnttd2.inf</c> 176 | <c>driver_mdmnttd6.inf</c> 177 | <c>driver_mdmnttme.inf</c> 178 | <c>driver_mdmnttp.inf</c> 179 | <c>driver_mdmnttp2.inf</c> 180 | <c>driver_mdmnttte.inf</c> 181 | <c>driver_mdmolic.inf</c> 182 | <c>driver_mdmomrn3.inf</c> 183 | <c>driver_mdmoptn.inf</c> 184 | <c>driver_mdmosi.inf</c> 185 | <c>driver_mdmpace.inf</c> 186 | <c>driver_mdmpenr.inf</c> 187 | <c>driver_mdmpin.inf</c> 188 | <c>driver_mdmpn1.inf</c> 189 | <c>driver_mdmpp.inf</c> 190 | <c>driver_mdmpsion.inf</c> 191 | <c>driver_mdmracal.inf</c> 192 | <c>driver_mdmrock.inf</c> 193 | <c>driver_mdmrock3.inf</c> 194 | <c>driver_mdmrock4.inf</c> 195 | <c>driver_mdmrock5.inf</c> 196 | <c>driver_mdmsier.inf</c> 197 | <c>driver_mdmsii64.inf</c> 198 | <c>driver_mdmsmart.inf</c> 199 | <c>driver_mdmsonyu.inf</c> 200 | <c>driver_mdmsun1.inf</c> 201 | <c>driver_mdmsun2.inf</c> 202 | <c>driver_mdmsupr3.inf</c> 203 | <c>driver_mdmsupra.inf</c> 204 | <c>driver_mdmsuprv.inf</c> 205 | <c>driver_mdmtdk.inf</c> 206 | <c>driver_mdmtdkj2.inf</c> 207 | <c>driver_mdmtdkj3.inf</c> 208 | <c>driver_mdmtdkj4.inf</c> 209 | <c>driver_mdmtdkj5.inf</c> 210 | <c>driver_mdmtdkj6.inf</c> 211 | <c>driver_mdmtdkj7.inf</c> 212 | <c>driver_mdmtexas.inf</c> 213 | <c>driver_mdmti.inf</c> 214 | <c>driver_mdmtkr.inf</c> 215 | <c>driver_mdmtron.inf</c> 216 | <c>driver_mdmusrf.inf</c> 217 | <c>driver_mdmusrg.inf</c> 218 | <c>driver_mdmusrgl.inf</c> 219 | <c>driver_mdmusrk1.inf</c> 220 | <c>driver_mdmusrsp.inf</c> 221 | <c>driver_mdmvdot.inf</c> 222 | <c>driver_mdmvv.inf</c> 223 | <c>driver_mdmwhql0.inf</c> 224 | <c>driver_mdmx5560.inf</c> 225 | <c>driver_mdmzoom.inf</c> 226 | <c>driver_mdmzyp.inf</c> 227 | <c>driver_mdmzyxel.inf</c> 228 | <c>driver_mdmzyxlg.inf</c> 229 | <c>driver_mgtdyn.inf</c> 230 | <c>driver_modemcsa.inf</c> 231 | <c>driver_msclmd.inf</c> 232 | <c>driver_ntprint.inf</c> 233 | <c>driver_ntprint4.inf</c> 234 | <c>driver_printqueue.inf</c> 235 | <c>driver_prnge001.inf</c> 236 | <c>driver_prnms002.inf</c> 237 | <c>driver_prnms003.inf</c> 238 | <c>driver_prnms004.inf</c> 239 | <c>driver_prnms005.inf</c> 240 | <c>driver_prnms007.inf</c> 241 | <c>driver_prnms008.inf</c> 242 | <c>driver_prnms010.inf</c> 243 | <c>driver_prnms011.inf</c> 244 | <c>driver_prnms012.inf</c> 245 | <c>driver_prnms014.inf</c> 246 | <c>driver_rawsilo.inf</c> 247 | <c>driver_rdpbus.inf</c> 248 | <c>driver_remoteposdrv.inf</c> 249 | <c>driver_scrawpdo.inf</c> 250 | <c>driver_scunknown.inf</c> 251 | <c>driver_spaceport.inf</c> 252 | <c>driver_termbus.inf</c> 253 | <c>driver_termkbd.inf</c> 254 | <c>driver_termmou.inf</c> 255 | <c>driver_tpmvsc.inf</c> 256 | <c>driver_ts_generic.inf</c> 257 | <c>driver_tsgenericusbdriver.inf</c> 258 | <c>driver_tsprint.inf</c> 259 | <c>driver_tsusbhubfilter.inf</c> 260 | <c>driver_usbcciddriver.inf</c> 261 | <c>driver_usbcir.inf</c> 262 | <c>driver_usbprint.inf</c> 263 | <c>driver_volsnap.inf</c> 264 | <c>driver_wdmvsc.inf</c> 265 | <c>driver_wfcvsc.inf</c> 266 | <c>driver_wgencounter.inf</c> 267 | <c>driver_whvcrash.inf</c> 268 | <c>driver_whyperkbd.inf</c> 269 | <c>driver_wnetvsc.inf</c> 270 | <c>driver_ws3cap.inf</c> 271 | <c>driver_wstorflt.inf</c> 272 | <c>driver_wstorvsc.inf</c> 273 | <c>driver_wudfusbcciddriver.inf</c> 274 | <c>driver_wvid.inf</c> 275 | <c>driver_wvmbus.inf</c> 276 | <c>driver_wvmbushid.inf</c> 277 | <c>driver_wvmbusvideo.inf</c> 278 | <c>driver_wvmgid.inf</c> 279 | <c>driver_wvmic.inf</c> 280 | <c>driver_wvmic_ext.inf</c> 281 | <c>driver_wvmic_vss.inf</c> 282 | <c>driver_wvpci.inf</c> 283 | <c>dynamiclighting 'Dynamic Lighting'</c> 284 | <c>e2a4f912-2574-4a75-9bb0-0d023378592b 'App Resolver'</c> 285 | <c>easeofaccessthemes 'Ease Of Access Themes'</c> 286 | <c>edgehtml32 'HTML Viewer - 32 bit'</c> 287 | <c>edgeupdate 'Microsoft Edge Update'</c> 288 | <c>edgewebview 'Microsoft Edge WebView'</c> 289 | <c>edgewebviewlegacy 'WebView2 Runtime (Legacy)'</c> 290 | <c>embeddedexperience 'Device Lockdown (Embedded Experience)'</c> 291 | <c>embeddedmode 'Embedded Mode'</c> 292 | <c>enterpriseclientsync 'Work Folders Client'</c> 293 | <c>enterprisedataprotection 'Enterprise Data Protection (EDP/WIP)'</c> 294 | <c>errorreporting 'Windows Error Reporting'</c> 295 | <c>errorreportingapi 'Windows Error Reporting API'</c> 296 | <c>eudcedit 'Private Character Editor'</c> 297 | <c>eventviewer32 'Event Viewer - 32 bit'</c> 298 | <c>f46d4000-fd22-4db4-ac8e-4e1ddde828fe 'Add Folder Suggestions dialog'</c> 299 | <c>fciclient 'File Server Resource Manager'</c> 300 | <c>firstlogonanim 'First-logon animation'</c> 301 | <c>flipgridpwa 'Flipgrid PWA (InboxApp)'</c> 302 | <c>fontpreviewer32 'Font previewer - 32 bit'</c> 303 | <c>fsmgmt32 'Shared Folders UI - 32 bit'</c> 304 | <c>gameexplorer 'Game Explorer'</c> 305 | <c>hbaapi 'Host Bus Adapter (HBA) API'</c> 306 | <c>help 'Windows Help content'</c> 307 | <c>hotpatch 'Windows Hotpatching'</c> 308 | <c>hwsupport_floppy 'Floppy disk'</c> 309 | <c>hwsupport_infrared 'Infrared devices'</c> 310 | <c>hwsupport_internetprintingclient 'Internet Printing Client'</c> 311 | <c>hwsupport_modem 'Modem'</c> 312 | <c>hwsupport_modemsettings 'Shared modem settings (mdmgl*.inf)'</c> 313 | <c>hwsupport_printer 'Printing'</c> 314 | <c>hwsupport_scanner 'Scanner'</c> 315 | <c>hwsupport_smartcard 'Smartcard'</c> 316 | <c>hwsupport_telephony 'Telephony'</c> 317 | <c>hwsupport_tv 'TV Tuner codecs and support'</c> 318 | <c>iis 'Internet Information Server (IIS)'</c> 319 | <c>insiderhub 'Windows Insider Program'</c> 320 | <c>internetexplorer 'Internet Explorer'</c> 321 | <c>internetexplorer32 'Internet Explorer - 32 bit'</c> 322 | <c>iscsi 'iSCSI Initiator'</c> 323 | <c>isolatedusermode 'Virtualization-based security (VBS)'</c> 324 | <c>kerberos32 'Kerberos Client - 32 bit'</c> 325 | <c>kerneldebug 'Kernel Debugging'</c> 326 | <c>la57 '57-bit Linear Addressing'</c> 327 | <c>lcu 'Cumulative Update cache (LCU)'</c> 328 | <c>livecaptions 'Live Captions'</c> 329 | <c>location 'Location Service'</c> 330 | <c>lockscreens 'Lock Screen backgrounds'</c> 331 | <c>lusrmgr32 'Local Users and Groups Manager - 32 bit'</c> 332 | <c>lxss 'Windows Subsystem for Linux'</c> 333 | <c>mail 'Windows Mail'</c> 334 | <c>mailcommdll 'Windows Mail Communications Library'</c> 335 | <c>manifestbackup 'Manifest Backup (WinSxS\Backup)'</c> 336 | <c>mapcontrol 'Map Control'</c> 337 | <c>mediaplayer 'Windows Media Player'</c> 338 | <c>mediaplayer32 'Windows Media Player - 32 bit'</c> 339 | <c>mediaplayernetworksharing 'WMP Network Sharing Service'</c> 340 | <c>mediaplayernetworksharing32 'WMP Network Sharing Service - 32 bit'</c> 341 | <c>messagingsvc 'Messaging Service'</c> 342 | <c>microsoft.applicationcompatibilityenhancements 'Windows Application Compatibility Enhancements'</c> 343 | <c>microsoft.asynctextservice 'AsyncTextService'</c> 344 | <c>microsoft.av1videoextension 'AV1 Video Extension'</c> 345 | <c>microsoft.avcencodervideoextension 'AVC Encoder Video Extension'</c> 346 | <c>microsoft.bingnews 'Microsoft News'</c> 347 | <c>microsoft.bingsearch 'Microsoft Bing'</c> 348 | <c>microsoft.bingweather 'MSN Weather'</c> 349 | <c>microsoft.bioenrollment 'Windows Hello Setup'</c> 350 | <c>microsoft.creddialoghost 'Credential Dialog'</c> 351 | <c>microsoft.ecapp 'Eye Control'</c> 352 | <c>microsoft.gamingapp 'Xbox App'</c> 353 | <c>microsoft.gethelp 'Get Help'</c> 354 | <c>microsoft.heifimageextension 'HEIF Image Extension'</c> 355 | <c>microsoft.hevcvideoextension 'HEVC Video Extensions from Device Manufacturer'</c> 356 | <c>microsoft.lockapp 'Windows Default Lock Screen'</c> 357 | <c>microsoft.microsoftedge 'Microsoft Edge (Legacy)'</c> 358 | <c>microsoft.microsoftedge.stable 'Microsoft Edge (Chromium)'</c> 359 | <c>microsoft.microsoftedgedevtoolsclient 'Microsoft Edge DevTools Client'</c> 360 | <c>microsoft.microsoftofficehub 'Microsoft 365 Copilot'</c> 361 | <c>microsoft.microsoftsolitairecollection 'Solitaire &amp; Casual Games'</c> 362 | <c>microsoft.microsoftstickynotes 'Microsoft Sticky Notes'</c> 363 | <c>microsoft.mpeg2videoextension 'MPEG-2 Video Extension'</c> 364 | <c>microsoft.outlookforwindows 'Outlook for Windows'</c> 365 | <c>microsoft.powerautomatedesktop 'Power Automate'</c> 366 | <c>microsoft.rawimageextension 'Raw Image Extension'</c> 367 | <c>microsoft.screensketch 'Snipping Tool'</c> 368 | <c>microsoft.sechealthui 'Windows Defender'</c> 369 | <c>microsoft.storepurchaseapp 'Store Experience Host'</c> 370 | <c>microsoft.todos 'Microsoft To Do'</c> 371 | <c>microsoft.vp9videoextensions 'VP9 Video Extensions'</c> 372 | <c>microsoft.webmediaextensions 'Web Media Extensions'</c> 373 | <c>microsoft.webpimageextension 'WebP Image Extension'</c> 374 | <c>microsoft.win32webviewhost 'Desktop App Web Viewer'</c> 375 | <c>microsoft.windows.apprep.chxapp 'SmartScreen'</c> 376 | <c>microsoft.windows.assignedaccesslockapp 'Assigned Access Lock app'</c> 377 | <c>microsoft.windows.augloop.cbs</c> 378 | <c>microsoft.windows.capturepicker 'Capture Picker'</c> 379 | <c>microsoft.windows.contentdeliverymanager 'Content Delivery Manager'</c> 380 | <c>microsoft.windows.devhome 'Dev Home'</c> 381 | <c>microsoft.windows.narratorquickstart 'Narrator'</c> 382 | <c>microsoft.windows.oobenetworkcaptiveportal 'Captive Portal Flow'</c> 383 | <c>microsoft.windows.oobenetworkconnectionflow 'Network Connection Flow'</c> 384 | <c>microsoft.windows.parentalcontrols 'Microsoft Family Safety'</c> 385 | <c>microsoft.windows.peopleexperiencehost 'Windows Shell Experience'</c> 386 | <c>microsoft.windows.photos 'Microsoft Photos'</c> 387 | <c>microsoft.windows.pinningconfirmationdialog 'PinningConfirmationDialog'</c> 388 | <c>microsoft.windows.printqueueactioncenter 'PrintQueueActionCenter'</c> 389 | <c>microsoft.windows.secureassessmentbrowser 'Take a Test'</c> 390 | <c>microsoft.windows.xgpuejectdialog 'Safely Remove Device'</c> 391 | <c>microsoft.windowsalarms 'Windows Clock'</c> 392 | <c>microsoft.windowscamera 'Windows Camera'</c> 393 | <c>microsoft.windowsfeedbackhub 'Feedback Hub'</c> 394 | <c>microsoft.windowsnotepad 'Windows Notepad'</c> 395 | <c>microsoft.windowssoundrecorder 'Windows Sound Recorder'</c> 396 | <c>microsoft.xbox.tcui 'Xbox TCUI'</c> 397 | <c>microsoft.xboxgamecallableui 'Xbox Game UI'</c> 398 | <c>microsoft.xboxgamingoverlay 'Game Bar'</c> 399 | <c>microsoft.xboxspeechtotextoverlay 'Game Speech Window'</c> 400 | <c>microsoft.yourphone 'Phone Link'</c> 401 | <c>microsoft.zunemusic 'Windows Media Player'</c> 402 | <c>microsoftcorporationii.quickassist 'Quick Assist'</c> 403 | <c>microsoftwindows.client.aix 'Windows Copilot (Windows Feature Experience Pack)'</c> 404 | <c>microsoftwindows.client.photon 'Windows Feature Experience Pack - Photon'</c> 405 | <c>microsoftwindows.client.webexperience 'Windows Web Experience Pack'</c> 406 | <c>microsoftwindows.crossdevice 'Cross Device Experience Host'</c> 407 | <c>mixedreality 'Windows Mixed Reality'</c> 408 | <c>mmc32 'Microsoft Management Console (MMC) - 32 bit'</c> 409 | <c>mpe 'Microsoft Privacy Engine'</c> 410 | <c>msmq 'Microsoft Message Queue (MSMQ)'</c> 411 | <c>msteams 'Microsoft Teams'</c> 412 | <c>ndu 'Network Data Usage Monitoring Driver'</c> 413 | <c>netbios 'NetBIOS over TCP transport'</c> 414 | <c>nfc 'Near Field Communication (NFC)'</c> 415 | <c>notepad 'Notepad (Legacy)'</c> 416 | <c>offlinefiles 'Offline Files'</c> 417 | <c>onedrive</c> 418 | <c>oobefodsetup 'Out-of-box Experience (OOBE) - FOD Setup'</c> 419 | <c>openssh</c> 420 | <c>otherthemes 'Windows Personalization themes'</c> 421 | <c>outlookpwa 'Outlook PWA (InboxApp)'</c> 422 | <c>payments</c> 423 | <c>pdfreader 'Windows Reader (PDF)'</c> 424 | <c>penservice 'Pen Service'</c> 425 | <c>phonesvc 'Phone Service'</c> 426 | <c>photoviewer 'Photo Viewer'</c> 427 | <c>photoviewer32 'Photo Viewer - 32 bit'</c> 428 | <c>pos 'Point of Service (POS)'</c> 429 | <c>powershellise 'PowerShell ISE'</c> 430 | <c>powershellise32 'PowerShell ISE - 32 bit'</c> 431 | <c>printmgmt 'Print Management'</c> 432 | <c>printtopdf 'Print to PDF'</c> 433 | <c>printworkflow 'Print Workflow Service'</c> 434 | <c>projfs 'Projected File System (ProjFS)'</c> 435 | <c>pushtoinstall 'Windows PushToInstall Service'</c> 436 | <c>rasauto 'Remote Access Auto Connection Manager'</c> 437 | <c>rdc 'Remote Differential Compression (RDC)'</c> 438 | <c>rdmaping 'Remote Direct Memory Access (RDMA) ping tool'</c> 439 | <c>rdpclient 'Remote Desktop Client'</c> 440 | <c>rdpclient32 'Remote Desktop Client - 32 bit'</c> 441 | <c>rdpserver 'Remote Desktop Server'</c> 442 | <c>rdpserverlic 'Remote Desktop Licensing'</c> 443 | <c>refs 'Resilient File System (ReFS)'</c> 444 | <c>regedit32 'Registry Editor - 32 bit'</c> 445 | <c>remoteactivex 'Remote Desktop Services ActiveX Client'</c> 446 | <c>remoteactivex32 'Remote Desktop Services ActiveX Client - 32 bit'</c> 447 | <c>remoteassistance 'Remote Assistance'</c> 448 | <c>remotefx</c> 449 | <c>remoteportredirector 'Remote Desktop Services Port Redirector'</c> 450 | <c>remoteregistry 'Remote Registry'</c> 451 | <c>retaildemo 'Retail Demo Content'</c> 452 | <c>rotationmanager 'Auto-Rotation Manager'</c> 453 | <c>ruxim 'Reusable UX Interaction Manager (RUXIM)'</c> 454 | <c>screensavers</c> 455 | <c>servicesmmc32 'Services (management console) - 32 bit'</c> 456 | <c>sharedpc 'Shared PC mode'</c> 457 | <c>simpletcp 'Simple TCP/IP services'</c> 458 | <c>sleepstudy 'Sleep Study'</c> 459 | <c>smbdirect 'SMB Direct (RDMA)'</c> 460 | <c>smbv1 'SMB v1'</c> 461 | <c>smbwitnessclientapi 'SMB Witness Client API'</c> 462 | <c>soundsdefault 'Sounds (Default)'</c> 463 | <c>soundthemes 'Sound Themes'</c> 464 | <c>sourcessxsdir 'Manual feature repository'</c> 465 | <c>srumon 'Data Usage service'</c> 466 | <c>startexperiencesapp 'Start Experiences (InboxApp)'</c> 467 | <c>stepsrecorder 'Steps Recorder'</c> 468 | <c>storageqos 'Storage Quality of Service (Storage QoS)'</c> 469 | <c>supportdir 'Support directory'</c> 470 | <c>synccenter 'Sync Center'</c> 471 | <c>tabletpc 'Tablet PC'</c> 472 | <c>targetedcontent32 'Targeted Content Service - 32 bit'</c> 473 | <c>taskmanager32 'Task Manager - 32 bit'</c> 474 | <c>taskschdmsc32 'Task Scheduler (management console) - 32 bit'</c> 475 | <c>telnetclient 'Telnet Client'</c> 476 | <c>tempcache 'Cache and temp files'</c> 477 | <c>tftpclient 'TFTP client'</c> 478 | <c>timetraveldebugger 'Time Travel Debugger (TTD)'</c> 479 | <c>tpmmmc32 'Trusted Platform Module (TPM) (management console) - 32 bit'</c> 480 | <c>troubleshootingsvc 'Recommended Troubleshooting service'</c> 481 | <c>unexpectedcodepath 'Unexpected Codepath'</c> 482 | <c>universalprintsvc 'Universal Print Management Service'</c> 483 | <c>userdeviceregistration 'User Device Registration'</c> 484 | <c>waasassessment 'Windows Update Medic Service'</c> 485 | <c>wallet 'Wallet Service'</c> 486 | <c>wallpaperdefault 'Wallpaper (Default)'</c> 487 | <c>wallpapers 'Wallpapers (Themes)'</c> 488 | <c>webthreatdefense 'Web Threat Defense Service'</c> 489 | <c>webview2core 'WebView2 Runtime (Core)'</c> 490 | <c>wfmmc32 'Windows Firewall (management console) - 32 bit'</c> 491 | <c>whesvc 'Windows Health and Optimized Experiences'</c> 492 | <c>widgetsplatformruntimeapp 'Widgets Platform Runtime (InboxApp)'</c> 493 | <c>windows.cbspreview 'Windows Barcode Preview'</c> 494 | <c>windows.devicesflow32 'Devices Flow - 32 bit'</c> 495 | <c>windows.printdialog 'Windows Print'</c> 496 | <c>windowstogo 'Windows To Go'</c> 497 | <c>windowsupdate 'Windows Update'</c> 498 | <c>xbox 'Xbox - Core'</c> 499 | </RemoveComponents> 500 | <Compatibility> 501 | <ComponentFeatures> 502 | <Feature enabled="no">Battle.net</Feature> 503 | <Feature enabled="yes">Bluetooth</Feature> 504 | <Feature enabled="no">EAC</Feature> 505 | <Feature enabled="no">OOBE</Feature> 506 | <Feature enabled="no">Printing</Feature> 507 | <Feature enabled="no">Recommended-All</Feature> 508 | <Feature enabled="no">Scanning</Feature> 509 | <Feature enabled="no">HostRefresh</Feature> 510 | <Feature enabled="no">VisualStudio</Feature> 511 | <Feature enabled="no">WindowsUpdate</Feature> 512 | </ComponentFeatures> 513 | <MachineDrivers></MachineDrivers> 514 | </Compatibility> 515 | <Features> 516 | <Feature name="Windows.Kernel.LA57~~~~0.0.1.0">false</Feature> 517 | <Feature name="Microsoft.Windows.Wifi.Client.Broadcom.Bcmpciedhd63~~~~0.0.1.0">false</Feature> 518 | <Feature name="Microsoft.Windows.Wifi.Client.Broadcom.Bcmwl63a~~~~0.0.1.0">false</Feature> 519 | <Feature name="Microsoft.Windows.Wifi.Client.Broadcom.Bcmwl63al~~~~0.0.1.0">false</Feature> 520 | <Feature name="DirectX.Configuration.Database~~~~0.0.1.0">false</Feature> 521 | <Feature name="OneCoreUAP.OneSync~~~~0.0.1.0">false</Feature> 522 | <Feature name="Microsoft.Wallpapers.Extended~~~~0.0.1.0">false</Feature> 523 | <Feature name="Hello.Face.20134~~~~0.0.1.0">false</Feature> 524 | <Feature name="Microsoft.Windows.Ethernet.Client.Intel.E1i68x64~~~~0.0.1.0">false</Feature> 525 | <Feature name="Microsoft.Windows.Ethernet.Client.Intel.E2f68~~~~0.0.1.0">false</Feature> 526 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwbw02~~~~0.0.1.0">false</Feature> 527 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwew00~~~~0.0.1.0">false</Feature> 528 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwew01~~~~0.0.1.0">false</Feature> 529 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwlv64~~~~0.0.1.0">false</Feature> 530 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwns64~~~~0.0.1.0">false</Feature> 531 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwsw00~~~~0.0.1.0">false</Feature> 532 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwtw02~~~~0.0.1.0">false</Feature> 533 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwtw04~~~~0.0.1.0">false</Feature> 534 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwtw06~~~~0.0.1.0">false</Feature> 535 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwtw08~~~~0.0.1.0">false</Feature> 536 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwtw10~~~~0.0.1.0">false</Feature> 537 | <Feature name="Microsoft.Windows.Wifi.Client.Marvel.Mrvlpcie8897~~~~0.0.1.0">false</Feature> 538 | <Feature name="MathRecognizer~~~~0.0.1.0">false</Feature> 539 | <Feature name="Edge.Webview2.Platform~~~~">false</Feature> 540 | <Feature name="Microsoft.Windows.Notepad.System~~~~0.0.1.0">false</Feature> 541 | <Feature name="Print.Management.Console~~~~0.0.1.0">false</Feature> 542 | <Feature name="Microsoft.Windows.Wifi.Client.Qualcomm.Athw8x~~~~0.0.1.0">false</Feature> 543 | <Feature name="Microsoft.Windows.Wifi.Client.Qualcomm.Athwnx~~~~0.0.1.0">false</Feature> 544 | <Feature name="Microsoft.Windows.Wifi.Client.Qualcomm.Qcamain10x64~~~~0.0.1.0">false</Feature> 545 | <Feature name="Microsoft.Windows.Wifi.Client.Ralink.Netr28x~~~~0.0.1.0">false</Feature> 546 | <Feature name="Microsoft.Windows.Ethernet.Client.Realtek.Rtcx21x64~~~~0.0.1.0">false</Feature> 547 | <Feature name="Microsoft.Windows.Wifi.Client.Realtek.Rtl8192se~~~~0.0.1.0">false</Feature> 548 | <Feature name="Microsoft.Windows.Wifi.Client.Realtek.Rtwlane~~~~0.0.1.0">false</Feature> 549 | <Feature name="Microsoft.Windows.Wifi.Client.Realtek.Rtwlane01~~~~0.0.1.0">false</Feature> 550 | <Feature name="Microsoft.Windows.Wifi.Client.Realtek.Rtwlane13~~~~0.0.1.0">false</Feature> 551 | <Feature name="Windows.SmbDirect~~~~">false</Feature> 552 | <Feature name="Microsoft.Windows.Ethernet.Client.Vmware.Vmxnet3~~~~0.0.1.0">false</Feature> 553 | <Feature name="Media.WindowsMediaPlayer~~~~0.0.12.0">false</Feature> 554 | <Feature name="Microsoft.Windows.PowerShell.ISE~~~~0.0.1.0">false</Feature> 555 | <Feature name="Windows.WorkFolders.Client~~~~">false</Feature> 556 | </Features> 557 | <Packages> 558 | <Options> 559 | <CleanHotfixedLeftovers>4</CleanHotfixedLeftovers> 560 | <OptimizeAppX>true</OptimizeAppX> 561 | </Options> 562 | </Packages> 563 | <Unattended mode="0"> 564 | <settings pass="oobeSystem"> 565 | <component name="Microsoft-Windows-International-Core"> 566 | <InputLocale>0409:00000409</InputLocale> 567 | <SystemLocale>en-US</SystemLocale> 568 | <UILanguage>en-US</UILanguage> 569 | <UILanguageFallback>en-US</UILanguageFallback> 570 | <UserLocale>en-US</UserLocale> 571 | </component> 572 | <component name="Microsoft-Windows-Shell-Setup"> 573 | <TimeZone>Eastern Standard Time</TimeZone> 574 | <AutoLogon> 575 | <Enabled>true</Enabled> 576 | <LogonCount>9999999</LogonCount> 577 | <Username>NTLiteUser</Username> 578 | <Password> 579 | <PlainText>true</PlainText> 580 | <Value></Value> 581 | </Password> 582 | </AutoLogon> 583 | <OOBE> 584 | <HideEULAPage>true</HideEULAPage> 585 | <HideLocalAccountScreen>true</HideLocalAccountScreen> 586 | <HideOnlineAccountScreens>true</HideOnlineAccountScreens> 587 | <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE> 588 | <NetworkLocation>Home</NetworkLocation> 589 | <ProtectYourPC>3</ProtectYourPC> 590 | </OOBE> 591 | <UserAccounts> 592 | <LocalAccounts> 593 | <LocalAccount> 594 | <DisplayName>NTLite User</DisplayName> 595 | <Group>Administrators</Group> 596 | <Name>NTLiteUser</Name> 597 | <Password> 598 | <PlainText>true</PlainText> 599 | <Value></Value> 600 | </Password> 601 | </LocalAccount> 602 | </LocalAccounts> 603 | </UserAccounts> 604 | </component> 605 | </settings> 606 | <settings pass="specialize"> 607 | <component name="Microsoft-Windows-Security-SPP-UX"> 608 | <SkipAutoActivation>true</SkipAutoActivation> 609 | </component> 610 | <component name="Microsoft-Windows-Shell-Setup"> 611 | <ComputerName>DESKTOP-D0UCH3</ComputerName> 612 | </component> 613 | </settings> 614 | <settings pass="windowsPE"> 615 | <component name="Microsoft-Windows-International-Core-WinPE"> 616 | <InputLocale>0409:00000409</InputLocale> 617 | <SystemLocale>en-US</SystemLocale> 618 | <UILanguage>en-US</UILanguage> 619 | <UILanguageFallback>en-US</UILanguageFallback> 620 | <UserLocale>en-US</UserLocale> 621 | <SetupUILanguage> 622 | <UILanguage>en-US</UILanguage> 623 | </SetupUILanguage> 624 | </component> 625 | <component name="Microsoft-Windows-Setup"> 626 | <Diagnostics> 627 | <OptIn>false</OptIn> 628 | </Diagnostics> 629 | <DynamicUpdate> 630 | <Enable>false</Enable> 631 | <WillShowUI>OnError</WillShowUI> 632 | </DynamicUpdate> 633 | <UserData> 634 | <AcceptEula>true</AcceptEula> 635 | </UserData> 636 | </component> 637 | </settings> 638 | </Unattended> 639 | <Tweaks> 640 | <Settings> 641 | <TweakGroup name="DesktopTweaks"> 642 | <Tweak name="Keyboard\PrintScreenKeyForSnippingEnabled">0</Tweak> 643 | </TweakGroup> 644 | </Settings> 645 | </Tweaks> 646 | <ApplyOptions> 647 | <ImageTasks> 648 | <Task>imageSaveRebuild</Task> 649 | <Task>imageFormatWim</Task> 650 | </ImageTasks> 651 | </ApplyOptions> 652 | </Preset> 653 | -------------------------------------------------------------------------------- /01.Win11-Components_24H2.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <Preset isAutoSaved="true" xmlns="urn:schemas-nliteos-com:pn.v1"> 3 | <Date>08/23/2025 23:18:22</Date> 4 | <AppInfo> 5 | <Version>2025.8.10552</Version> 6 | <Licensed>Yes</Licensed> 7 | <Protections>Yes</Protections> 8 | <Host>Windows 11 Professional 24H2 x64 - 10.0.26100.4946 (en-US)</Host> 9 | </AppInfo> 10 | <ImageInfo> 11 | <Version mode="offline">Windows 11 Professional 24H2 x64 - 10.0.26100.4946 (en-US)</Version> 12 | <GUID>{465CC607-49A1-4548-9F8E-4013F50A5EC4}</GUID> 13 | </ImageInfo> 14 | <RemoveComponents AppRemovalMode="DISM"> 15 | <c>accessibility_cursors 'Mouse Pointers (Accessibility tools)'</c> 16 | <c>accessibility_magnifier 'Screen Magnifier'</c> 17 | <c>activedirectory 'Active Directory'</c> 18 | <c>adamclient 'Active Directory Lightweight Directory Services (AD LDS)'</c> 19 | <c>asimov 'Telemetry Client'</c> 20 | <c>assembly.net '.NET assembly cache'</c> 21 | <c>assignedaccess 'Assigned Access'</c> 22 | <c>axinstall 'ActiveX Installer Service'</c> 23 | <c>azman32 'Authorization Manager - 32 bit'</c> 24 | <c>azuread 'Azure Active Directory'</c> 25 | <c>battery</c> 26 | <c>bingsearch 'Bing Search (InboxApp)'</c> 27 | <c>branchcacheclient 'BranchCache Client'</c> 28 | <c>captureservice 'Capture Service'</c> 29 | <c>ceip 'CEIP (SQM)'</c> 30 | <c>cellulartime 'Cellular Time'</c> 31 | <c>certmgr32 'Certificate Manager - 32 bit'</c> 32 | <c>clipchamp.clipchamp</c> 33 | <c>commmc32 'COM+ (Component Services) (management console) - 32 bit'</c> 34 | <c>compmgmt32 'Computer Management - 32 bit'</c> 35 | <c>containers 'Containers (Application Guard)'</c> 36 | <c>copilotpwa 'Windows Copilot (InboxApp)'</c> 37 | <c>cursors 'Mouse Pointers'</c> 38 | <c>desktopimgdownldr 'Desktop image downloader'</c> 39 | <c>deviceguard 'Device Guard'</c> 40 | <c>deviceupdatecenter 'Device Update Center'</c> 41 | <c>devmgmt32 'Device Manager - 32 bit'</c> 42 | <c>diagnostics 'Diagnostics and Troubleshooting'</c> 43 | <c>diskdiagnosis 'Disk failure diagnostics'</c> 44 | <c>diskmgmt32 'Disk Management - 32 bit'</c> 45 | <c>diskquota32 'Disk Quota - 32 bit'</c> 46 | <c>driver_battery.inf</c> 47 | <c>driver_c_barcodescanner.inf</c> 48 | <c>driver_c_battery.inf</c> 49 | <c>driver_c_cashdrawer.inf</c> 50 | <c>driver_c_fdc.inf</c> 51 | <c>driver_c_floppydisk.inf</c> 52 | <c>driver_c_infrared.inf</c> 53 | <c>driver_c_linedisplay.inf</c> 54 | <c>driver_c_magneticstripereader.inf</c> 55 | <c>driver_c_modem.inf</c> 56 | <c>driver_c_printer.inf</c> 57 | <c>driver_c_receiptprinter.inf</c> 58 | <c>driver_c_smartcard.inf</c> 59 | <c>driver_c_smartcardfilter.inf</c> 60 | <c>driver_c_smartcardreader.inf</c> 61 | <c>driver_c_volsnap.inf</c> 62 | <c>driver_cht4vx64.inf</c> 63 | <c>driver_cmbatt.inf</c> 64 | <c>driver_ehstorpwddrv.inf</c> 65 | <c>driver_ehstortcgdrv.inf</c> 66 | <c>driver_fdc.inf</c> 67 | <c>driver_flpydisk.inf</c> 68 | <c>driver_hidbatt.inf</c> 69 | <c>driver_hidir.inf</c> 70 | <c>driver_hidirkbd.inf</c> 71 | <c>driver_hidlamparray.inf</c> 72 | <c>driver_hidscanner.inf</c> 73 | <c>driver_hidtelephonydriver.inf</c> 74 | <c>driver_idtsec.inf</c> 75 | <c>driver_iscsi.inf</c> 76 | <c>driver_kdnic.inf</c> 77 | <c>driver_mdm3com.inf</c> 78 | <c>driver_mdm5674a.inf</c> 79 | <c>driver_mdmadc.inf</c> 80 | <c>driver_mdmagm64.inf</c> 81 | <c>driver_mdmags64.inf</c> 82 | <c>driver_mdmairte.inf</c> 83 | <c>driver_mdmaiwa.inf</c> 84 | <c>driver_mdmaiwa3.inf</c> 85 | <c>driver_mdmaiwa4.inf</c> 86 | <c>driver_mdmaiwa5.inf</c> 87 | <c>driver_mdmaiwat.inf</c> 88 | <c>driver_mdmar1.inf</c> 89 | <c>driver_mdmarch.inf</c> 90 | <c>driver_mdmarn.inf</c> 91 | <c>driver_mdmati.inf</c> 92 | <c>driver_mdmatm2k.inf</c> 93 | <c>driver_mdmaus.inf</c> 94 | <c>driver_mdmboca.inf</c> 95 | <c>driver_mdmbsb.inf</c> 96 | <c>driver_mdmbtmdm.inf</c> 97 | <c>driver_mdmbug3.inf</c> 98 | <c>driver_mdmbw561.inf</c> 99 | <c>driver_mdmc26a.inf</c> 100 | <c>driver_mdmcdp.inf</c> 101 | <c>driver_mdmcm28.inf</c> 102 | <c>driver_mdmcodex.inf</c> 103 | <c>driver_mdmcom1.inf</c> 104 | <c>driver_mdmcommu.inf</c> 105 | <c>driver_mdmcomp.inf</c> 106 | <c>driver_mdmcpq.inf</c> 107 | <c>driver_mdmcpq2.inf</c> 108 | <c>driver_mdmcpv.inf</c> 109 | <c>driver_mdmcrtix.inf</c> 110 | <c>driver_mdmcxhv6.inf</c> 111 | <c>driver_mdmcxpv6.inf</c> 112 | <c>driver_mdmdcm5.inf</c> 113 | <c>driver_mdmdcm6.inf</c> 114 | <c>driver_mdmdf56f.inf</c> 115 | <c>driver_mdmdgitn.inf</c> 116 | <c>driver_mdmdp2.inf</c> 117 | <c>driver_mdmdsi.inf</c> 118 | <c>driver_mdmdyna.inf</c> 119 | <c>driver_mdmeiger.inf</c> 120 | <c>driver_mdmelsa.inf</c> 121 | <c>driver_mdmeric.inf</c> 122 | <c>driver_mdmeric2.inf</c> 123 | <c>driver_mdmetech.inf</c> 124 | <c>driver_mdmfj2.inf</c> 125 | <c>driver_mdmgatew.inf</c> 126 | <c>driver_mdmgcs.inf</c> 127 | <c>driver_mdmgen.inf</c> 128 | <c>driver_mdmgl001.inf</c> 129 | <c>driver_mdmgl002.inf</c> 130 | <c>driver_mdmgl003.inf</c> 131 | <c>driver_mdmgl004.inf</c> 132 | <c>driver_mdmgl005.inf</c> 133 | <c>driver_mdmgl006.inf</c> 134 | <c>driver_mdmgl007.inf</c> 135 | <c>driver_mdmgl008.inf</c> 136 | <c>driver_mdmgl009.inf</c> 137 | <c>driver_mdmgl010.inf</c> 138 | <c>driver_mdmgsm.inf</c> 139 | <c>driver_mdmhaeu.inf</c> 140 | <c>driver_mdmhandy.inf</c> 141 | <c>driver_mdmhay2.inf</c> 142 | <c>driver_mdmhayes.inf</c> 143 | <c>driver_mdminfot.inf</c> 144 | <c>driver_mdmiodat.inf</c> 145 | <c>driver_mdmirmdm.inf</c> 146 | <c>driver_mdmisdn.inf</c> 147 | <c>driver_mdmjf56e.inf</c> 148 | <c>driver_mdmke.inf</c> 149 | <c>driver_mdmkortx.inf</c> 150 | <c>driver_mdmlasat.inf</c> 151 | <c>driver_mdmlasno.inf</c> 152 | <c>driver_mdmlucnt.inf</c> 153 | <c>driver_mdmmc288.inf</c> 154 | <c>driver_mdmmcd.inf</c> 155 | <c>driver_mdmmcom.inf</c> 156 | <c>driver_mdmmct.inf</c> 157 | <c>driver_mdmmega.inf</c> 158 | <c>driver_mdmmetri.inf</c> 159 | <c>driver_mdmmhrtz.inf</c> 160 | <c>driver_mdmmhzel.inf</c> 161 | <c>driver_mdmminij.inf</c> 162 | <c>driver_mdmmod.inf</c> 163 | <c>driver_mdmmot64.inf</c> 164 | <c>driver_mdmmoto1.inf</c> 165 | <c>driver_mdmmotou.inf</c> 166 | <c>driver_mdmmts.inf</c> 167 | <c>driver_mdmneuhs.inf</c> 168 | <c>driver_mdmnis1u.inf</c> 169 | <c>driver_mdmnis2u.inf</c> 170 | <c>driver_mdmnis3t.inf</c> 171 | <c>driver_mdmnis5t.inf</c> 172 | <c>driver_mdmnokia.inf</c> 173 | <c>driver_mdmnova.inf</c> 174 | <c>driver_mdmntt1.inf</c> 175 | <c>driver_mdmnttd2.inf</c> 176 | <c>driver_mdmnttd6.inf</c> 177 | <c>driver_mdmnttme.inf</c> 178 | <c>driver_mdmnttp.inf</c> 179 | <c>driver_mdmnttp2.inf</c> 180 | <c>driver_mdmnttte.inf</c> 181 | <c>driver_mdmolic.inf</c> 182 | <c>driver_mdmomrn3.inf</c> 183 | <c>driver_mdmoptn.inf</c> 184 | <c>driver_mdmosi.inf</c> 185 | <c>driver_mdmpace.inf</c> 186 | <c>driver_mdmpenr.inf</c> 187 | <c>driver_mdmpin.inf</c> 188 | <c>driver_mdmpn1.inf</c> 189 | <c>driver_mdmpp.inf</c> 190 | <c>driver_mdmpsion.inf</c> 191 | <c>driver_mdmracal.inf</c> 192 | <c>driver_mdmrock.inf</c> 193 | <c>driver_mdmrock3.inf</c> 194 | <c>driver_mdmrock4.inf</c> 195 | <c>driver_mdmrock5.inf</c> 196 | <c>driver_mdmsier.inf</c> 197 | <c>driver_mdmsii64.inf</c> 198 | <c>driver_mdmsmart.inf</c> 199 | <c>driver_mdmsonyu.inf</c> 200 | <c>driver_mdmsun1.inf</c> 201 | <c>driver_mdmsun2.inf</c> 202 | <c>driver_mdmsupr3.inf</c> 203 | <c>driver_mdmsupra.inf</c> 204 | <c>driver_mdmsuprv.inf</c> 205 | <c>driver_mdmtdk.inf</c> 206 | <c>driver_mdmtdkj2.inf</c> 207 | <c>driver_mdmtdkj3.inf</c> 208 | <c>driver_mdmtdkj4.inf</c> 209 | <c>driver_mdmtdkj5.inf</c> 210 | <c>driver_mdmtdkj6.inf</c> 211 | <c>driver_mdmtdkj7.inf</c> 212 | <c>driver_mdmtexas.inf</c> 213 | <c>driver_mdmti.inf</c> 214 | <c>driver_mdmtkr.inf</c> 215 | <c>driver_mdmtron.inf</c> 216 | <c>driver_mdmusrf.inf</c> 217 | <c>driver_mdmusrg.inf</c> 218 | <c>driver_mdmusrgl.inf</c> 219 | <c>driver_mdmusrk1.inf</c> 220 | <c>driver_mdmusrsp.inf</c> 221 | <c>driver_mdmvdot.inf</c> 222 | <c>driver_mdmvv.inf</c> 223 | <c>driver_mdmwhql0.inf</c> 224 | <c>driver_mdmx5560.inf</c> 225 | <c>driver_mdmzoom.inf</c> 226 | <c>driver_mdmzyp.inf</c> 227 | <c>driver_mdmzyxel.inf</c> 228 | <c>driver_mdmzyxlg.inf</c> 229 | <c>driver_mgtdyn.inf</c> 230 | <c>driver_modemcsa.inf</c> 231 | <c>driver_msclmd.inf</c> 232 | <c>driver_ntprint.inf</c> 233 | <c>driver_ntprint4.inf</c> 234 | <c>driver_printqueue.inf</c> 235 | <c>driver_prnge001.inf</c> 236 | <c>driver_prnms002.inf</c> 237 | <c>driver_prnms003.inf</c> 238 | <c>driver_prnms004.inf</c> 239 | <c>driver_prnms005.inf</c> 240 | <c>driver_prnms007.inf</c> 241 | <c>driver_prnms008.inf</c> 242 | <c>driver_prnms010.inf</c> 243 | <c>driver_prnms011.inf</c> 244 | <c>driver_prnms012.inf</c> 245 | <c>driver_prnms014.inf</c> 246 | <c>driver_rawsilo.inf</c> 247 | <c>driver_rdpbus.inf</c> 248 | <c>driver_remoteposdrv.inf</c> 249 | <c>driver_scrawpdo.inf</c> 250 | <c>driver_scunknown.inf</c> 251 | <c>driver_spaceport.inf</c> 252 | <c>driver_termbus.inf</c> 253 | <c>driver_termkbd.inf</c> 254 | <c>driver_termmou.inf</c> 255 | <c>driver_tpmvsc.inf</c> 256 | <c>driver_ts_generic.inf</c> 257 | <c>driver_tsgenericusbdriver.inf</c> 258 | <c>driver_tsprint.inf</c> 259 | <c>driver_tsusbhubfilter.inf</c> 260 | <c>driver_usbcciddriver.inf</c> 261 | <c>driver_usbcir.inf</c> 262 | <c>driver_usbprint.inf</c> 263 | <c>driver_volsnap.inf</c> 264 | <c>driver_wdmvsc.inf</c> 265 | <c>driver_wfcvsc.inf</c> 266 | <c>driver_wgencounter.inf</c> 267 | <c>driver_whvcrash.inf</c> 268 | <c>driver_whyperkbd.inf</c> 269 | <c>driver_wnetvsc.inf</c> 270 | <c>driver_ws3cap.inf</c> 271 | <c>driver_wstorflt.inf</c> 272 | <c>driver_wstorvsc.inf</c> 273 | <c>driver_wudfusbcciddriver.inf</c> 274 | <c>driver_wvid.inf</c> 275 | <c>driver_wvmbus.inf</c> 276 | <c>driver_wvmbushid.inf</c> 277 | <c>driver_wvmbusvideo.inf</c> 278 | <c>driver_wvmgid.inf</c> 279 | <c>driver_wvmic.inf</c> 280 | <c>driver_wvmic_ext.inf</c> 281 | <c>driver_wvmic_vss.inf</c> 282 | <c>driver_wvpci.inf</c> 283 | <c>dynamiclighting 'Dynamic Lighting'</c> 284 | <c>e2a4f912-2574-4a75-9bb0-0d023378592b 'App Resolver'</c> 285 | <c>easeofaccessthemes 'Ease Of Access Themes'</c> 286 | <c>edgehtml32 'HTML Viewer - 32 bit'</c> 287 | <c>edgeupdate 'Microsoft Edge Update'</c> 288 | <c>edgewebview 'Microsoft Edge WebView'</c> 289 | <c>edgewebviewlegacy 'WebView2 Runtime (Legacy)'</c> 290 | <c>embeddedexperience 'Device Lockdown (Embedded Experience)'</c> 291 | <c>embeddedmode 'Embedded Mode'</c> 292 | <c>enterpriseclientsync 'Work Folders Client'</c> 293 | <c>enterprisedataprotection 'Enterprise Data Protection (EDP/WIP)'</c> 294 | <c>errorreporting 'Windows Error Reporting'</c> 295 | <c>errorreportingapi 'Windows Error Reporting API'</c> 296 | <c>eudcedit 'Private Character Editor'</c> 297 | <c>eventviewer32 'Event Viewer - 32 bit'</c> 298 | <c>f46d4000-fd22-4db4-ac8e-4e1ddde828fe 'Add Folder Suggestions dialog'</c> 299 | <c>fciclient 'File Server Resource Manager'</c> 300 | <c>firstlogonanim 'First-logon animation'</c> 301 | <c>flipgridpwa 'Flipgrid PWA (InboxApp)'</c> 302 | <c>fontpreviewer32 'Font previewer - 32 bit'</c> 303 | <c>fsmgmt32 'Shared Folders UI - 32 bit'</c> 304 | <c>gameexplorer 'Game Explorer'</c> 305 | <c>hbaapi 'Host Bus Adapter (HBA) API'</c> 306 | <c>help 'Windows Help content'</c> 307 | <c>hotpatch 'Windows Hotpatching'</c> 308 | <c>hwsupport_floppy 'Floppy disk'</c> 309 | <c>hwsupport_infrared 'Infrared devices'</c> 310 | <c>hwsupport_internetprintingclient 'Internet Printing Client'</c> 311 | <c>hwsupport_modem 'Modem'</c> 312 | <c>hwsupport_modemsettings 'Shared modem settings (mdmgl*.inf)'</c> 313 | <c>hwsupport_printer 'Printing'</c> 314 | <c>hwsupport_scanner 'Scanner'</c> 315 | <c>hwsupport_smartcard 'Smartcard'</c> 316 | <c>hwsupport_telephony 'Telephony'</c> 317 | <c>hwsupport_tv 'TV Tuner codecs and support'</c> 318 | <c>iis 'Internet Information Server (IIS)'</c> 319 | <c>indeo 'Intel Indeo Codecs'</c> 320 | <c>insiderhub 'Windows Insider Program'</c> 321 | <c>internetexplorer 'Internet Explorer'</c> 322 | <c>internetexplorer32 'Internet Explorer - 32 bit'</c> 323 | <c>iscsi 'iSCSI Initiator'</c> 324 | <c>isolatedusermode 'Virtualization-based security (VBS)'</c> 325 | <c>kerberos32 'Kerberos Client - 32 bit'</c> 326 | <c>kerneldebug 'Kernel Debugging'</c> 327 | <c>la57 '57-bit Linear Addressing'</c> 328 | <c>lcu 'Cumulative Update cache (LCU)'</c> 329 | <c>livecaptions 'Live Captions'</c> 330 | <c>location 'Location Service'</c> 331 | <c>lockscreens 'Lock Screen backgrounds'</c> 332 | <c>lusrmgr32 'Local Users and Groups Manager - 32 bit'</c> 333 | <c>lxss 'Windows Subsystem for Linux'</c> 334 | <c>mail 'Windows Mail'</c> 335 | <c>mailcommdll 'Windows Mail Communications Library'</c> 336 | <c>manifestbackup 'Manifest Backup (WinSxS\Backup)'</c> 337 | <c>mapcontrol 'Map Control'</c> 338 | <c>mediaplayer 'Windows Media Player'</c> 339 | <c>mediaplayer32 'Windows Media Player - 32 bit'</c> 340 | <c>mediaplayernetworksharing 'WMP Network Sharing Service'</c> 341 | <c>mediaplayernetworksharing32 'WMP Network Sharing Service - 32 bit'</c> 342 | <c>messagingsvc 'Messaging Service'</c> 343 | <c>microsoft.applicationcompatibilityenhancements 'Windows Application Compatibility Enhancements'</c> 344 | <c>microsoft.asynctextservice 'AsyncTextService'</c> 345 | <c>microsoft.av1videoextension 'AV1 Video Extension'</c> 346 | <c>microsoft.avcencodervideoextension 'AVC Encoder Video Extension'</c> 347 | <c>microsoft.bingnews 'Microsoft News'</c> 348 | <c>microsoft.bingsearch 'Microsoft Bing Search'</c> 349 | <c>microsoft.bingweather 'MSN Weather'</c> 350 | <c>microsoft.bioenrollment 'Windows Hello Setup'</c> 351 | <c>microsoft.creddialoghost 'Credential Dialog'</c> 352 | <c>microsoft.ecapp 'Eye Control'</c> 353 | <c>microsoft.gamingapp 'Xbox App'</c> 354 | <c>microsoft.gethelp 'Get Help'</c> 355 | <c>microsoft.heifimageextension 'HEIF Image Extensions'</c> 356 | <c>microsoft.hevcvideoextension 'HEVC Video Extensions from Device Manufacturer'</c> 357 | <c>microsoft.lockapp 'Windows Default Lock Screen'</c> 358 | <c>microsoft.microsoftedge 'Microsoft Edge (Legacy)'</c> 359 | <c>microsoft.microsoftedge.stable 'Microsoft Edge (Chromium)'</c> 360 | <c>microsoft.microsoftedgedevtoolsclient 'Microsoft Edge DevTools Client'</c> 361 | <c>microsoft.microsoftofficehub 'Microsoft 365 (Office)'</c> 362 | <c>microsoft.microsoftsolitairecollection 'Solitaire &amp; Casual Games'</c> 363 | <c>microsoft.microsoftstickynotes 'Microsoft Sticky Notes'</c> 364 | <c>microsoft.mpeg2videoextension 'MPEG-2 Video Extension'</c> 365 | <c>microsoft.outlookforwindows 'Outlook for Windows'</c> 366 | <c>microsoft.powerautomatedesktop 'Power Automate'</c> 367 | <c>microsoft.rawimageextension 'Raw Image Extension'</c> 368 | <c>microsoft.screensketch 'Snipping Tool'</c> 369 | <c>microsoft.sechealthui 'Windows Defender'</c> 370 | <c>microsoft.storepurchaseapp 'Store Experience Host'</c> 371 | <c>microsoft.todos 'Microsoft To Do'</c> 372 | <c>microsoft.vp9videoextensions 'VP9 Video Extensions'</c> 373 | <c>microsoft.webmediaextensions 'Web Media Extensions'</c> 374 | <c>microsoft.webpimageextension 'Webp Image Extensions'</c> 375 | <c>microsoft.win32webviewhost 'Desktop App Web Viewer'</c> 376 | <c>microsoft.windows.apprep.chxapp 'SmartScreen'</c> 377 | <c>microsoft.windows.assignedaccesslockapp 'Assigned Access Lock app'</c> 378 | <c>microsoft.windows.augloop.cbs</c> 379 | <c>microsoft.windows.capturepicker 'Capture Picker'</c> 380 | <c>microsoft.windows.contentdeliverymanager 'Content Delivery Manager'</c> 381 | <c>microsoft.windows.devhome 'Dev Home'</c> 382 | <c>microsoft.windows.narratorquickstart 'Narrator'</c> 383 | <c>microsoft.windows.oobenetworkcaptiveportal 'Captive Portal Flow'</c> 384 | <c>microsoft.windows.oobenetworkconnectionflow 'Network Connection Flow'</c> 385 | <c>microsoft.windows.parentalcontrols 'Microsoft Family Safety'</c> 386 | <c>microsoft.windows.peopleexperiencehost 'Windows Shell Experience'</c> 387 | <c>microsoft.windows.photos 'Microsoft Photos'</c> 388 | <c>microsoft.windows.pinningconfirmationdialog 'PinningConfirmationDialog'</c> 389 | <c>microsoft.windows.printqueueactioncenter 'PrintQueueActionCenter'</c> 390 | <c>microsoft.windows.secureassessmentbrowser 'Take a Test'</c> 391 | <c>microsoft.windows.xgpuejectdialog 'Safely Remove Device'</c> 392 | <c>microsoft.windowsalarms 'Windows Clock'</c> 393 | <c>microsoft.windowscamera 'Windows Camera'</c> 394 | <c>microsoft.windowsfeedbackhub 'Feedback Hub'</c> 395 | <c>microsoft.windowsnotepad 'Windows Notepad'</c> 396 | <c>microsoft.windowssoundrecorder 'Windows Sound Recorder'</c> 397 | <c>microsoft.xbox.tcui 'Xbox TCUI'</c> 398 | <c>microsoft.xboxgamecallableui 'Xbox Game UI'</c> 399 | <c>microsoft.xboxgamingoverlay 'Game Bar'</c> 400 | <c>microsoft.xboxspeechtotextoverlay 'Game Speech Window'</c> 401 | <c>microsoft.yourphone 'Phone Link'</c> 402 | <c>microsoft.zunemusic 'Windows Media Player'</c> 403 | <c>microsoftcorporationii.quickassist 'Quick Assist'</c> 404 | <c>microsoftwindows.client.aix 'Windows Copilot (Windows Feature Experience Pack)'</c> 405 | <c>microsoftwindows.client.photon 'Windows Feature Experience Pack - Photon'</c> 406 | <c>microsoftwindows.client.webexperience 'Windows Web Experience Pack'</c> 407 | <c>microsoftwindows.crossdevice 'Cross Device Experience Host'</c> 408 | <c>mixedreality 'Windows Mixed Reality'</c> 409 | <c>mmc32 'Microsoft Management Console (MMC) - 32 bit'</c> 410 | <c>mpe 'Microsoft Privacy Engine'</c> 411 | <c>msmq 'Microsoft Message Queue (MSMQ)'</c> 412 | <c>msteams 'Microsoft Teams'</c> 413 | <c>ndu 'Network Data Usage Monitoring Driver'</c> 414 | <c>netbios 'NetBIOS over TCP transport'</c> 415 | <c>nfc 'Near Field Communication (NFC)'</c> 416 | <c>notepad 'Notepad (Legacy)'</c> 417 | <c>offlinefiles 'Offline Files'</c> 418 | <c>onedrive</c> 419 | <c>oobefodsetup 'Out-of-box Experience (OOBE) - FOD Setup'</c> 420 | <c>openssh</c> 421 | <c>otherthemes 'Windows Personalization themes'</c> 422 | <c>outlookpwa 'Outlook PWA (InboxApp)'</c> 423 | <c>payments</c> 424 | <c>pdfreader 'Windows Reader (PDF)'</c> 425 | <c>penservice 'Pen Service'</c> 426 | <c>phonesvc 'Phone Service'</c> 427 | <c>photoviewer 'Photo Viewer'</c> 428 | <c>photoviewer32 'Photo Viewer - 32 bit'</c> 429 | <c>pos 'Point of Service (POS)'</c> 430 | <c>powershellise 'PowerShell ISE'</c> 431 | <c>powershellise32 'PowerShell ISE - 32 bit'</c> 432 | <c>printmgmt 'Print Management'</c> 433 | <c>printtopdf 'Print to PDF'</c> 434 | <c>printworkflow 'Print Workflow Service'</c> 435 | <c>projfs 'Projected File System (ProjFS)'</c> 436 | <c>pushtoinstall 'Windows PushToInstall Service'</c> 437 | <c>rasauto 'Remote Access Auto Connection Manager'</c> 438 | <c>rdc 'Remote Differential Compression (RDC)'</c> 439 | <c>rdmaping 'Remote Direct Memory Access (RDMA) ping tool'</c> 440 | <c>rdpclient 'Remote Desktop Client'</c> 441 | <c>rdpclient32 'Remote Desktop Client - 32 bit'</c> 442 | <c>rdpserver 'Remote Desktop Server'</c> 443 | <c>rdpserverlic 'Remote Desktop Licensing'</c> 444 | <c>refs 'Resilient File System (ReFS)'</c> 445 | <c>regedit32 'Registry Editor - 32 bit'</c> 446 | <c>remoteactivex 'Remote Desktop Services ActiveX Client'</c> 447 | <c>remoteactivex32 'Remote Desktop Services ActiveX Client - 32 bit'</c> 448 | <c>remoteassistance 'Remote Assistance'</c> 449 | <c>remotefx</c> 450 | <c>remoteportredirector 'Remote Desktop Services Port Redirector'</c> 451 | <c>remoteregistry 'Remote Registry'</c> 452 | <c>retaildemo 'Retail Demo Content'</c> 453 | <c>rotationmanager 'Auto-Rotation Manager'</c> 454 | <c>screensavers</c> 455 | <c>servicesmmc32 'Services (management console) - 32 bit'</c> 456 | <c>sharedpc 'Shared PC mode'</c> 457 | <c>simpletcp 'Simple TCP/IP services'</c> 458 | <c>skypeortc 'Skype ORTC'</c> 459 | <c>sleepstudy 'Sleep Study'</c> 460 | <c>smbdirect 'SMB Direct (RDMA)'</c> 461 | <c>smbv1 'SMB v1'</c> 462 | <c>smbwitnessclientapi 'SMB Witness Client API'</c> 463 | <c>soundsdefault 'Sounds (Default)'</c> 464 | <c>soundthemes 'Sound Themes'</c> 465 | <c>sourcessxsdir 'Manual feature repository'</c> 466 | <c>srumon 'Data Usage service'</c> 467 | <c>startexperiencesapp 'Start Experiences (InboxApp)'</c> 468 | <c>stepsrecorder 'Steps Recorder'</c> 469 | <c>storageqos 'Storage Quality of Service (Storage QoS)'</c> 470 | <c>supportdir 'Support directory'</c> 471 | <c>synccenter 'Sync Center'</c> 472 | <c>tabletpc 'Tablet PC'</c> 473 | <c>targetedcontent32 'Targeted Content Service - 32 bit'</c> 474 | <c>taskmanager32 'Task Manager - 32 bit'</c> 475 | <c>taskschdmsc32 'Task Scheduler (management console) - 32 bit'</c> 476 | <c>telnetclient 'Telnet Client'</c> 477 | <c>tempcache 'Cache and temp files'</c> 478 | <c>tftpclient 'TFTP client'</c> 479 | <c>timetraveldebugger 'Time Travel Debugger (TTD)'</c> 480 | <c>tpmmmc32 'Trusted Platform Module (TPM) (management console) - 32 bit'</c> 481 | <c>troubleshootingsvc 'Recommended Troubleshooting service'</c> 482 | <c>unexpectedcodepath 'Unexpected Codepath'</c> 483 | <c>universalprintsvc 'Universal Print Management Service'</c> 484 | <c>userdeviceregistration 'User Device Registration'</c> 485 | <c>waasassessment 'Windows Update Medic Service'</c> 486 | <c>wallet 'Wallet Service'</c> 487 | <c>wallpaperdefault 'Wallpaper (Default)'</c> 488 | <c>wallpapers 'Wallpapers (Themes)'</c> 489 | <c>webthreatdefense 'Web Threat Defense Service'</c> 490 | <c>webview2core 'WebView2 Runtime (Core)'</c> 491 | <c>wfmmc32 'Windows Firewall (management console) - 32 bit'</c> 492 | <c>whesvc 'Windows Health and Optimized Experiences'</c> 493 | <c>widgetsplatformruntimeapp 'Widgets Platform Runtime (InboxApp)'</c> 494 | <c>windows.cbspreview 'Windows Barcode Preview'</c> 495 | <c>windows.devicesflow32 'Devices Flow - 32 bit'</c> 496 | <c>windows.printdialog 'Windows Print'</c> 497 | <c>windowstogo 'Windows To Go'</c> 498 | <c>windowsupdate 'Windows Update'</c> 499 | <c>xbox 'Xbox - Core'</c> 500 | </RemoveComponents> 501 | <Compatibility protectHidden="true"> 502 | <ComponentFeatures> 503 | <Feature enabled="no">AppGuard</Feature> 504 | <Feature enabled="no">Battle.net</Feature> 505 | <Feature enabled="no">YubiKey</Feature> 506 | <Feature enabled="yes">Bluetooth</Feature> 507 | <Feature enabled="yes">USBCamera</Feature> 508 | <Feature enabled="no">CapFrameX</Feature> 509 | <Feature enabled="yes">Discord</Feature> 510 | <Feature enabled="no">Docker</Feature> 511 | <Feature enabled="no">EAC</Feature> 512 | <Feature enabled="yes">FileSharing</Feature> 513 | <Feature enabled="no">Hyper-V</Feature> 514 | <Feature enabled="no">iCloud</Feature> 515 | <Feature enabled="no">Kaspersky</Feature> 516 | <Feature enabled="yes">OfficeSupport</Feature> 517 | <Feature enabled="yes">AppxSupport</Feature> 518 | <Feature enabled="yes">Netflix</Feature> 519 | <Feature enabled="no">NetworkDiscovery</Feature> 520 | <Feature enabled="yes">NightLight</Feature> 521 | <Feature enabled="yes">NvidiaSetup</Feature> 522 | <Feature enabled="no">OOBE</Feature> 523 | <Feature enabled="no">Printing</Feature> 524 | <Feature enabled="no">Recommended-All</Feature> 525 | <Feature enabled="no">RDPServer</Feature> 526 | <Feature enabled="no">SamsungSwitch</Feature> 527 | <Feature enabled="no">Scanning</Feature> 528 | <Feature enabled="yes">ServicingStack</Feature> 529 | <Feature enabled="yes">ShellSearchSupport</Feature> 530 | <Feature enabled="no">SnippingTool</Feature> 531 | <Feature enabled="yes">Spotify</Feature> 532 | <Feature enabled="yes">SFC</Feature> 533 | <Feature enabled="yes">DefaultFonts</Feature> 534 | <Feature enabled="no">SafeMode</Feature> 535 | <Feature enabled="yes">TeamViewer</Feature> 536 | <Feature enabled="no">Recommended-Tablet</Feature> 537 | <Feature enabled="no">HostRefresh</Feature> 538 | <Feature enabled="no">USBModem</Feature> 539 | <Feature enabled="yes">USB</Feature> 540 | <Feature enabled="yes">VideoPlayback</Feature> 541 | <Feature enabled="no">VPN</Feature> 542 | <Feature enabled="no">VisualStudio</Feature> 543 | <Feature enabled="no">VSS</Feature> 544 | <Feature enabled="yes">Activation</Feature> 545 | <Feature enabled="yes">WinSetup</Feature> 546 | <Feature enabled="yes">WindowsStore</Feature> 547 | <Feature enabled="no">WindowsUpdate</Feature> 548 | <Feature enabled="yes">WLAN</Feature> 549 | </ComponentFeatures> 550 | <MachineDrivers> 551 | <Machine enabled="yes">HostMachine</Machine> 552 | <Machine enabled="no">Hyper-V VM</Machine> 553 | <Machine enabled="no">Parallels VM</Machine> 554 | <Machine enabled="no">Virtual Box VM</Machine> 555 | <Machine enabled="no">VMware VM</Machine> 556 | </MachineDrivers> 557 | </Compatibility> 558 | <Features> 559 | <Feature name="Windows.Kernel.LA57~~~~0.0.1.0">false</Feature> 560 | <Feature name="Microsoft.Windows.Wifi.Client.Broadcom.Bcmpciedhd63~~~~0.0.1.0">false</Feature> 561 | <Feature name="Microsoft.Windows.Wifi.Client.Broadcom.Bcmwl63a~~~~0.0.1.0">false</Feature> 562 | <Feature name="Microsoft.Windows.Wifi.Client.Broadcom.Bcmwl63al~~~~0.0.1.0">false</Feature> 563 | <Feature name="DirectX.Configuration.Database~~~~0.0.1.0">false</Feature> 564 | <Feature name="OneCoreUAP.OneSync~~~~0.0.1.0">false</Feature> 565 | <Feature name="Microsoft.Wallpapers.Extended~~~~0.0.1.0">false</Feature> 566 | <Feature name="Hello.Face.20134~~~~0.0.1.0">false</Feature> 567 | <Feature name="Microsoft.Windows.Ethernet.Client.Intel.E1i68x64~~~~0.0.1.0">false</Feature> 568 | <Feature name="Microsoft.Windows.Ethernet.Client.Intel.E2f68~~~~0.0.1.0">false</Feature> 569 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwbw02~~~~0.0.1.0">false</Feature> 570 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwew00~~~~0.0.1.0">false</Feature> 571 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwew01~~~~0.0.1.0">false</Feature> 572 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwlv64~~~~0.0.1.0">false</Feature> 573 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwns64~~~~0.0.1.0">false</Feature> 574 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwsw00~~~~0.0.1.0">false</Feature> 575 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwtw02~~~~0.0.1.0">false</Feature> 576 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwtw04~~~~0.0.1.0">false</Feature> 577 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwtw06~~~~0.0.1.0">false</Feature> 578 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwtw08~~~~0.0.1.0">false</Feature> 579 | <Feature name="Microsoft.Windows.Wifi.Client.Intel.Netwtw10~~~~0.0.1.0">false</Feature> 580 | <Feature name="Microsoft.Windows.Wifi.Client.Marvel.Mrvlpcie8897~~~~0.0.1.0">false</Feature> 581 | <Feature name="MathRecognizer~~~~0.0.1.0">false</Feature> 582 | <Feature name="Edge.Webview2.Platform~~~~">false</Feature> 583 | <Feature name="Microsoft.Windows.Notepad.System~~~~0.0.1.0">false</Feature> 584 | <Feature name="Print.Management.Console~~~~0.0.1.0">false</Feature> 585 | <Feature name="Microsoft.Windows.Wifi.Client.Qualcomm.Athw8x~~~~0.0.1.0">false</Feature> 586 | <Feature name="Microsoft.Windows.Wifi.Client.Qualcomm.Athwnx~~~~0.0.1.0">false</Feature> 587 | <Feature name="Microsoft.Windows.Wifi.Client.Qualcomm.Qcamain10x64~~~~0.0.1.0">false</Feature> 588 | <Feature name="Microsoft.Windows.Wifi.Client.Ralink.Netr28x~~~~0.0.1.0">false</Feature> 589 | <Feature name="Microsoft.Windows.Ethernet.Client.Realtek.Rtcx21x64~~~~0.0.1.0">false</Feature> 590 | <Feature name="Microsoft.Windows.Wifi.Client.Realtek.Rtl8192se~~~~0.0.1.0">false</Feature> 591 | <Feature name="Microsoft.Windows.Wifi.Client.Realtek.Rtwlane~~~~0.0.1.0">false</Feature> 592 | <Feature name="Microsoft.Windows.Wifi.Client.Realtek.Rtwlane01~~~~0.0.1.0">false</Feature> 593 | <Feature name="Microsoft.Windows.Wifi.Client.Realtek.Rtwlane13~~~~0.0.1.0">false</Feature> 594 | <Feature name="Microsoft.Windows.Ethernet.Client.Vmware.Vmxnet3~~~~0.0.1.0">false</Feature> 595 | <Feature name="Media.WindowsMediaPlayer~~~~0.0.12.0">false</Feature> 596 | <Feature name="Windows.WorkFolders.Client~~~~">false</Feature> 597 | </Features> 598 | <Packages> 599 | <Options> 600 | <CleanHotfixedLeftovers>4</CleanHotfixedLeftovers> 601 | <OptimizeAppX>true</OptimizeAppX> 602 | <UpdateBootManager>false</UpdateBootManager> 603 | </Options> 604 | </Packages> 605 | <Commands> 606 | <PostUpdates> 607 | <!--<Command>cmd /c echo Example from [MOUNTDIR]\Windows &amp; pause</Command>--> 608 | <!--<Command>dism /image:[MOUNTDIR] /get-intl</Command>--> 609 | </PostUpdates> 610 | </Commands> 611 | <Drivers> 612 | <Options> 613 | <ReuseDriverCache>false</ReuseDriverCache> 614 | <ShowHidden>true</ShowHidden> 615 | </Options> 616 | </Drivers> 617 | <Unattended mode="0"> 618 | <AnswerFileLocationPanther>false</AnswerFileLocationPanther> 619 | <AnswerFileLocationBoot>false</AnswerFileLocationBoot> 620 | <SaveBothArch>false</SaveBothArch> 621 | <EditionPrompt>false</EditionPrompt> 622 | <settings pass="oobeSystem"> 623 | <component name="Microsoft-Windows-International-Core"> 624 | <InputLocale>0409:00000409</InputLocale> 625 | <SystemLocale>en-US</SystemLocale> 626 | <UILanguage>en-US</UILanguage> 627 | <UILanguageFallback>en-US</UILanguageFallback> 628 | <UserLocale>en-US</UserLocale> 629 | </component> 630 | <component name="Microsoft-Windows-Shell-Setup"> 631 | <TimeZone>Eastern Standard Time</TimeZone> 632 | <AutoLogon> 633 | <Enabled>true</Enabled> 634 | <LogonCount>9999999</LogonCount> 635 | <Username>NTLiteUser</Username> 636 | <Password> 637 | <PlainText>true</PlainText> 638 | <Value></Value> 639 | </Password> 640 | </AutoLogon> 641 | <OOBE> 642 | <HideEULAPage>true</HideEULAPage> 643 | <HideLocalAccountScreen>true</HideLocalAccountScreen> 644 | <HideOnlineAccountScreens>true</HideOnlineAccountScreens> 645 | <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE> 646 | <NetworkLocation>Home</NetworkLocation> 647 | <ProtectYourPC>3</ProtectYourPC> 648 | </OOBE> 649 | <UserAccounts> 650 | <LocalAccounts> 651 | <LocalAccount> 652 | <DisplayName>NTLite User</DisplayName> 653 | <Group>Administrators</Group> 654 | <Name>NTLiteUser</Name> 655 | <Password> 656 | <PlainText>true</PlainText> 657 | <Value></Value> 658 | </Password> 659 | </LocalAccount> 660 | </LocalAccounts> 661 | </UserAccounts> 662 | </component> 663 | </settings> 664 | <settings pass="specialize"> 665 | <component name="Microsoft-Windows-Security-SPP-UX"> 666 | <SkipAutoActivation>true</SkipAutoActivation> 667 | </component> 668 | <component name="Microsoft-Windows-Shell-Setup"> 669 | <ComputerName>DESKTOP-D0UCH3</ComputerName> 670 | </component> 671 | </settings> 672 | <settings pass="windowsPE"> 673 | <component name="Microsoft-Windows-International-Core-WinPE"> 674 | <InputLocale>0409:00000409</InputLocale> 675 | <SystemLocale>en-US</SystemLocale> 676 | <UILanguage>en-US</UILanguage> 677 | <UILanguageFallback>en-US</UILanguageFallback> 678 | <UserLocale>en-US</UserLocale> 679 | <SetupUILanguage> 680 | <UILanguage>en-US</UILanguage> 681 | </SetupUILanguage> 682 | </component> 683 | <component name="Microsoft-Windows-Setup"> 684 | <Diagnostics> 685 | <OptIn>false</OptIn> 686 | </Diagnostics> 687 | <DynamicUpdate> 688 | <Enable>false</Enable> 689 | <WillShowUI>OnError</WillShowUI> 690 | </DynamicUpdate> 691 | <ImageInstall> 692 | <OSImage> 693 | <WillShowUI>OnError</WillShowUI> 694 | <InstallFrom> 695 | <MetaData> 696 | <Key>/IMAGE/INDEX</Key> 697 | <Value>1</Value> 698 | </MetaData> 699 | </InstallFrom> 700 | </OSImage> 701 | </ImageInstall> 702 | <UserData> 703 | <AcceptEula>true</AcceptEula> 704 | <ProductKey> 705 | <Key></Key> 706 | </ProductKey> 707 | </UserData> 708 | </component> 709 | </settings> 710 | </Unattended> 711 | <Tweaks> 712 | <Settings> 713 | <TweakGroup name="DesktopTweaks"> 714 | <Tweak name="Keyboard\PrintScreenKeyForSnippingEnabled">0</Tweak> 715 | </TweakGroup> 716 | </Settings> 717 | <Services></Services> 718 | <ExtraServices></ExtraServices> 719 | <ScheduledTasks></ScheduledTasks> 720 | </Tweaks> 721 | <ApplyOptions> 722 | <ImageTasks> 723 | <Task>imageSaveRebuild</Task> 724 | <Task>imageFormatWim</Task> 725 | </ImageTasks> 726 | <AutoIsoFile>NTLite.iso</AutoIsoFile> 727 | <AutoIsoLabel>NTLite</AutoIsoLabel> 728 | <AutoSplitSize>4000</AutoSplitSize> 729 | </ApplyOptions> 730 | <Execution BeforeLogonMode="0"> 731 | <Remove></Remove> 732 | <Change></Change> 733 | <Add></Add> 734 | </Execution> 735 | <Registry></Registry> 736 | </Preset> 737 | --------------------------------------------------------------------------------