Compare commits

..

No commits in common. "master" and "20H2v1.11" have entirely different histories.

167 changed files with 9096 additions and 18660 deletions

2
.gitignore vendored
View File

@ -10,5 +10,5 @@ distribution
SOFTWAREBKP
tmp/
temp/
custom/
company/

View File

@ -28,7 +28,7 @@ for %%S in (
mount-image.cmd
) do (
echo ########## calling [ %%S ] ##########
call %%S || ( cd .. ; exit /b )
call %%S || ( cd .. ; exit /b )
echo.
)
@ -39,7 +39,7 @@ if /I %ARG1% == /R (
)
echo ########## calling [ finish-image.cmd ] ##########
call finish-image.cmd || ( cd .. ; exit /b )
call finish-image.cmd || ( cd .. ; exit /b )
echo.
rem go back ...

View File

@ -2,11 +2,6 @@
set T=c:\TEMP
set DPARTSCRIPT=%T%\diskpart.txt
rem set name for media ...
for /f "tokens=2 delims==" %%a in ('wmic OS Get localdatetime /value') do set "dt=%%a"
set "YY=%dt:~2,2%" & set "MM=%dt:~4,2%" & set "DD=%dt:~6,2%"
set OSLABEL=W10-%YY%%MM%%DD%
rem create temp directory ...
mkdir %T% 1>nul 2>nul
@ -15,6 +10,13 @@ echo Format Media ...
echo ====================
echo.
echo IMPORTANT HINT:
echo How is your target media formatted?
echo - use "exfat" for BIOS based installations only!
echo - use "fat32" for UEFI based installations only!
echo REASON: UEFI cannot read "exfat" filesystems and Windows setup will throw error code: 0x80042565
echo.
echo Showing disk list ...
> %DPARTSCRIPT% (
@echo.list disk
@ -44,11 +46,6 @@ set DISK=
goto askdisk
:CONT1
echo.
echo IMPORTANT: USE === fat32 === for UEFI systems!
echo WARNING: DO NOT(!) USE [ exfat ] for UEFI boot!
echo.
set FS=fat32
:askfs
echo.
@ -59,8 +56,6 @@ set FS=fat32
GOTO CONT2
)
if /i "%FS%" EQU "exfat" (
echo IMPORTANT: some old BIOS versions can't use exfat!
echo WARNING: UEFI BIOS can't use exfat for booting!
GOTO CONT2
)
if /i "%FS%" EQU "" (
@ -93,7 +88,7 @@ set SIZE=32768
:CONT3
echo.
set LABEL=%OSLABEL%
set LABEL=W10-20H2
set /p LABEL="Please enter a label for the new disk [%LABEL%] : "
echo WARNING ! This will DELETE ALL data on disk number [%DISK%]

View File

@ -1,12 +1,12 @@
@echo off
set T=c:\temp
set W10=c:\TEMP\W10
set SOURCES=%W10%\sources
set BOOTFILE=boot.wim
set IMAGEFILE=install.wim
set IMAGEFILE2=install.swm
set SCRIPT_SETTINGS=scripts\settings.cmd
set CUSTOM_SETTINGS=custom\settings.cmd
set SNAPCONTROL_INI=custom\snapcontrol.ini
set COMPANY_SETTINGS=company\settings.cmd
set FOURGB=4294967296
IF %1.==. GOTO USAGE
@ -31,9 +31,17 @@ if NOT EXIST %DRIVE% (
echo using drive [ %DRIVE% ] ...
echo.
echo disabling Windows defender for PATH [ %DRIVE% ] ...
powershell -inputformat none -outputformat none -NonInteractive -Command Add-MpPreference -ExclusionPath %DRIVE%
echo.
rem get drive type (is it fat32 ?) ...
for /f "tokens=5" %%A in ('@fsutil fsinfo volumeinfo %DRIVE%^|findstr /B "File System Name : "') do (@set DRIVETYPE=%%A)
echo DRIVETPYE = [ %DRIVETYPE% ]
rem check SOURCE for files LARGER 4 GB in case FAT32 was chosen ...
if /i "%DRIVETYPE%" EQU "fat32" (
for /f "tokens=*" %%F in ('"dir /S /B /A-D %W10%"') do if %%~zF GTR %FOURGB% (
echo ERROR: The file [ %%F : %%~zF bytes ] is greater than 4GB in size - cannot copy this to a FAT32 filesystem!
exit /b
)
)
if NOT EXIST %SOURCES%\%BOOTFILE% (
echo DOH! no %BOOTFILE% in [ %SOURCES% ] found
@ -41,10 +49,9 @@ if NOT EXIST %SOURCES%\%BOOTFILE% (
)
if NOT EXIST %SOURCES%\%IMAGEFILE% (
if NOT EXIST %SOURCES%\%IMAGEFILE2% (
echo DOH! no %IMAGEFILE% OR %IMAGEFILE2% in [ %SOURCES% ] found
exit /b
)
echo DOH! no %IMAGE% in [ %SOURCES% ] found
exit /b
)
rem =====
@ -54,15 +61,6 @@ rem =====
echo copying all files in [ %W10% ] to drive %DRIVE% ...
robocopy %W10%\ %DRIVE% /MIR /256 /NDL /R:1 /J /XX
rem check for existence of install.wim in case FAT32 was chosen ...
if NOT EXIST %DRIVE%\sources\%IMAGEFILE% (
if NOT EXIST %DRIVE%\sources\%IMAGEFILE2% (
echo ERROR ON COPY: no %IMAGEFILE% or %IMAGEFILE2% in [ %DRIVE%\sources ] found!
echo HINT: FAT32 cannot handle files larger 4 GB!
exit /b
)
)
:CONT
if EXIST tools (
echo.
@ -77,7 +75,7 @@ if EXIST software (
/XF *.iso /XF *.txt /XF *.cmd /XF *.csv /XF .gitignore /XD .git
)
for %%P in (drivers scripts source optional personal apps custom) do (
for %%P in (drivers scripts source optional personal company apps) do (
if EXIST %%P (
echo.
echo copying folder [ %%P ] to %DRIVE%\tools ...
@ -94,33 +92,20 @@ echo.
echo putting copytools script to %DRIVE% ...
copy /Y image\CopyTools.cmd %DRIVE%\
echo.
echo removing hidden attribute from tools folder ...
rem remove hidden attribute from tools folder ...
attrib -H %DRIVE%\tools
echo.
echo removing passwords from settings.cmd config files ...
rem remove passwords from settings.cmd config files ...
for %%A in (
%DRIVE%\tools\%SCRIPT_SETTINGS%
%DRIVE%\tools\%CUSTOM_SETTINGS%
%DRIVE%\tools\%COMPANY_SETTINGS%
) do (
if EXIST %%A (
tools\searchreplace %%A "^.*SET.*LOCALADMIN_PASSWORD.*=.*" "set localadmin_password=DELETED"
)
)
echo.
echo removing mail password from snapcontrol.ini
if EXIST %DRIVE%\tools\%SNAPCONTROL_INI% (
tools\searchreplace %DRIVE%\tools\%SNAPCONTROL_INI% "^.*MAILPASS.*=.*" "MailPass = DELETED"
)
echo.
echo CLEANUP ...
del /F /Q %DRIVE%\tools\custom\ftpsettings.cmd
del /F /Q %DRIVE%\Auto-Saved*.*
del /F /Q %DRIVE%\NTLite.log
echo.
echo ======
echo READY.

View File

@ -1,11 +1,6 @@
@echo off
rem set name for media ...
for /f "tokens=2 delims==" %%a in ('wmic OS Get localdatetime /value') do set "dt=%%a"
set "YY=%dt:~2,2%" & set "MM=%dt:~4,2%" & set "DD=%dt:~6,2%"
set OSLABEL=W10-%YY%%MM%%DD%
set OSCDPATH="%ProgramFiles(x86)%\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools\amd64\Oscdimg"
set OSLABEL=WIN10-AUTO
set ISOFILE=%SystemDrive%\temp\%OSLABEL%.iso
IF %1.==. GOTO USAGE
@ -23,7 +18,6 @@ if /I %DRIVE% == %SystemDrive% (
)
echo using drive [ %DRIVE% ] ...
echo.
if NOT EXIST %DRIVE% (
echo ERROR: drive %DRIVE% not found!
@ -42,12 +36,6 @@ if EXIST %ISOFILE% (
exit /b
)
if NOT EXIST %OSCDPATH%\oscdimg.exe (
echo ERROR: cannot find oscdimg.exe!
echo HINT: is "Assessment and Deployment Kit (ADK)" installed?
exit /b
)
%OSCDPATH%\oscdimg -l%OSLABEL% -m -u2 -b%OSCDPATH%\etfsboot.com %DRIVE%\ %ISOFILE%
echo.

View File

@ -218,7 +218,7 @@ powershell -Command "Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope LocalMac
cd /D %USERPROFILE%
mkdir workspace\git
cd workspace\git
git clone https://gitea.exabyte-systems.com/WINDOWS/w10install.git
git clone https://gitea.exabyte.systems/WINDOWS/w10install.git
cd w10install
```
@ -230,7 +230,7 @@ You can download all the needed software packages with the script "01_DownloadAl
To do this execute:
```dos
cd /D %USERPROFILE%\workspace\w10install
cd /D %USERPROFILE%\workspace\git\w10install
01_DownloadAll.cmd
```
@ -244,7 +244,7 @@ The "basic" software is needed to make this work.
Execute:
```dos
cd /D %USERPROFILE%\workspace\w10install\software
cd /D %USERPROFILE%\workspace\git\w10install\software
download-from-source.cmd basic
```
@ -258,7 +258,7 @@ This contains firefox and some addons ...
To download it execute:
```dos
cd /D %USERPROFILE%\workspace\w10install\software
cd /D %USERPROFILE%\workspace\git\w10install\software
download-from-source.cmd browser
```
@ -272,7 +272,7 @@ This contains optional software. For e.g.: Purebasic, TotalCommander, em-Client,
To download it execute:
```dos
cd /D %USERPROFILE%\workspace\w10install\software
cd /D %USERPROFILE%\workspace\git\w10install\software
download-from-source.cmd optional
```
@ -284,7 +284,11 @@ Notice: Purebasic is needed to compile the software in the folder "source". Thes
## 4.4 Windows 10 ISO file
My actual work is based on the English version of Windows LTSC 21H2 64-bit. So we will need a Windows 10 LTSC ISO-file. Get it from here: https://www.microsoft.com/en-us/evalcenter/download-windows-10-enterprise.
My actual work is based on the English version of Windows 20H2 v1 64-bit. So we will need the ISO-file: "Win10_20H2_English_x64.iso". You could:
- download it yourself from Microsoft,
- you could use the tool "MediaCreationTool20H2.exe" (provided in the folder "software")
- or you could use the "HeiDoc" Windows ISO Downloader
I prefer to use the Windows ISO downloader ("Windows-ISO-Downloader.exe" in the folder "software").
@ -313,8 +317,8 @@ The ISO file must be extacted to the disk now. The files will be place in c:\tem
Just execute:
```dos
cd /D %USERPROFILE%\workspace\w10install
02_ExtractIso.cmd software\19044.1288.211006-0501.21h2_release_svc_refresh_CLIENT_LTSC_EVAL_x64FRE_en-us.iso
cd /D %USERPROFILE%\workspace\git\w10install
02_ExtractIso.cmd software\Win10_20H2_English_x64.iso
```
@ -332,7 +336,7 @@ Uploading all the software to your own server is easy. Just create the folder "p
Example for personal\ftpsettings.cmd:
```text
FTP_SERVER=example.com
FTP_PATH=/path/to/directory/w10install
FTP_PATH=/path/to/directory/w10install/W1020H2v1
FTP_USER=myuser
FTP_PASS=mypass
@ -340,7 +344,7 @@ FTP_PASS=mypass
The folder "personal" is also used by some other scripts in this project. You can place config files or license files in this folder (This will be described in detail in some other chapters). It may be a good idea to have this folder ("personal") as GIT repository on git or somewhere else - just my 50 cents.
There is also a folder "custom" which can be used for license files and special binaries. I'm also recommending to create a git repository that will be checked out by you just before creating the target media.
There is also a folder "company" which can be used for license files and special binaries. I'm also recommending to create a git repository that will be checked out by you just before creating the target media.
Both folders must be created before calling the script that copies all files to the media. They will then be copied to the target machine when installing it via the Media ...
@ -353,7 +357,7 @@ Lets say you want to upload all browser related software to your private ftp ser
Execute:
```dos
cd /D %USERPROFILE%\workspace\w10install
cd /D %USERPROFILE%\workspace\git\w10install\software
upload-to-ftp.cmd browser
```
@ -367,7 +371,7 @@ Lets say you want to upload the driver software for the WFC5210 printer to your
Execute:
```dos
cd /D %USERPROFILE%\workspace\w10install
cd /D %USERPROFILE%\workspace\git\w10install\software
upload-to-ftp-singlefile.cmd WFC5210-setup.exe
```
@ -381,7 +385,7 @@ When you have uploaded the entire software to your private ftp server you can do
Just execute:
```dos
cd /D %USERPROFILE%\workspace\w10install
cd /D %USERPROFILE%\workspace\git\w10install\software
download-from-ftp.cmd basic
download-from-ftp.cmd browser
download-from-ftp.cmd optional
@ -398,7 +402,7 @@ This is needed to be able to edit the Microsoft XML files (needed for unattended
To install it just execute:
```dos
cd /D %USERPROFILE%\workspace\w10install\scripts
cd /D %USERPROFILE%\workspace\git\w10install\scripts
install-adk.cmd
```
@ -408,7 +412,7 @@ install-adk.cmd
Creating a new windows image and removing "builtin" packages needs a tool called "install_wim_tweak". To install this tool an some others just execute:
```dos
cd /D %USERPROFILE%\workspace\w10install\scripts
cd /D %USERPROFILE%\workspace\git\w10install\scripts
unpack-zipfiles.cmd
```
@ -431,7 +435,7 @@ Many things will be done here:
Execute:
```dos
cd /D %USERPROFILE%\workspace\w10install
cd /D %USERPROFILE%\workspace\git\w10install
03_PrepareBoot.cmd
```
@ -465,8 +469,8 @@ The operation completed successfully.
searching for SCRIPT settings ...
OK. Loading SCRIPT settings ...
searching for CUSTOM settings ...
INFO: config file ..\custom\settings.cmd NOT FOUND
searching for COMPANY settings ...
INFO: config file ..\company\settings.cmd NOT FOUND
renaming Windows setup.exe to boot image ...
1 file(s) moved.
@ -537,7 +541,7 @@ READY.
Execute:
```dos
cd /D %USERPROFILE%\workspace\w10install
cd /D %USERPROFILE%\workspace\git\w10install
04_PrepareImage.cmd /R
```
@ -563,7 +567,7 @@ Exporting image
[==========================100.0%==========================]
The operation completed successfully.
[export-image.cmd] WARNING: removing original C:\TEMP\W10\sources\install.wim ...
[export-image.cmd] INFO: renaming C:\TEMP\W10\sources\w10.wim ...
[export-image.cmd] INFO: renaming C:\TEMP\W10\sources\w10pro.wim ...
1 file(s) moved.
READY.
@ -641,7 +645,7 @@ Please use a fast USB 3 stick or a SSD disk connected via USB. The size should b
To create it execute:
```dos
cd /D %USERPROFILE%\workspace\w10install
cd /D %USERPROFILE%\workspace\git\w10install
05_FormatMedia.cmd
```
@ -729,7 +733,7 @@ Now it's time to copy the custom windows images, all scripts and additional 3rd
Execute:
```dos
cd /D %USERPROFILE%\workspace\w10install
cd /D %USERPROFILE%\workspace\git\w10install
06_Copy2Media.cmd E:
```
@ -845,7 +849,7 @@ READY.
In case you need an ISO image you can create it with the following command:
```dos
cd /D %USERPROFILE%\workspace\w10install
cd /D %USERPROFILE%\workspace\git\w10install
07_MakeISO.cmd E:
```

View File

@ -1,3 +1,3 @@
https://apps.microsoft.com/store/detail/xbox-game-bar/9NZKPSTSNW4P
https://apps.microsoft.com/store/detail/microsoftremotedesktop/9WZDNCRFJ3PS
https://apps.microsoft.com/store/detail/microsoftterminal/9N0DX20HK701

View File

@ -1,5 +1,5 @@
@echo off
set FTPSETTINGS=..\custom\ftpsettings.cmd
set FTPSETTINGS=..\company\ftpsettings.cmd
set APPSFOLDER=storeapps
rem ===================

View File

@ -1,5 +1,5 @@
@echo off
set FTPSETTINGS=..\custom\ftpsettings.cmd
set FTPSETTINGS=..\company\ftpsettings.cmd
set APPSFOLDER=storeapps
rem ===================

View File

@ -0,0 +1,30 @@
@echo off
set EXE=..\software\cyberjack-setup.exe
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
if EXIST "%ProgramFiles(x86)%\REINER SCT\cyberJack\cJCC.exe" (
echo ERROR: Reiner SCT Cyberjack already installed!
exit /b
)
echo ####### %0 #######
echo installing Reiner SCT Cyberjack ...
start /wait %EXE%
echo removing CyberJack startmenu folder ...
rd /S /Q %STARTMENU%\"REINER SCT cyberjack" 2>nul
echo renaming CyberJack desktop shortcut ...
copy /Y startmenu\CyberJack.lnk %STARTMENU%
del /F %PUBLIC%\"Desktop\cyberjack*.*" 2>nul
echo ####### %0 #######
pause

View File

@ -0,0 +1,28 @@
@echo off
set T=c:\TEMP
set TOOLS=c:\tools
set ZIP=..\software\MACDRIVER.zip
if NOT EXIST %ZIP% (
echo ERROR: %ZIP% not found!
exit /b
)
echo ####### %0 #######
echo unpacking iMAC drivers ...
%TOOLS%\7z x -y -aoa -o"%T%" %ZIP%
echo renaming ...
move /Y %T%\WindowsSupport %T%\MACDRIVER
echo.
echo ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
echo INFO: iMAC drivers extracted to path [ %T%\MACDRIVER ]
echo ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
echo.
echo ####### %0 #######
pause

View File

@ -20,10 +20,6 @@ echo killing Desktopinfo ...
taskkill /F /IM DesktopInfo64.exe 2>nul
echo.
echo saving desktopinfo.ini ...
copy /Y %TOOLS%\desktopinfo\desktopinfo.ini %SystemDrive%\ 1>nul 2>nul
echo.
echo deleting %TOOLS% ...
takeown /F %TOOLS% /R /D Y 1>nul
rd /S /Q %TOOLS% 2>nul
@ -57,10 +53,6 @@ rem copy some other stuff ...
call copy-executables.cmd
echo.
rem this tool is needed for the office installation ...
call unpack-officedeploymenttool.cmd
echo.
rem dont forget the shortcuts ...
call install-shortcuts.cmd
echo.
@ -68,9 +60,6 @@ echo.
call install-git.cmd
echo.
echo moving desktopinfo.ini back to tools folder ...
move /Y %SystemDrive%\desktopinfo.ini %TOOLS%\desktopinfo 1>nul 2>nul
echo setting permissions for [ %TOOLS% ] ...
cd /D %SystemDrive%\
takeown /F %TOOLS% /R /A /D Y 1>nul

View File

@ -12,16 +12,58 @@
<UserLocale>___MYLANG___</UserLocale>
</component>
<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">
<DiskConfiguration>
<WillShowUI>OnError</WillShowUI>
<Disk wcm:action="add">
<CreatePartitions>
<!-- System partition -->
<CreatePartition wcm:action="add">
<Order>1</Order>
<Size>128</Size>
<Type>Primary</Type>
</CreatePartition>
<!-- Windows partition -->
<CreatePartition wcm:action="add">
<Order>2</Order>
<Type>Primary</Type>
<Extend>true</Extend>
</CreatePartition>
</CreatePartitions>
<ModifyPartitions>
<!-- System partition -->
<ModifyPartition wcm:action="add">
<Order>1</Order>
<PartitionID>1</PartitionID>
<Format>NTFS</Format>
<Label>System</Label>
<Active>true</Active>
</ModifyPartition>
<!-- Windows partition -->
<ModifyPartition wcm:action="add">
<Order>2</Order>
<PartitionID>2</PartitionID>
<Letter>C</Letter>
<Label>Windows</Label>
<Format>NTFS</Format>
</ModifyPartition>
</ModifyPartitions>
<DiskID>0</DiskID>
<WillWipeDisk>true</WillWipeDisk>
</Disk>
</DiskConfiguration>
<ImageInstall>
<OSImage>
<InstallTo>
<DiskID>0</DiskID>
<PartitionID>3</PartitionID>
<PartitionID>2</PartitionID>
</InstallTo>
<WillShowUI>OnError</WillShowUI>
</OSImage>
</ImageInstall>
<UserData>
<ProductKey>
<Key>VK7JG-NPHTM-C97JM-9MPGT-3V66T</Key>
</ProductKey>
<AcceptEula>true</AcceptEula>
<Organization>none</Organization>
</UserData>
@ -37,8 +79,12 @@
<RegisteredOrganization>none</RegisteredOrganization>
<RegisteredOwner>none</RegisteredOwner>
<TimeZone>Central Europe Standard Time</TimeZone>
<ProductKey>VK7JG-NPHTM-C97JM-9MPGT-3V66T</ProductKey>
<ShowPowerButtonOnStartScreen>true</ShowPowerButtonOnStartScreen>
</component>
<component name="Microsoft-Windows-SQMApi" 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">
<CEIPEnabled>0</CEIPEnabled>
</component>
</settings>
<settings pass="oobeSystem">
<component name="Microsoft-Windows-International-Core" 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">
@ -96,4 +142,5 @@
<EnableLUA>false</EnableLUA>
</component>
</settings>
<cpi:offlineImage cpi:source="wim:c:/temp/w10/sources/install.wim#Windows 10 Pro" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
</unattend>

View File

@ -0,0 +1,167 @@
<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
<servicing></servicing>
<settings pass="windowsPE">
<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">
<SetupUILanguage>
<UILanguage>en-US</UILanguage>
</SetupUILanguage>
<InputLocale>___MYLANG___</InputLocale>
<SystemLocale>___MYLANG___</SystemLocale>
<UILanguage>en-US</UILanguage>
<UserLocale>___MYLANG___</UserLocale>
</component>
<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">
<DiskConfiguration>
<WillShowUI>OnError</WillShowUI>
<Disk wcm:action="add">
<CreatePartitions>
<!-- Recovery partition -->
<CreatePartition wcm:action="add">
<Order>1</Order>
<Type>Primary</Type>
<Size>512</Size>
</CreatePartition>
<!-- EFI system partition (ESP) -->
<CreatePartition wcm:action="add">
<Order>2</Order>
<Type>EFI</Type>
<Size>128</Size>
</CreatePartition>
<!-- Microsoft reserved partition (MSR) -->
<CreatePartition wcm:action="add">
<Order>3</Order>
<Type>MSR</Type>
<Size>128</Size>
</CreatePartition>
<!-- Windows partition -->
<CreatePartition wcm:action="add">
<Extend>true</Extend>
<Type>Primary</Type>
<Order>4</Order>
</CreatePartition>
</CreatePartitions>
<ModifyPartitions>
<!-- Recovery partition -->
<ModifyPartition wcm:action="add">
<Order>1</Order>
<PartitionID>1</PartitionID>
<Label>Recovery</Label>
<Format>NTFS</Format>
<TypeID>DE94BBA4-06D1-4D40-A16A-BFD50179D6AC</TypeID>
</ModifyPartition>
<!-- EFI system partition (ESP) -->
<ModifyPartition wcm:action="add">
<Order>2</Order>
<PartitionID>2</PartitionID>
<Label>System</Label>
<Format>FAT32</Format>
</ModifyPartition>
<!-- MSR partition does not need to be modified -->
<!-- Windows partition -->
<ModifyPartition wcm:action="add">
<Order>3</Order>
<PartitionID>4</PartitionID>
<Label>Windows</Label>
<Letter>C</Letter>
<Format>NTFS</Format>
</ModifyPartition>
</ModifyPartitions>
<DiskID>0</DiskID>
<WillWipeDisk>true</WillWipeDisk>
</Disk>
</DiskConfiguration>
<ImageInstall>
<OSImage>
<InstallTo>
<DiskID>0</DiskID>
<PartitionID>4</PartitionID>
</InstallTo>
<WillShowUI>OnError</WillShowUI>
</OSImage>
</ImageInstall>
<UserData>
<ProductKey>
<Key>VK7JG-NPHTM-C97JM-9MPGT-3V66T</Key>
</ProductKey>
<AcceptEula>true</AcceptEula>
<Organization>none</Organization>
</UserData>
</component>
</settings>
<settings pass="specialize">
<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">
<OEMInformation>
<Manufacturer>IBM PC</Manufacturer>
<Model>Windows</Model>
</OEMInformation>
<CopyProfile>true</CopyProfile>
<RegisteredOrganization>none</RegisteredOrganization>
<RegisteredOwner>none</RegisteredOwner>
<TimeZone>Central Europe Standard Time</TimeZone>
<ProductKey>VK7JG-NPHTM-C97JM-9MPGT-3V66T</ProductKey>
<ShowPowerButtonOnStartScreen>true</ShowPowerButtonOnStartScreen>
</component>
<component name="Microsoft-Windows-SQMApi" 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">
<CEIPEnabled>0</CEIPEnabled>
</component>
</settings>
<settings pass="oobeSystem">
<component name="Microsoft-Windows-International-Core" 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">
<InputLocale>___MYLANG___</InputLocale>
<SystemLocale>___MYLANG___</SystemLocale>
<UILanguage>en-US</UILanguage>
<UserLocale>___MYLANG___</UserLocale>
</component>
<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">
<OOBE>
<HideEULAPage>true</HideEULAPage>
<HideLocalAccountScreen>true</HideLocalAccountScreen>
<HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
<HideOnlineAccountScreens>true</HideOnlineAccountScreens>
<HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
<ProtectYourPC>1</ProtectYourPC>
</OOBE>
<UserAccounts>
<LocalAccounts>
<LocalAccount wcm:action="add">
<Password>
<Value>___MYPASS___</Value>
<PlainText>true</PlainText>
</Password>
<DisplayName>___MYNAME___</DisplayName>
<Name>___MYUSER___</Name>
<Group>Administrators</Group>
</LocalAccount>
</LocalAccounts>
</UserAccounts>
<AutoLogon>
<Password>
<Value>___MYPASS___</Value>
<PlainText>true</PlainText>
</Password>
<Enabled>true</Enabled>
<LogonCount>1</LogonCount>
<Username>___MYUSER___</Username>
</AutoLogon>
<FirstLogonCommands>
<SynchronousCommand wcm:action="add">
<Order>1</Order>
<Description>Password Never Expires</Description>
<CommandLine>cmd /C wmic useraccount where name=&quot;___MYUSER___&quot; set PasswordExpires=false</CommandLine>
</SynchronousCommand>
<SynchronousCommand wcm:action="add">
<Order>2</Order>
<Description>Initial Setup</Description>
<CommandLine>cmd /C c:\windows\setup\scripts\SearchAutoconfig.cmd</CommandLine>
</SynchronousCommand>
</FirstLogonCommands>
</component>
</settings>
<settings pass="offlineServicing">
<component name="Microsoft-Windows-LUA-Settings" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<EnableLUA>false</EnableLUA>
</component>
</settings>
<cpi:offlineImage cpi:source="wim:c:/temp/w10/sources/install.wim#Windows 10 Pro" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
</unattend>

View File

@ -1,8 +1,8 @@
@echo off
set SOURCES=%SystemDrive%\TEMP\W10\sources
set WIM=%SOURCES%\install.wim
set W10WIM=%SOURCES%\w10.wim
set STATEFILE=%SOURCES%\w10done.txt
set W10PRO=%SOURCES%\w10pro.wim
set STATEFILE=%SOURCES%\w10pro.txt
if EXIST %STATEFILE% (
@ -17,7 +17,7 @@ if EXIST %STATEFILE% (
if EXIST %WIM% (
rem cleanup ...
del /F %W10WIM% 1>nul 2>nul
del /F %W10PRO% 1>nul 2>nul
echo.
echo [%0] INFO: found %WIM%
@ -25,12 +25,12 @@ if EXIST %WIM% (
echo [%0] INFO: exporting image from %WIM% ...
dism /Export-Image ^
/SourceImageFile:%WIM% ^
/DestinationImageFile:%W10WIM% ^
/SourceIndex:1 ^
/DestinationImageFile:%W10PRO% ^
/SourceName:"Windows 10 Pro" ^
/Compress:Max ^
/CheckIntegrity
if NOT EXIST %W10WIM% (
if %ERRORLEVEL% NEQ 0 (
echo [%0] ERROR: while extracting %WIM%
exit /b
)
@ -39,8 +39,8 @@ if EXIST %WIM% (
attrib -R %WIM% 2>nul
del /F %WIM% 1>nul 2>nul
echo [%0] INFO: renaming %W10WIM% ...
move /Y %W10WIM% %WIM%
echo [%0] INFO: renaming %W10PRO% ...
move /Y %W10PRO% %WIM%
echo all done >%STATEFILE%
echo.

View File

@ -2,7 +2,7 @@
set SOURCES=%SystemDrive%\TEMP\W10\sources
set BOOT=%SystemDrive%\TEMP\BOOT
set SCRIPT_SETTINGS=..\scripts\settings.cmd
set CUSTOM_SETTINGS=..\custom\settings.cmd
set COMPANY_SETTINGS=..\company\settings.cmd
set LANG=en-US
set localadmin=localadmin
set localadmin_name=Local Administrator
@ -21,12 +21,12 @@ if NOT EXIST %SCRIPT_SETTINGS% (
)
echo.
echo searching for CUSTOM settings ...
if NOT EXIST %CUSTOM_SETTINGS% (
echo INFO: config file %CUSTOM_SETTINGS% NOT FOUND
echo searching for COMPANY settings ...
if NOT EXIST %COMPANY_SETTINGS% (
echo INFO: config file %COMPANY_SETTINGS% NOT FOUND
) else (
echo OK. Loading CUSTOM settings ...
call %CUSTOM_SETTINGS%
echo OK. Loading COMPANY settings ...
call %COMPANY_SETTINGS%
)
echo.
@ -49,28 +49,29 @@ echo replacing setup.exe with our installer utility ...
copy /Y installer.exe %BOOT%\setup.exe
echo.
rem prepare file for unattended installation ...
echo copying config file for unattended installation ...
copy /Y autounattend_template.xml %BOOT%\autounattend.xml
rem prepare unattended xml files ...
for %%A in (
rem file in users and passwords ...
..\tools\searchreplace %BOOT%\autounattend.xml ___MYUSER___ "%localadmin%"
..\tools\searchreplace %BOOT%\autounattend.xml ___MYNAME___ "%localadmin_name%"
..\tools\searchreplace %BOOT%\autounattend.xml ___MYPASS___ "%localadmin_password%" /S
..\tools\searchreplace %BOOT%\autounattend.xml ___MYLANG___ "%LANG%"
echo.
BIOS
UEFI
) do (
echo copying config file for unattended install [ %%A ]...
copy /Y autounattend_%%A_template.xml %BOOT%\autounattend_%%A.xml
echo copying config file for disk format [ BIOS ]...
copy /Y format-BIOS.txt %BOOT%
echo copying config file for disk format [ UEFI ]...
copy /Y format-UEFI.txt %BOOT%
echo copying disk formatting script ...
copy /Y format-disk.cmd %BOOT%
rem prepare BIOS version ...
..\tools\searchreplace %BOOT%\autounattend_%%A.xml ___MYUSER___ "%localadmin%"
..\tools\searchreplace %BOOT%\autounattend_%%A.xml ___MYNAME___ "%localadmin_name%"
..\tools\searchreplace %BOOT%\autounattend_%%A.xml ___MYPASS___ "%localadmin_password%" /S
..\tools\searchreplace %BOOT%\autounattend_%%A.xml ___MYLANG___ "%LANG%"
echo.
rem provide snapshot64.exe ...
if EXIST ..\software\snapshot64_licensed.exe (
)
if EXIST ..\company\snapshot64.exe (
echo copying LICENSED snapshot64.exe to boot image ...
copy /Y ..\software\snapshot64_licensed.exe %BOOT%\snapshot64.exe
copy /Y ..\company\snapshot64.exe %BOOT%
) else (
echo copying STANDARD snapshot64.exe to boot image ...
copy /Y ..\software\snapshot64.exe %BOOT%

View File

@ -1,16 +0,0 @@
@echo off
wpeinit && echo INFO: wpeinit OK
wpeutil UpdateBootInfo > NUL && echo INFO: wpeutil UpdateBootInfo OK
for /f "tokens=2* delims= " %%A in ('reg query HKLM\System\CurrentControlSet\Control /v PEFIRMWAREType') do set FIRMWARE=%%B
if %FIRMWARE%==0x1 (
echo FIRMWARE=%FIRMWARE% [BIOS]
echo ==========================
diskpart /s %SystemDrive%\format-BIOS.txt
) else (
echo FIRMWARE=%FIRMWARE% [UEFI]
echo ==========================
diskpart /s %SystemDrive%\format-UEFI.txt
)

Binary file not shown.

View File

@ -18,7 +18,7 @@ echo setting write access for install.wim ...
attrib -R %SOURCES%\install.wim 2>nul
echo mounting install.wim to %IMAGE% ...
dism /Mount-IMAGE /IMAGEFile:%SOURCES%\install.wim /Index:1 /MountDir:%IMAGE% || (
dism /Mount-IMAGE /IMAGEFile:%SOURCES%\install.wim /Name:"Windows 10 Pro" /MountDir:%IMAGE% || (
echo.
echo ERROR while mounting WIM file! Please unmount orphaned images:
dism /Get-MountedWimInfo

View File

@ -15,4 +15,3 @@ dism /Cleanup-Mountpoints
echo showing status ...
dism /Get-MountedWimInfo

View File

@ -46,7 +46,7 @@ Windows Registry Editor Version 5.00
"CommandLineFlagSecurityWarningsEnabled"=dword:00000001
"ComponentUpdatesEnabled"=dword:00000001
"DNSInterceptionChecksEnabled"=dword:00000001
"DefaultBrowserSettingEnabled"=dword:00000000
"DefaultBrowserSettingEnabled"=dword:00000001
"DefaultClipboardSetting"=dword:00000002
"DefaultCookiesSetting"=dword:00000001
"DefaultFileSystemReadGuardSetting"=dword:00000002
@ -66,7 +66,7 @@ Windows Registry Editor Version 5.00
"DefaultWebUsbGuardSetting"=dword:00000002
"DefaultWindowManagementSetting"=dword:00000002
"DesktopSharingHubEnabled"=dword:00000001
"DeveloperToolsAvailability"=dword:00000001
"DeveloperToolsAvailability"=dword:00000002
"Disable3DAPIs"=dword:00000000
"DisableAuthNegotiateCnameLookup"=dword:00000000
"DisablePrintPreview"=dword:00000000

View File

@ -1,5 +0,0 @@
[Setup]
Lang=english
Dir=C:\Program Files\WezTerm
Group=(Default)
NoIcons=1

View File

@ -1,5 +0,0 @@
[ofw]
AutoSave=0
AutoTime=1
BackupType=0
UpdateCheckEnabled=0

View File

@ -1,29 +0,0 @@
<Configuration ID="4c98baea-1ad1-4180-824b-46e81269f4c9">
<Add OfficeClientEdition="64" Channel="PerpetualVL2019" SourcePath="C:\TEMP" AllowCdnFallback="FALSE">
<Product ID="Standard2019Volume" PIDKEY="6NWWJ-YQWMR-QKGCB-6TMB3-9D9HK">
<Language ID="en-us" />
<Language ID="de-de" />
<ExcludeApp ID="Groove" />
<ExcludeApp ID="OneDrive" />
<ExcludeApp ID="OneNote" />
<ExcludeApp ID="Outlook" />
<ExcludeApp ID="Publisher" />
</Product>
<Product ID="LanguagePack">
<Language ID="en-us" />
<Language ID="de-de" />
</Product>
</Add>
<Property Name="SharedComputerLicensing" Value="0" />
<Property Name="FORCEAPPSHUTDOWN" Value="TRUE" />
<Property Name="DeviceBasedLicensing" Value="0" />
<Property Name="SCLCacheOverride" Value="0" />
<Property Name="AUTOACTIVATE" Value="1" />
<Updates Enabled="FALSE" UpdatePath="C:\TEMP" />
<AppSettings>
<User Key="software\microsoft\office\16.0\excel\options" Name="defaultformat" Value="51" Type="REG_DWORD" App="excel16" Id="L_SaveExcelfilesas" />
<User Key="software\microsoft\office\16.0\powerpoint\options" Name="defaultformat" Value="27" Type="REG_DWORD" App="ppt16" Id="L_SavePowerPointfilesas" />
<User Key="software\microsoft\office\16.0\word\options" Name="defaultformat" Value="" Type="REG_SZ" App="word16" Id="L_SaveWordfilesas" />
</AppSettings>
<Display Level="Full" AcceptEULA="TRUE" />
</Configuration>

View File

@ -1,5 +0,0 @@
[pmw]
AutoSave=0
AutoTime=1
BackupType=0
UpdateCheckEnabled=0

View File

@ -1,5 +0,0 @@
[prw]
AutoSave=0
AutoTime=1
BackupType=0
UpdateCheckEnabled=0

View File

@ -1,5 +0,0 @@
[tmw]
AutoSave=0
AutoTime=1
BackupType=0
UpdateCheckEnabled=0

View File

@ -1,36 +0,0 @@
@echo off
set EXE=..\software\adk-setup.exe
set OSCDPATH="%ProgramFiles(x86)%\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools\amd64\Oscdimg"
set STARTMENU=%PROGRAMDATA%\"Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo installing Microsoft ADK deployment tools ...
%EXE% /q /ceip off /norestart /features OptionId.DeploymentTools
if NOT EXIST %OSCDPATH%\oscdimg.exe (
echo ERROR: cannot find oscdimg.exe!
echo INFO: Installation of "Assessment and Deployment Kit (ADK)" failed!
echo.
echo ####### %0 #######
exit /b
)
rem ADK ...
move /Y %STARTMENU%\"Windows Kits\Windows ADK\Windows System Image Manager.lnk" ^
%STARTMENU%\"System Tools\Image Manager.lnk" 2>nul
rd /S /Q %STARTMENU%\"Windows Kits" 2>nul
rem show oscdimg usage:
%OSCDPATH%\oscdimg.exe
echo ####### %0 #######
pause

View File

@ -0,0 +1,25 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set EXE=..\software\F-SecureNetworkInstaller-AV_AVTR20F930_.exe
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo installing F-Secure Anti-Virus ...
start /wait %EXE%
echo removing F-Secure desktop link ...
del /F /Q "%PUBLIC%\Desktop\F-Secure Anti-Virus.lnk" 2>nul
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo ####### %0 #######
pause

View File

@ -1,31 +1,31 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set OPT=..\optional
set SOFTWARE=..\software
set MSI=ausweisapp-setup.msi
if NOT EXIST %SOFTWARE%\%MSI% (
echo ERROR: %SOFTWARE%\%MSI% not found!
exit /b
)
echo ####### %0 #######
echo installing Ausweisapp ...
cd %SOFTWARE%
@echo on
msiexec /i %MSI% /quiet
@echo off
cd %OPT%
echo removing Ausweisapp Desktop icon ...
del /F /Q %PUBLIC%\Desktop\AusweisApp.lnk 2>nul
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo ####### %0 #######
pause
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set OPT=..\optional
set SOFTWARE=..\software
set MSI=ausweisapp2-setup.msi
if NOT EXIST %SOFTWARE%\%MSI% (
echo ERROR: %SOFTWARE%\%MSI% not found!
exit /b
)
echo ####### %0 #######
echo installing Ausweisapp 2 ...
cd %SOFTWARE%
@echo on
msiexec /i %MSI% /quiet
@echo off
cd %OPT%
echo removing Ausweisapp2 Desktop icon ...
del /F /Q %PUBLIC%\Desktop\AusweisApp2.lnk 2>nul
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo ####### %0 #######
pause

View File

@ -0,0 +1,35 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set OPT=..\optional
set SOFTWARE=..\software
set MSI=bluejeans-setup.msi
if NOT EXIST %SOFTWARE%\%MSI% (
echo ERROR: %SOFTWARE%\%MSI% not found!
exit /b
)
echo ####### %0 #######
echo installing Verizon BlueJeans ...
cd %SOFTWARE%
@echo on
msiexec /i %MSI% INSTALLAUDIODRIVER=1 INSTALLUPDATESVC=0 LAUNCHAFTERINSTALL=0 /q
@echo off
cd %OPT%
echo removing Desktop icon ...
del /F /Q "%USERPROFILE%\Desktop\BlueJeans.lnk" 2>nul
echo removing autostart for BlueJeans-Client ...
reg delete "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" ^
/v "BlueJeans.Detector" /f
echo refreshing desktop (W10 style) ...
ie4uinit.exe -show
echo ####### %0 #######
pause

View File

@ -1,50 +1,50 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set OPT=..\optional
set SOFTWARE=..\software
set MSI=chrome-setup.msi
set CONFIG=config\chrome.reg
set SCRIPTS=..\scripts
if NOT EXIST %SOFTWARE%\%MSI% (
echo ERROR: %SOFTWARE%\%MSI% not found!
exit /b
)
echo ####### %0 #######
cd %SOFTWARE%
msiexec /uninstall %MSI% /passive
@echo on
msiexec /i %MSI% /passive
@echo off
cd %OPT%
echo importing registry settings ...
reg import %CONFIG%
rem unpin chrome icon from taskbar ...
echo.
call %SCRIPTS%\unpin-taskbar-icons.cmd
echo.
echo disabling update tasks ...
powershell -Command "get-scheduledtask | where TaskName -like 'Google*' | Disable-ScheduledTask"
echo renaming chrome desktop shortcut ...
move /Y %PUBLIC%\Desktop\"Google Chrome.lnk" %PUBLIC%\Desktop\Chrome.lnk 2>nul
echo sleeping 5 seconds ...
ping 127.0.0.1 -n 5 > NUL 2>&1
echo cleanup ...
del /F /Q "%USERPROFILE%\Desktop\Google Chrome.lnk" 2>nul
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo ####### %0 #######
pause
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set OPT=..\optional
set SOFTWARE=..\software
set MSI=chrome-setup.msi
set CONFIG=config\chrome.reg
set SCRIPTS=..\scripts
if NOT EXIST %SOFTWARE%\%MSI% (
echo ERROR: %SOFTWARE%\%MSI% not found!
exit /b
)
echo ####### %0 #######
cd %SOFTWARE%
msiexec /uninstall %MSI% /passive
@echo on
msiexec /i %MSI% /passive
@echo off
cd %OPT%
echo importing registry settings ...
reg import %CONFIG%
rem unpin chrome icon from taskbar ...
echo.
call %SCRIPTS%\unpin-taskbar-icons.cmd
echo.
echo disabling update tasks ...
powershell -Command "get-scheduledtask | where TaskName -like 'Google*' | Disable-ScheduledTask"
echo renaming chrome desktop shortcut ...
move /Y %PUBLIC%\Desktop\"Google Chrome.lnk" %PUBLIC%\Desktop\Chrome.lnk 2>nul
echo sleeping 5 seconds ...
ping 127.0.0.1 -n 5 > NUL 2>&1
echo cleanup ...
del /F /Q "%USERPROFILE%\Desktop\Google Chrome.lnk" 2>nul
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo ####### %0 #######
pause

View File

@ -1,58 +1,58 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set EXE=..\software\citrixworkspace-setup.exe
set EXE2=..\software\nsepa_setup.exe
set MSI=ICAWebWrapper.msi
set CITRIXROOT="%ProgramFiles(x86)%\Citrix"
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
echo GOTO: https://www.citrix.com/de-de/downloads/workspace-app/workspace-app-for-windows-long-term-service-release
echo and save the file as "citrixworkspace-setup.exe" in folder "software"!
echo.
pause
exit /b
)
if NOT EXIST %EXE2% (
echo ERROR: %EXE2% not found!
echo get the file and save it in folder "software"!
echo.
pause
exit /b
)
echo ####### %0 #######
echo installing Citrix Workspace LTS ...
start /wait %EXE% /silent /noreboot /AutoUpdateCheck=disabled
echo disabling autostart for Citrix Workspace ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\StartupApproved\Run32" ^
/v "ConnectionCenter" /d 0300000065d2d743d402d701 /t REG_BINARY /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\StartupApproved\Run32" ^
/v "Redirector" /d 030000005e06c842d402d701 /t REG_BINARY /f
echo installing Citrix gateway endpoint Analysis Plug-in ...
start /wait %EXE2%
echo installing Citrix ICA web wrapper ...
cd %CITRIXROOT%\"Citrix Workspace*"
if NOT EXIST %MSI% (
echo ERROR: %MSI% not found!
echo ####### %0 #######
pause
exit /b
)
@echo on
msiexec /i %MSI% /quiet
@echo off
echo ####### %0 #######
pause
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set EXE=..\software\citrixworkspace-setup.exe
set EXE2=..\software\nsepa_setup.exe
set MSI=ICAWebWrapper.msi
set CITRIXROOT="%ProgramFiles(x86)%\Citrix"
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
echo GOTO: https://www.citrix.com/de-de/downloads/workspace-app/workspace-app-for-windows-long-term-service-release
echo and save the file as "citrixworkspace-setup.exe" in folder "software"!
echo.
pause
exit /b
)
if NOT EXIST %EXE2% (
echo ERROR: %EXE2% not found!
echo get the file and save it in folder "software"!
echo.
pause
exit /b
)
echo ####### %0 #######
echo installing Citrix Workspace LTS ...
start /wait %EXE% /silent /noreboot /AutoUpdateCheck=disabled
echo disabling autostart for Citrix Workspace ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\StartupApproved\Run32" ^
/v "ConnectionCenter" /d 0300000065d2d743d402d701 /t REG_BINARY /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\StartupApproved\Run32" ^
/v "Redirector" /d 030000005e06c842d402d701 /t REG_BINARY /f
echo installing Citrix gateway endpoint Analysis Plug-in ...
start /wait %EXE2%
echo installing Citrix ICA web wrapper ...
cd %CITRIXROOT%\"Citrix Workspace*"
if NOT EXIST %MSI% (
echo ERROR: %MSI% not found!
echo ####### %0 #######
pause
exit /b
)
@echo on
msiexec /i %MSI% /quiet
@echo off
echo ####### %0 #######
pause

View File

@ -1,29 +1,29 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set OPT=..\optional
set SOFTWARE=..\software
set MSI=dbbrowser-setup.msi
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %SOFTWARE%\%MSI% (
echo ERROR: %SOFTWARE%\%MSI% not found!
exit /b
)
echo ####### %0 #######
echo installing DB-Browser ...
cd %SOFTWARE%
@echo on
msiexec /i %MSI% /passive
@echo off
cd %OPT%
echo copying startmenu shortcut ...
copy /Y startmenu\SQLite-DBB.lnk %STARTMENU%
echo ####### %0 #######
pause
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set OPT=..\optional
set SOFTWARE=..\software
set MSI=dbbrowser-setup.msi
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %SOFTWARE%\%MSI% (
echo ERROR: %SOFTWARE%\%MSI% not found!
exit /b
)
echo ####### %0 #######
echo installing DB-Browser ...
cd %SOFTWARE%
@echo on
msiexec /i %MSI% /passive
@echo off
cd %OPT%
echo copying startmenu shortcut ...
copy /Y startmenu\SQLite-DBB.lnk %STARTMENU%
echo ####### %0 #######
pause

View File

@ -1,34 +0,0 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set SOFTWARE=..\software
set MSI=drawio-setup.msi
set STARTMENU=%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs
set STARTMENU_USER=%APPDATA%\Microsoft\Windows\Start Menu\Programs
if NOT EXIST %SOFTWARE%\%MSI% (
echo ERROR: %SOFTWARE%\%MSI% not found!
exit /b
)
echo ####### %0 #######
echo installing Draw-IO ...
cd %SOFTWARE%
@echo on
msiexec /i %MSI% /passive
@echo off
cd %OPT%
echo moving Draw-IO startmenu shortcut ...
move /Y "%STARTMENU_USER%\draw.io.lnk" "%STARTMENU%"
icacls "%STARTMENU%\draw.io.lnk" /grant Users:R
echo moving Draw-IO desktop link to public desktop ...
move /Y "%USERPROFILE%\Desktop\draw.io.lnk" "%PUBLIC%\Desktop"
icacls "%PUBLIC%\Desktop\draw.io.lnk" /grant Users:R
echo ####### %0 #######
pause

View File

@ -1,57 +1,52 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set OPT=..\optional
set SOFTWARE=..\software
set MSI=emclient-setup.msi
set EMSERVERIP=104.22.21.185,172.67.15.154,104.22.20.185
if NOT EXIST %SOFTWARE%\%MSI% (
echo ERROR: %SOFTWARE%\%MSI% not found!
exit /b
)
echo ####### %0 #######
echo installing em-Client ...
cd %SOFTWARE%
@echo on
msiexec /i %MSI% /quiet
@echo off
cd %OPT%
echo removing autostart for em-Client ...
reg delete "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" ^
/v "eM Client" /f
taskkill /F /IM SystemSettings.exe 2>nul
echo copying link to desktop ...
copy /Y "%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs\eM Client.lnk" ^
%PUBLIC%\Desktop
echo refreshing desktop ...
ie4uinit.exe -show
echo disabling automatic updates via W10 firewall ...
rem delete old rule ...
netsh advfirewall firewall delete rule name="block_emclient_updates" 2>nul
rem create new rule ...
netsh advfirewall firewall add rule name="block_emclient_updates" ^
dir=out action=block protocol=tcp localip=any remoteip=%EMSERVERIP% ^
remoteport=80,443 program="%ProgramFiles(x86)%\eM Client\MailClient.exe" 1>nul 2>nul
rem show new rule ...
netsh advfirewall firewall show rule name="block_emclient_updates"
echo ####### %0 #######
rem set filetypes ...
if EXIST ..\scripts\set-filetypes.cmd (
call ..\scripts\set-filetypes.cmd
)
pause
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set OPT=..\optional
set SOFTWARE=..\software
set MSI=emclient-setup.msi
set EMSERVERIP=168.62.48.183
if NOT EXIST %SOFTWARE%\%MSI% (
echo ERROR: %SOFTWARE%\%MSI% not found!
exit /b
)
echo ####### %0 #######
echo installing em-Client ...
cd %SOFTWARE%
@echo on
msiexec /i %MSI% /quiet
@echo off
cd %OPT%
echo removing autostart for em-Client ...
reg delete "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" ^
/v "eM Client" /f
taskkill /F /IM SystemSettings.exe 2>nul
echo copying link to desktop ...
copy /Y "%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs\eM Client.lnk" ^
%PUBLIC%\Desktop
echo refreshing desktop ...
ie4uinit.exe -show
echo disabling automatic updates via W10 firewall ...
netsh advfirewall firewall delete rule name="block_emclient_updates" 2>nul
netsh advfirewall firewall add rule name="block_emclient_updates" ^
dir=out action=block protocol=tcp localip=any remoteip=%EMSERVERIP% ^
remoteport=80,443 program="%ProgramFiles(x86)%\eM Client\MailClient.exe"
echo.
echo ####### %0 #######
rem set filetypes ...
if EXIST ..\scripts\set-filetypes.cmd (
call ..\scripts\set-filetypes.cmd
)
pause

View File

@ -1,34 +0,0 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set SOFTWARE=..\software
echo ####### %0 #######
echo.
echo installing Franklin Gothic Medium font for LEXWARE ...
if NOT EXIST %SOFTWARE%\framd.ttf (
echo ERROR: %SOFTWARE%\framd.ttf not found!
exit /b
) else (
copy /Y %SOFTWARE%\framd.ttf %WINDIR%\Fonts
echo registering font ...
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts" ^
/v "Franklin Gothic Medium (TrueType)" /t REG_SZ /d framd.ttf /f
reg add "HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows NT\CurrentVersion\Fonts" /v ^
"Franklin Gothic Medium (TrueType)" /t REG_SZ /d framd.ttf /f
)
echo IMPORTANT: please reboot your system to activate the fonts!
echo.
echo ####### %0 #######
pause

View File

@ -1,30 +1,30 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set CONFIG=config\hakchi2_config.ini
set ZIP=..\software\hakchi2.zip
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %ZIP% (
echo ERROR: %ZIP% not found!
exit /b
)
echo ####### %0 #######
echo killing hakchi2 processes...
taskkill /F /IM hakchi.exe 2>nul
echo unpacking Hakchi2 ...
7z x -y -aoa -o"%ProgramFiles(x86)%" %ZIP%
echo copying config ...
mkdir "%ProgramFiles(x86)%\hakchi2\config" 2>nul
copy /Y %CONFIG% "%ProgramFiles(x86)%\hakchi2\config\config.ini"
echo copy startmenu link ...
copy /Y startmenu\HakChi2.lnk %STARTMENU%
echo ####### %0 #######
pause
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set CONFIG=config\hakchi2_config.ini
set ZIP=..\software\hakchi2.zip
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %ZIP% (
echo ERROR: %ZIP% not found!
exit /b
)
echo ####### %0 #######
echo killing hakchi2 processes...
taskkill /F /IM hakchi.exe 2>nul
echo unpacking Hakchi2 ...
7z x -y -aoa -o"%ProgramFiles(x86)%" %ZIP%
echo copying config ...
mkdir "%ProgramFiles(x86)%\hakchi2\config" 2>nul
copy /Y %CONFIG% "%ProgramFiles(x86)%\hakchi2\config\config.ini"
echo copy startmenu link ...
copy /Y startmenu\HakChi2.lnk %STARTMENU%
echo ####### %0 #######
pause

View File

@ -1,34 +1,34 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set CONFIG=config\install-heidisql.txt
set EXE=..\software\heidisql-setup.exe
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo installing Heidi SQL ...
start /wait %EXE% /LOADINF=%CONFIG% /NORESTART /NOCANCEL /SILENT /SUPPRESSMSGBOXES /CLOSEAPPLICATIONS
echo moving HeidiSQL startmenu shortcut ...
move /Y %STARTMENU%\"HeidiSQL\HeidiSQL.lnk" %STARTMENU%
echo moving HeidiSQL desktop shortcut ...
move /Y "%USERPROFILE%\Desktop\HeidiSQL.lnk" "%PUBLIC%\Desktop"
icacls "%PUBLIC%\Desktop\HeidiSQL.lnk" /grant Users:R 2>nul
echo cleanup ...
rd /S /Q %STARTMENU%\"HeidiSQL"
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo ####### %0 #######
pause
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set CONFIG=config\install-heidisql.txt
set EXE=..\software\heidisql-setup.exe
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo installing Heidi SQL ...
start /wait %EXE% /LOADINF=%CONFIG% /NORESTART /NOCANCEL /SILENT /SUPPRESSMSGBOXES /CLOSEAPPLICATIONS
echo moving HeidiSQL startmenu shortcut ...
move /Y %STARTMENU%\"HeidiSQL\HeidiSQL.lnk" %STARTMENU%
echo moving HeidiSQL desktop shortcut ...
move /Y "%USERPROFILE%\Desktop\HeidiSQL.lnk" "%PUBLIC%\Desktop"
icacls "%PUBLIC%\Desktop\HeidiSQL.lnk" /grant Users:R 2>nul
echo cleanup ...
rd /S /Q %STARTMENU%\"HeidiSQL"
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo ####### %0 #######
pause

View File

@ -1,21 +1,21 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set EXE=..\software\horizon-setup.exe
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
)
echo ####### %0 #######
echo installing VMware Horizon client ...
start /wait %EXE% /silent /norestart AUTO_UPDATE_ENABLED=0
echo installing Desktop shortcut ...
move /Y "%PUBLIC%\Desktop\VMware Horizon Client.lnk" "%PUBLIC%\Desktop\Horizon.lnk"
echo ####### %0 #######
pause
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set EXE=..\software\horizon-setup.exe
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
)
echo ####### %0 #######
echo installing VMware Horizon client ...
start /wait %EXE% /silent /norestart AUTO_UPDATE_ENABLED=0
echo installing Desktop shortcut ...
move /Y "%PUBLIC%\Desktop\VMware Horizon Client.lnk" "%PUBLIC%\Desktop\Horizon.lnk"
echo ####### %0 #######
pause

View File

@ -1,32 +1,32 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set EXE=..\software\inkscape-setup.exe
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo killing INKSCAPE processes...
taskkill /F /IM inkscape.exe 2>nul
echo installing INKSCAPE ...
start /wait %EXE% /S
echo moving Inkscape startmenu shortcut ...
move /Y %STARTMENU%\"Inkscape\Inkscape.lnk" %STARTMENU%\Inkscape.lnk
echo removing Inkscape startmenu folder ...
rd /S /Q %STARTMENU%\"Inkscape" 2>nul
echo installing Inkscape desktop shortcut ...
copy /Y %STARTMENU%\"Inkscape.lnk" %PUBLIC%\Desktop 2>nul
echo ####### %0 #######
pause
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set EXE=..\software\inkscape-setup.exe
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo killing INKSCAPE processes...
taskkill /F /IM inkscape.exe 2>nul
echo installing INKSCAPE ...
start /wait %EXE% /S
echo moving Inkscape startmenu shortcut ...
move /Y %STARTMENU%\"Inkscape\Inkscape.lnk" %STARTMENU%\Inkscape.lnk
echo removing Inkscape startmenu folder ...
rd /S /Q %STARTMENU%\"Inkscape" 2>nul
echo installing Inkscape desktop shortcut ...
copy /Y %STARTMENU%\"Inkscape.lnk" %PUBLIC%\Desktop 2>nul
echo ####### %0 #######
pause

View File

@ -1,20 +1,20 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set EXE=..\software\java-setup.exe
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo installing JAVA ...
start /wait %EXE% INSTALL_SILENT=Enable AUTO_UPDATE=0 NOSTARTMENU=1 REBOOT=0 ^
INSTALLDIR="%ProgramFiles%\java"
echo ####### %0 #######
pause
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set EXE=..\software\java-setup.exe
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo installing JAVA ...
start /wait %EXE% INSTALL_SILENT=Enable AUTO_UPDATE=0 NOSTARTMENU=1 REBOOT=0 ^
INSTALLDIR="%ProgramFiles%\java"
echo ####### %0 #######
pause

View File

@ -1,26 +1,26 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set CONFIG=config\install-keepass2.txt
set EXE=..\software\keepass2-setup.exe
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo killing KeePass 2 process ...
taskkill /F /IM KeePass.exe 2>nul
echo installing KeePass 2 ...
start /wait %EXE% /LOADINF=%CONFIG% /NORESTART /NOCANCEL /SILENT /SUPPRESSMSGBOXES /CLOSEAPPLICATIONS
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo ####### %0 #######
pause
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set CONFIG=config\install-keepass2.txt
set EXE=..\software\keepass2-setup.exe
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo killing KeePass 2 process ...
taskkill /F /IM KeePass.exe 2>nul
echo installing KeePass 2 ...
start /wait %EXE% /LOADINF=%CONFIG% /NORESTART /NOCANCEL /SILENT /SUPPRESSMSGBOXES /CLOSEAPPLICATIONS
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo ####### %0 #######
pause

View File

@ -1,41 +1,41 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set T=%SystemDrive%\TEMP
set ZIP=..\software\mame64.7z
set TARGET=c:\MAME
set CONFIG=config\mame.ini
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %ZIP% (
echo ERROR: %ZIP% not found!
exit /b
)
echo ####### %0 #######
echo killing MAME64 processes...
taskkill /F /IM hakchi.exe 2>nul
rem create directory ...
mkdir %TARGET% 2>nul
echo unpacking MAME64 ...
7z x -y -aoa -o%T%\mame %ZIP%
echo moving files ...
move /Y %T%\mame\mame64.exe %TARGET%
move /Y %T%\mame\mame64.sym %TARGET%
mkdir %TARGET%\roms 2>nul
rd /S /Q %T%\mame
echo.
echo copy ini file ...
copy /Y %CONFIG% %TARGET%
echo copy startmenu link ...
copy /Y startmenu\MAME64.lnk %STARTMENU%
echo ####### %0 #######
pause
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set T=c:\TEMP
set ZIP=..\software\mame64.7z
set TARGET=c:\MAME
set CONFIG=config\mame.ini
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %ZIP% (
echo ERROR: %ZIP% not found!
exit /b
)
echo ####### %0 #######
echo killing MAME64 processes...
taskkill /F /IM hakchi.exe 2>nul
rem create directory ...
mkdir %TARGET% 2>nul
echo unpacking MAME64 ...
7z x -y -aoa -o%T%\mame %ZIP%
echo moving files ...
move /Y %T%\mame\mame64.exe %TARGET%
move /Y %T%\mame\mame64.sym %TARGET%
mkdir %TARGET%\roms 2>nul
rd /S /Q %T%\mame
echo.
echo copy ini file ...
copy /Y %CONFIG% %TARGET%
echo copy startmenu link ...
copy /Y startmenu\MAME64.lnk %STARTMENU%
echo ####### %0 #######
pause

View File

@ -1,36 +1,36 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set CONFIG=config\install-moneyplex.txt
set EXE=..\software\moneyplex-setup.exe
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo killing moneyplex processes...
taskkill /F /IM moneyplex.exe 2>nul
echo installing moneyplex ...
start /wait %EXE% /LOADINF=%CONFIG% /NORESTART /NOCANCEL /SILENT /SUPPRESSMSGBOXES /CLOSEAPPLICATIONS
echo moving moneyplex startmenu shortcut ...
move /Y %STARTMENU%\"moneyplex\moneyplex.lnk" %STARTMENU%\"MoneyPlex.lnk"
echo removing moneyplex startmenu folder ...
rd /S /Q %STARTMENU%\"moneyplex" 2>nul
echo renaming moneyplex icon on desktop ...
move /Y "%PUBLIC%\Desktop\moneyplex.lnk" "%PUBLIC%\Desktop\MoneyPlex.lnk"
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo ####### %0 #######
pause
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set CONFIG=config\install-moneyxplex.txt
set EXE=..\software\moneyplex-setup.exe
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo killing moneyplex processes...
taskkill /F /IM moneyplex.exe 2>nul
echo installing moneyplex ...
start /wait %EXE% /LOADINF=%CONFIG% /NORESTART /NOCANCEL /SILENT /SUPPRESSMSGBOXES /CLOSEAPPLICATIONS
echo moving moneyplex startmenu shortcut ...
move /Y %STARTMENU%\"moneyplex\moneyplex.lnk" %STARTMENU%\"MoneyPlex.lnk"
echo removing moneyplex startmenu folder ...
rd /S /Q %STARTMENU%\"moneyplex" 2>nul
echo renaming moneyplex icon on desktop ...
move /Y "%PUBLIC%\Desktop\moneyplex.lnk" "%PUBLIC%\Desktop\MoneyPlex.lnk"
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo ####### %0 #######
pause

View File

@ -1,34 +1,34 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set EXE=..\software\motorescue-setup.exe
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
set STARTMENU_USER=%APPDATA%\"Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
pause
exit /b
)
echo ####### %0 #######
echo installing Motorola/Lenovo Smart Assistant ...
start /wait %EXE%
echo removing Desktop icon ...
del /F "%USERPROFILE%\Desktop\Rescue and Smart Assistant.lnk" 2>nul
echo moving Smart Assistant startmenu shortcut ...
move /Y %STARTMENU_USER%\"Lenovo\Rescue and Smart Assistant.lnk" %STARTMENU%\"Lenovo Smart Assistant.lnk" 2>nul
echo removing Smart Assistant startmenu folder ...
rd /S /Q %STARTMENU_USER%\"Lenovo" 2>nul
echo refreshing desktop (W10 style) ...
ie4uinit.exe -show
echo ####### %0 #######
pause
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set EXE=..\software\motorescue-setup.exe
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
set STARTMENU_USER=%APPDATA%\"Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
pause
exit /b
)
echo ####### %0 #######
echo installing Motorola/Lenovo Smart Assistant ...
start /wait %EXE%
echo removing Desktop icon ...
del /F "%USERPROFILE%\Desktop\Rescue and Smart Assistant.lnk" 2>nul
echo moving Smart Assistant startmenu shortcut ...
move /Y %STARTMENU_USER%\"Lenovo\Rescue and Smart Assistant.lnk" %STARTMENU%\"Lenovo Smart Assistant.lnk" 2>nul
echo removing Smart Assistant startmenu folder ...
rd /S /Q %STARTMENU_USER%\"Lenovo" 2>nul
echo refreshing desktop (W10 style) ...
ie4uinit.exe -show
echo ####### %0 #######
pause

View File

@ -1,56 +0,0 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set T=%SystemDrive%\TEMP
set TOOLS=%SystemDrive%\tools
set CONFIG=config\office2019-standard.xml
set ARCHIVE=..\software\office2019-standard.7z
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %ARCHIVE% (
echo ERROR: %ARCHIVE% not found!
exit /b
)
echo ####### %0 #######
echo unpacking office files ...
%TOOLS%\7z x -y -aoa -o%T% %ARCHIVE%
echo starting MS-Office setup ...
@echo on
%TOOLS%\officedeploymenttool.exe /configure %CONFIG%
@echo off
echo TEMP cleanup ...
rd /S /Q %T%\Office 2>nul
echo renaming folder in startmenu ...
move /Y %STARTMENU%\"Microsoft Office Tools" %STARTMENU%\"Microsoft Office" 2>nul
echo moving links in startmenu ...
move /Y %STARTMENU%\Word.lnk %STARTMENU%\"Microsoft Office" 2>nul
move /Y %STARTMENU%\Excel.lnk %STARTMENU%\"Microsoft Office" 2>nul
move /Y %STARTMENU%\PowerPoint.lnk %STARTMENU%\"Microsoft Office" 2>nul
echo installing desktop icons ...
copy /Y %STARTMENU%\"Microsoft Office\Word.lnk" %PUBLIC%\Desktop
copy /Y %STARTMENU%\"Microsoft Office\Excel.lnk" %PUBLIC%\Desktop
copy /Y %STARTMENU%\"Microsoft Office\PowerPoint.lnk" %PUBLIC%\Desktop
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo cleaning startmenu ...
del /F /Q /A %STARTMENU%\"Microsoft Office\Telemetry*.lnk" 2>nul
del /F /Q /A %STARTMENU%\"Microsoft Office\Office Upload Center.lnk" 2>nul
echo ####### %0 #######
rem set filetypes ...
if EXIST ..\scripts\set-filetypes.cmd (
call ..\scripts\set-filetypes.cmd
)
pause

View File

@ -1,32 +1,44 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set CONFIG=config\install-ntlite.txt
set EXE=..\software\ntlite-setup.exe
set STARTMENU=%PROGRAMDATA%\"Microsoft\Windows\Start Menu\Programs"
set STARTMENU_USER=%APPDATA%\"Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo installing NTLite ...
start /wait %EXE% /LOADINF=%CONFIG% /NORESTART /NOCANCEL /SILENT /SUPPRESSMSGBOXES /CLOSEAPPLICATIONS
echo moving NTLite startmenu shortcut ...
mkdir %STARTMENU%\Tools 2>nul
move /Y %STARTMENU%\"NTLite\NTLite.lnk" %STARTMENU%\Tools 2>nul
echo cleanup ...
rd /S /Q %STARTMENU%\"NTLite" 2>nul
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo ####### %0 #######
pause
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set CONFIG=config\install-ntlite.txt
set EXE=..\software\ntlite-setup.exe
set SETTINGS=..\company\ntlite-settings.xml
set LICENSE=..\company\ntlite-license.dat
set STARTMENU=%PROGRAMDATA%\"Microsoft\Windows\Start Menu\Programs"
set STARTMENU_USER=%APPDATA%\"Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo installing NTLite ...
start /wait %EXE% /LOADINF=%CONFIG% /NORESTART /NOCANCEL /SILENT /SUPPRESSMSGBOXES /CLOSEAPPLICATIONS
echo moving NTLite startmenu shortcut ...
mkdir %STARTMENU%\Tools 2>nul
move /Y %STARTMENU%\"NTLite\NTLite.lnk" %STARTMENU%\Tools 2>nul
echo cleanup ...
rd /S /Q %STARTMENU%\"NTLite" 2>nul
if EXIST %LICENSE% (
echo installing license ...
copy /Y %LICENSE% "%PROGRAMFILES%\NTLite\license.dat"
)
if EXIST %SETTINGS% (
echo copying settings ...
copy /Y %SETTINGS% "%PROGRAMFILES%\NTLite\settings.xml"
)
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo ####### %0 #######
pause

View File

@ -1,29 +1,29 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set EXE=..\software\obsstudio-setup.exe
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
pause
exit /b
)
echo ####### %0 #######
echo installing OBS Studio ...
start /wait %EXE% /S
echo moving OBS Studio startmenu shortcut ...
move /Y %STARTMENU%\"OBS Studio\OBS*.lnk" %STARTMENU%
echo removing OBS Studio startmenu folder ...
rd /S /Q %STARTMENU%\"OBS Studio" 2>nul
echo refreshing desktop (W10 style) ...
ie4uinit.exe -show
echo ####### %0 #######
pause
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set EXE=..\software\obsstudio-setup.exe
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
pause
exit /b
)
echo ####### %0 #######
echo installing OBS Studio ...
start /wait %EXE% /S
echo moving OBS Studio startmenu shortcut ...
move /Y %STARTMENU%\"OBS Studio\OBS*.lnk" %STARTMENU%
echo removing OBS Studio startmenu folder ...
rd /S /Q %STARTMENU%\"OBS Studio" 2>nul
echo refreshing desktop (W10 style) ...
ie4uinit.exe -show
echo ####### %0 #######
pause

View File

@ -1,39 +1,31 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set OPT=..\optional
set SOFTWARE=..\software
set MSI=openvpn-setup.msi
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %SOFTWARE%\%MSI% (
echo ERROR: %SOFTWARE%\%MSI% not found!
exit /b
)
echo ####### %0 #######
echo installing OpenVPN ...
cd %SOFTWARE%
@echo on
msiexec /i %MSI% /q
@echo off
cd %OPT%
echo moving OpenVPN startmenu shortcut ...
move /Y %STARTMENU%\"OpenVPN\OpenVPN GUI.lnk" %STARTMENU%\OpenVPN.lnk
echo removing Inkscape startmenu folder ...
rd /S /Q %STARTMENU%\"OpenVPN" 2>nul
echo removing Desktop icon ...
del /F /Q "%PUBLIC%\Desktop\OpenVPN GUI.lnk" 2>nul
echo refreshing desktop (W10 style) ...
ie4uinit.exe -show
echo ####### %0 #######
pause
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set OPT=..\optional
set SOFTWARE=..\software
set MSI=openvpn-setup.msi
if NOT EXIST %SOFTWARE%\%MSI% (
echo ERROR: %SOFTWARE%\%MSI% not found!
exit /b
)
echo ####### %0 #######
echo installing OpenVPN ...
cd %SOFTWARE%
@echo on
msiexec /i %MSI% /q
@echo off
cd %OPT%
echo removing Desktop icon ...
del /F /Q "%PUBLIC%\Desktop\OpenVPN Connect.lnk" 2>nul
echo refreshing desktop (W10 style) ...
ie4uinit.exe -show
echo ####### %0 #######
pause

View File

@ -1,52 +1,48 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set OPT=..\optional
set SOFTWARE=..\software
set MSI=pdf24-setup.msi
set CONFIG=config\pdf24.reg
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %SOFTWARE%\%MSI% (
echo ERROR: %SOFTWARE%\%MSI% not found!
exit /b
)
echo ####### %0 #######
echo installing PDF24 ...
cd %SOFTWARE%
@echo on
msiexec /i %MSI% /q
@echo off
cd %OPT%
echo tweaking PDF24 ...
reg import %CONFIG%
echo removing Desktop icons ...
del /F /Q "%PUBLIC%\Desktop\PDF24 Toolbox.lnk" 2>nul
del /F /Q "%PUBLIC%\Desktop\PDF24 Launcher.lnk" 2>nul
echo removing a Startmenu icon ...
del /F /Q %STARTMENU%"\PDF24 Launcher.lnk" 2>nul
echo refreshing desktop (W10 style) ...
ie4uinit.exe -show
echo ####### %0 #######
rem set filetypes ...
if EXIST ..\scripts\set-filetypes.cmd (
call ..\scripts\set-filetypes.cmd
)
rem remove the FAX printer ...
call remove-printer.cmd "PDF24 Fax"
rem ... and remove the Microsoft fax printer ...
call remove-printer.cmd "Microsoft Print to PDF"
pause
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set OPT=..\optional
set SOFTWARE=..\software
set MSI=pdf24-setup.msi
set CONFIG=config\pdf24.reg
if NOT EXIST %SOFTWARE%\%MSI% (
echo ERROR: %SOFTWARE%\%MSI% not found!
exit /b
)
echo ####### %0 #######
echo installing PDF24 ...
cd %SOFTWARE%
@echo on
msiexec /i %MSI% /q
@echo off
cd %OPT%
echo tweaking PDF24 ...
reg import %CONFIG%
echo removing Desktop icons ...
del /F /Q "%PUBLIC%\Desktop\PDF24.lnk" 2>nul
del /F /Q "%USERPROFILE%\Desktop\Online PDF Tools.url" 2>nul
echo refreshing desktop (W10 style) ...
ie4uinit.exe -show
echo ####### %0 #######
rem set filetypes ...
if EXIST ..\scripts\set-filetypes.cmd (
call ..\scripts\set-filetypes.cmd
)
rem remove the FAX printer ...
call remove-printer.cmd "PDF24 Fax"
rem ... and remove the Microsoft fax printer ...
call remove-printer.cmd "Microsoft Print to PDF"
pause

View File

@ -1,78 +1,78 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set T=%SystemDrive%\TEMP
set CONFIG=config\install-purebasic.txt
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
rem licensed version (exe contains key!)
set EXE=..\software\purebasic-setup.exe
rem demo version (publically accessible)
set ZIP=..\software\purebasic.zip
echo ####### %0 #######
echo killing PureBasic processes...
taskkill /F /IM PureBasic.exe 2>nul
taskkill /F /IM pbcompiler.exe 2>nul
rem YES - this works. It is a "AND" construct...
if NOT EXIST %EXE% if NOT EXIST %ZIP% (
echo WARNING: no PureBasic zipfile or exe-installer found!
goto END
)
if EXIST %EXE% (
echo INFO: %EXE% found, installing licensed version ...
echo installing purebasic ...
start /wait %EXE% /LOADINF=%CONFIG% /NORESTART /NOCANCEL ^
/SILENT /SUPPRESSMSGBOXES /CLOSEAPPLICATIONS
goto LINK
)
if EXIST %ZIP% (
echo INFO: %ZIP% found, installing demo version ...
7z e -y -aoa -o%T%\purebasic %ZIP%
move /Y %T%\purebasic\PureBasic*.exe %T%\purebasic\purebasic-setup.exe
echo installing purebasic ...
start /wait %T%\purebasic\purebasic-setup.exe ^
/LOADINF=%CONFIG% /NORESTART /NOCANCEL /SILENT /SUPPRESSMSGBOXES /CLOSEAPPLICATIONS
echo cleanup ...
rd /S /Q %T%\purebasic 2>nul
goto LINK
)
:LINK
echo removing old desktop links ...
del /F /Q /A "%PUBLIC%\Desktop\PureBasic*.lnk" 2>nul
del /F /Q /A "%USERPROFILE%\Desktop\PureBasic*.lnk" 2>nul
echo copying new PureBasic link to public desktop ...
copy /Y %STARTMENU%\"PureBasic\PureBasic (x64).lnk" %PUBLIC%\Desktop\PureBasic.lnk
echo moving PureBasic startmenu shortcut ...
move /Y %STARTMENU%\"PureBasic\PureBasic (x64).lnk" %STARTMENU%\PureBasic.lnk
echo removing PureBasic startmenu folder ...
rd /S /Q %STARTMENU%\PureBasic 2>nul
rem refresh desktop (W10 style)
ie4uinit.exe -show
:END
echo ####### %0 #######
pause
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set T=c:\TEMP
set CONFIG=config\install-purebasic.txt
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
rem licensed version (exe contains key!)
set EXE=..\company\purebasic-setup.exe
rem demo version (publically accessible)
set ZIP=..\software\purebasic.zip
echo ####### %0 #######
echo killing PureBasic processes...
taskkill /F /IM PureBasic.exe 2>nul
taskkill /F /IM pbcompiler.exe 2>nul
rem YES - this works. It is a "AND" construct...
if NOT EXIST %EXE% if NOT EXIST %ZIP% (
echo WARNING: no PureBasic zipfile or exe-installer found!
goto END
)
if EXIST %EXE% (
echo INFO: %EXE% found, installing licensed version ...
echo installing purebasic ...
start /wait %EXE% /LOADINF=%CONFIG% /NORESTART /NOCANCEL ^
/SILENT /SUPPRESSMSGBOXES /CLOSEAPPLICATIONS
goto LINK
)
if EXIST %ZIP% (
echo INFO: %ZIP% found, installing demo version ...
7z e -y -aoa -o%T%\purebasic %ZIP%
move /Y %T%\purebasic\PureBasic*.exe %T%\purebasic\purebasic-setup.exe
echo installing purebasic ...
start /wait %T%\purebasic\purebasic-setup.exe ^
/LOADINF=%CONFIG% /NORESTART /NOCANCEL /SILENT /SUPPRESSMSGBOXES /CLOSEAPPLICATIONS
echo cleanup ...
rd /S /Q %T%\purebasic 2>nul
goto LINK
)
:LINK
echo removing old desktop links ...
del /F /Q /A "%PUBLIC%\Desktop\PureBasic*.lnk" 2>nul
del /F /Q /A "%USERPROFILE%\Desktop\PureBasic*.lnk" 2>nul
echo copying new PureBasic link to public desktop ...
copy /Y %STARTMENU%\"PureBasic\PureBasic (x64).lnk" %PUBLIC%\Desktop\PureBasic.lnk
echo moving PureBasic startmenu shortcut ...
move /Y %STARTMENU%\"PureBasic\PureBasic (x64).lnk" %STARTMENU%\PureBasic.lnk
echo removing PureBasic startmenu folder ...
rd /S /Q %STARTMENU%\PureBasic 2>nul
rem refresh desktop (W10 style)
ie4uinit.exe -show
:END
echo ####### %0 #######
pause

View File

@ -1,24 +1,24 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set OPT=..\optional
set SOFTWARE=..\software
set MSI=python2-setup.msi
if NOT EXIST %SOFTWARE%\%MSI% (
echo ERROR: %SOFTWARE%\%MSI% not found!
exit /b
)
echo ####### %0 #######
cd %SOFTWARE%
@echo on
msiexec /i %MSI% /passive
@echo off
cd %OPT%
echo ####### %0 #######
pause
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set OPT=..\optional
set SOFTWARE=..\software
set MSI=python2-setup.msi
if NOT EXIST %SOFTWARE%\%MSI% (
echo ERROR: %SOFTWARE%\%MSI% not found!
exit /b
)
echo ####### %0 #######
cd %SOFTWARE%
@echo on
msiexec /i %MSI% /passive
@echo off
cd %OPT%
echo ####### %0 #######
pause

View File

@ -1,22 +0,0 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set SOFTWARE=..\software
set MSU=WindowsTH-KB2693643-x64.msu
if NOT EXIST %SOFTWARE%\%MSU% (
echo ERROR: %SOFTWARE%\%MSU% not found!
exit /b
)
echo ####### %0 #######
cd %SOFTWARE%
@echo on
wusa %MSU%
@echo off
echo ####### %0 #######
pause

View File

@ -1,13 +0,0 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
echo ####### %0 #######
echo install Windows RSAT tools ...
powershell -Command "Add-WindowsCapability -Online -Name Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0"
echo.
echo ####### %0 #######
pause

View File

@ -1,70 +1,69 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set OPT=..\optional
set SOFTWARE=..\software
set MSI=seafile-setup.msi
set CUSTOM_SETTINGS=..\custom\settings.cmd
set seafile_server_url=0
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %SOFTWARE%\%MSI% (
echo ERROR: %SOFTWARE%\%MSI% not found!
exit /b
)
echo ####### %0 #######
rem ===================
rem CONFIGFILE CHECK
rem ===================
echo.
echo searching for CUSTOM settings ...
if NOT EXIST %CUSTOM_SETTINGS% (
echo INFO: config file %CUSTOM_SETTINGS% NOT FOUND
) else (
echo OK. Loading CUSTOM settings ...
call %CUSTOM_SETTINGS%
)
echo installing SeaFile ...
cd %SOFTWARE%
@echo on
msiexec /i %MSI% /qn
@echo off
cd %OPT%
echo restarting explorer ...
taskkill /f /im explorer.exe 1>nul 2>nul
start explorer.exe
echo removing SeaFile Desktop icon ...
del /F "%Public%\Desktop\SeaFile.lnk" 2>nul
echo moving SeaFile startmenu shortcut ...
move /Y %STARTMENU%\"Seafile\Start Seafile.lnk" %STARTMENU%\SeaFile.lnk
echo removing SeaFile startmenu folder ...
rd /S /Q %STARTMENU%\"Seafile" 2>nul
echo refreshing desktop (W10 style) ...
ie4uinit.exe -show
if seafile_server_url == 0 (
echo no SeaFile server URL found!
) else (
echo setting SeaFile server URL ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\SeaFile" ^
/v "PreconfigureServerAddr" /d "%seafile_server_url%" /t REG_SZ /f 1>nul
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\SeaFile" ^
/v "PreconfigureServerAddrOnly" /d 1 /t REG_SZ /f 1>nul
)
echo ####### %0 #######
pause
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set OPT=..\optional
set SOFTWARE=..\software
set MSI=seafile-setup.msi
set SETTINGS=..\company\settings.cmd
set seafile_server_url=0
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %SOFTWARE%\%MSI% (
echo ERROR: %SOFTWARE%\%MSI% not found!
exit /b
)
rem ===================
rem CONFIGFILE CHECK
rem ===================
if NOT EXIST %SETTINGS% (
echo.
echo WARNING: %SETTINGS% NOT FOUND
echo.
) else (
call %SETTINGS%
)
echo ####### %0 #######
echo installing SeaFile ...
cd %SOFTWARE%
@echo on
msiexec /i %MSI% /qn
@echo off
cd %OPT%
echo restarting explorer ...
taskkill /f /im explorer.exe 1>nul 2>nul
start explorer.exe
echo removing SeaFile Desktop icon ...
del /F "%Public%\Desktop\SeaFile.lnk" 2>nul
echo moving SeaFile startmenu shortcut ...
move /Y %STARTMENU%\"Seafile\Start Seafile.lnk" %STARTMENU%\SeaFile.lnk
echo removing SeaFile startmenu folder ...
rd /S /Q %STARTMENU%\"Seafile" 2>nul
echo refreshing desktop (W10 style) ...
ie4uinit.exe -show
if seafile_server_url == 0 (
echo no SeaFile server URL found!
) else (
echo setting SeaFile server URL ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\SeaFile" ^
/v "PreconfigureServerAddr" /d "%seafile_server_url%" /t REG_SZ /f 1>nul
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\SeaFile" ^
/v "PreconfigureServerAddrOnly" /d 1 /t REG_SZ /f 1>nul
)
echo ####### %0 #######
pause

View File

@ -1,26 +1,26 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set CONFIG=config\install-sharemouse.txt
set EXE=..\software\sharemouse-setup.exe
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo killing ShareMouse processes...
taskkill /F /IM sharemouse.exe 2>nul
echo installing ShareMouse ...
start /wait %EXE% /LOADINF=%CONFIG% /NORESTART /NOCANCEL /SILENT /SUPPRESSMSGBOXES /CLOSEAPPLICATIONS
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo ####### %0 #######
pause
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set CONFIG=config\install-sharemouse.txt
set EXE=..\software\sharemouse-setup.exe
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo killing ShareMouse processes...
taskkill /F /IM sharemouse.exe 2>nul
echo installing ShareMouse ...
start /wait %EXE% /LOADINF=%CONFIG% /NORESTART /NOCANCEL /SILENT /SUPPRESSMSGBOXES /CLOSEAPPLICATIONS
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo ####### %0 #######
pause

View File

@ -1,49 +1,43 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set TOOLS=%SystemDrive%\tools
set INIFILE=config\snapcontrol.ini
set SOFTWARE=..\software
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs\tools"
if NOT EXIST %SOFTWARE%\snapcontrol.exe (
echo ERROR: %SOFTWARE%\snapcontrol.exe not found!
exit /b
)
echo ####### %0 #######
echo killing snapcontrol processes...
taskkill /F /IM snapcontrol.exe 2>nul
echo killing snapshot processes...
taskkill /F /IM snapshot64.exe 2>nul
echo copy snapcontrol binary to [ %windir% ] ...
copy /Y %SOFTWARE%\snapcontrol.exe %windir% 2>nul
if EXIST %SOFTWARE%\snapshot64_licensed.exe (
echo copying LICENSED snapshot64 to %windir% ...
copy /Y %SOFTWARE%\snapshot64_licensed.exe %windir%\snapshot64.exe
) else (
echo copying STANDARD snapshot64 to boot image ...
copy /Y %SOFTWARE%\snapshot64.exe %windir%
)
if NOT EXIST %windir%\snapcontrol.ini (
echo copying STANDARD inifile to %windir% ...
copy /Y %INIFILE% %windir%
) else (
echo inifile already copied. nothing to do!
)
echo creating scheduler task ...
%windir%\snapcontrol /I
echo copy startmenu link ...
copy /Y "startmenu\Drive Snapshot.lnk" %STARTMENU%
echo ####### %0 #######
pause
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set TOOLS=%SystemDrive%\tools
set INI_STANDARD=..\scripts\config\snapcontrol.ini
set INI_COMPANY=..\company\snapcontrol.ini
echo ####### %0 #######
echo moving snapcontrol binary to [ %windir% ] ...
move /Y %TOOLS%\snapcontrol.exe %windir% 2>nul
if EXIST %INI_COMPANY% (
if NOT EXIST %windir%\snapcontrol.ini (
echo putting COMPANY inifile in place ...
copy /Y %INI_COMPANY% %windir%
%TOOLS%\searchreplace %windir%\snapcontrol.ini "__COMPUTERNAME__" "%COMPUTERNAME%"
%windir%\snapcontrol /I
) else (
echo inifile already copied. nothing to do!
)
) else (
if EXIST %INI_STANDARD% (
if NOT EXIST %windir%\snapcontrol.ini (
echo putting STANDARD inifile in place ...
copy /Y %INI_STANDARD% %windir%
%windir%\snapcontrol /I
) else (
echo inifile already copied. nothing to do!
)
)
)
echo ####### %0 #######
pause

View File

@ -1,126 +0,0 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set OPT=..\optional
set SOFTWARE=..\software
set MSI=softmaker-setup-2024.msi
set CUSTOM_SETTINGS=..\custom\settings.cmd
set softmaker_license=0
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %SOFTWARE%\%MSI% (
echo ERROR: %SOFTWARE%\%MSI% not found!
exit /b
)
echo ####### %0 #######
rem ===================
rem CONFIGFILE CHECK
rem ===================
echo.
echo searching for CUSTOM settings ...
if NOT EXIST %CUSTOM_SETTINGS% (
echo INFO: config file %CUSTOM_SETTINGS% NOT FOUND
) else (
echo OK. Loading CUSTOM settings ...
call %CUSTOM_SETTINGS%
)
cd %SOFTWARE%
@echo on
msiexec /i %MSI% /qb APPLICATIONFOLDER="c:\Program Files\Softmaker Office 2024" ^
INSTALLTM=1 INSTALLPM=1 INSTALLPR=1 INSTALLTB1=0 INSTALLTB2=0 /l*v c:\temp\softmaker.log
@echo off
del /F c:\temp\softmaker.log
cd %OPT%
echo installing desktop icons ...
copy /Y %STARTMENU%\"Softmaker Office 2024\PlanMaker 2024.lnk" ^
%PUBLIC%\Desktop\PlanMaker.lnk
copy /Y %STARTMENU%\"Softmaker Office 2024\Presentations 2024.lnk" ^
%PUBLIC%\Desktop\Presentations.lnk
copy /Y %STARTMENU%\"Softmaker Office 2024\TextMaker 2024.lnk" ^
%PUBLIC%\Desktop\Textmaker.lnk
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo cleaning startmenu ...
del /F /Q /A %STARTMENU%\"Softmaker Office 2024\Bitte*.*" 2>nul
echo disabling automatic updates for Softmaker Office 2024 ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\SoftMaker Office 2024" ^
/v "UpdateCheckEnabled" /d 0 /t REG_DWORD /f
echo disabling WEB help ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\SoftMaker Office 2024" ^
/v "HelpSoftMaker" /d 0 /t REG_DWORD /f
echo disabling License Management ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\SoftMaker Office 2024" ^
/v "HelpManage" /d 0 /t REG_DWORD /f
echo disabling the asking for user infos ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\SoftMaker Office 2024" ^
/v "AskUserInfo" /d 0 /t REG_DWORD /f
echo setting dialog language to US-english ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\SoftMaker Office 2024" ^
/v "DlgLID" /d 409 /t REG_DWORD /f
echo disabling backups ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\TextMaker 2024" ^
/v "AutoSave" /d 0 /t REG_DWORD /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\PlanMaker 2024" ^
/v "AutoSave" /d 0 /t REG_DWORD /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\Presentations 2024" ^
/v "AutoSave" /d 0 /t REG_DWORD /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\TextMaker 2024" ^
/v "BackupFilesNumber" /d 1 /t REG_DWORD /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\PlanMaker 2024" ^
/v "BackupFilesNumber" /d 1 /t REG_DWORD /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\Presentations 2024" ^
/v "BackupFilesNumber" /d 1 /t REG_DWORD /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\TextMaker 2024" ^
/v "BackupFilesPath" /d "" /t REG_SZ /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\PlanMaker 2024" ^
/v "BackupFilesPath" /d "" /t REG_SZ /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\Presentations 2024" ^
/v "BackupFilesPath" /d "" /t REG_SZ /f
echo setting default formats ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\TextMaker 2024" ^
/v "DefaultFormat" /d 6 /t REG_DWORD /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\PlanMaker 2024" ^
/v "DefaultFormat" /d 6 /t REG_DWORD /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\Presentations 2024" ^
/v "DefaultFormat" /d 6 /t REG_DWORD /f
echo disabling smart quotes ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\TextMaker 2024" ^
/v "SmartQuotes" /d 0 /t REG_DWORD /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\PlanMaker 2024" ^
/v "SmartQuotes" /d 0 /t REG_DWORD /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\Presentations 2024" ^
/v "SmartQuotes" /d 0 /t REG_DWORD /f
if softmaker_license == 0 (
echo no softmaker license found!
) else (
echo adding softmaker license ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\SoftMaker Office 2024" ^
/v "ProductKey" /d "%softmaker_license%" /t REG_SZ /f
)
echo ####### %0 #######
rem set filetypes ...
if EXIST ..\scripts\set-filetypes.cmd (
call ..\scripts\set-filetypes.cmd
)
pause

View File

@ -1,126 +1,147 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set OPT=..\optional
set SOFTWARE=..\software
set MSI=softmaker-setup.msi
set CUSTOM_SETTINGS=..\custom\settings.cmd
set softmaker_license=0
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %SOFTWARE%\%MSI% (
echo ERROR: %SOFTWARE%\%MSI% not found!
exit /b
)
echo ####### %0 #######
rem ===================
rem CONFIGFILE CHECK
rem ===================
echo.
echo searching for CUSTOM settings ...
if NOT EXIST %CUSTOM_SETTINGS% (
echo INFO: config file %CUSTOM_SETTINGS% NOT FOUND
) else (
echo OK. Loading CUSTOM settings ...
call %CUSTOM_SETTINGS%
)
cd %SOFTWARE%
@echo on
msiexec /i %MSI% /qb APPLICATIONFOLDER="c:\Program Files\Softmaker Office 2021" ^
INSTALLTM=1 INSTALLPM=1 INSTALLPR=1 INSTALLTB1=0 INSTALLTB2=0 /l*v c:\temp\softmaker.log
@echo off
del /F c:\temp\softmaker.log
cd %OPT%
echo installing desktop icons ...
copy /Y "%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs\Softmaker Office 2021\PlanMaker 2021.lnk" ^
%PUBLIC%\Desktop\PlanMaker.lnk
copy /Y "%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs\Softmaker Office 2021\Presentations 2021.lnk" ^
%PUBLIC%\Desktop\Presentations.lnk
copy /Y "%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs\Softmaker Office 2021\TextMaker 2021.lnk" ^
%PUBLIC%\Desktop\Textmaker.lnk
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo cleaning startmenu ...
del /F /Q /A %STARTMENU%\"Softmaker Office 2021\Bitte*.*" 2>nul
echo disabling automatic updates for Softmaker Office 2021 ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\SoftMaker Office 2021" ^
/v "UpdateCheckEnabled" /d 0 /t REG_DWORD /f
echo disabling WEB help ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\SoftMaker Office 2021" ^
/v "HelpSoftMaker" /d 0 /t REG_DWORD /f
echo disabling License Management ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\SoftMaker Office 2021" ^
/v "HelpManage" /d 0 /t REG_DWORD /f
echo disabling the asking for user infos ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\SoftMaker Office 2021" ^
/v "AskUserInfo" /d 0 /t REG_DWORD /f
echo setting dialog language to US-english ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\SoftMaker Office 2021" ^
/v "DlgLID" /d 409 /t REG_DWORD /f
echo disabling backups ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\TextMaker 2021" ^
/v "AutoSave" /d 0 /t REG_DWORD /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\PlanMaker 2021" ^
/v "AutoSave" /d 0 /t REG_DWORD /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\Presentations 2021" ^
/v "AutoSave" /d 0 /t REG_DWORD /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\TextMaker 2021" ^
/v "BackupFilesNumber" /d 1 /t REG_DWORD /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\PlanMaker 2021" ^
/v "BackupFilesNumber" /d 1 /t REG_DWORD /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\Presentations 2021" ^
/v "BackupFilesNumber" /d 1 /t REG_DWORD /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\TextMaker 2021" ^
/v "BackupFilesPath" /d "" /t REG_SZ /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\PlanMaker 2021" ^
/v "BackupFilesPath" /d "" /t REG_SZ /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\Presentations 2021" ^
/v "BackupFilesPath" /d "" /t REG_SZ /f
echo setting default formats ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\TextMaker 2021" ^
/v "DefaultFormat" /d 6 /t REG_DWORD /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\PlanMaker 2021" ^
/v "DefaultFormat" /d 6 /t REG_DWORD /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\Presentations 2021" ^
/v "DefaultFormat" /d 6 /t REG_DWORD /f
echo disabling smart quotes ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\TextMaker 2021" ^
/v "SmartQuotes" /d 0 /t REG_DWORD /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\PlanMaker 2021" ^
/v "SmartQuotes" /d 0 /t REG_DWORD /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\Presentations 2021" ^
/v "SmartQuotes" /d 0 /t REG_DWORD /f
if softmaker_license == 0 (
echo no softmaker license found!
) else (
echo adding softmaker license ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\SoftMaker Office 2021" ^
/v "ProductKey" /d "%softmaker_license%" /t REG_SZ /f
)
echo ####### %0 #######
rem set filetypes ...
if EXIST ..\scripts\set-filetypes.cmd (
call ..\scripts\set-filetypes.cmd
)
pause
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set OPT=..\optional
set CONFIG=config
set SOFTWARE=..\software
set MSI=softmaker-setup.msi
set SETTINGS=..\company\settings.cmd
set softmaker_license=0
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %SOFTWARE%\%MSI% (
echo ERROR: %SOFTWARE%\%MSI% not found!
exit /b
)
rem ===================
rem CONFIGFILE CHECK
rem ===================
if NOT EXIST %SETTINGS% (
echo.
echo WARNING: %SETTINGS% NOT FOUND
echo.
) else (
call %SETTINGS%
)
echo ####### %0 #######
cd %SOFTWARE%
@echo on
msiexec /i %MSI% /qb APPLICATIONFOLDER="c:\Program Files\Softmaker Office 2021" ^
INSTALLTM=1 INSTALLPM=1 INSTALLPR=1 INSTALLTB1=0 INSTALLTB2=0 /l*v c:\temp\softmaker.log
@echo off
del /F c:\temp\softmaker.log
cd %OPT%
echo installing desktop icons ...
copy /Y "%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs\Softmaker Office 2021\PlanMaker 2021.lnk" ^
%PUBLIC%\Desktop\PlanMaker.lnk
copy /Y "%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs\Softmaker Office 2021\Presentations 2021.lnk" ^
%PUBLIC%\Desktop\Presentations.lnk
copy /Y "%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs\Softmaker Office 2021\TextMaker 2021.lnk" ^
%PUBLIC%\Desktop\Textmaker.lnk
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo cleaning startmenu ...
del /F /Q /A %STARTMENU%\"Softmaker Office 2021\Bitte*.*" 2>nul
echo disabling automatic updates for Softmaker Office 2021 ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\SoftMaker Office 2021" ^
/v "UpdateCheckEnabled" /d 0 /t REG_DWORD /f
echo disabling WEB help ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\SoftMaker Office 2021" ^
/v "HelpSoftMaker" /d 0 /t REG_DWORD /f
echo disabling License Management ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\SoftMaker Office 2021" ^
/v "HelpManage" /d 0 /t REG_DWORD /f
echo disabling the asking for user infos ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\SoftMaker Office 2021" ^
/v "AskUserInfo" /d 0 /t REG_DWORD /f
echo setting dialog language to US-english ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\SoftMaker Office 2021" ^
/v "DlgLID" /d 409 /t REG_DWORD /f
echo disabling backups ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\TextMaker 2021" ^
/v "AutoSave" /d 0 /t REG_DWORD /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\PlanMaker 2021" ^
/v "AutoSave" /d 0 /t REG_DWORD /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\Presentations 2021" ^
/v "AutoSave" /d 0 /t REG_DWORD /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\TextMaker 2021" ^
/v "BackupFilesNumber" /d 1 /t REG_DWORD /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\PlanMaker 2021" ^
/v "BackupFilesNumber" /d 1 /t REG_DWORD /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\Presentations 2021" ^
/v "BackupFilesNumber" /d 1 /t REG_DWORD /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\TextMaker 2021" ^
/v "BackupFilesPath" /d "" /t REG_SZ /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\PlanMaker 2021" ^
/v "BackupFilesPath" /d "" /t REG_SZ /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\Presentations 2021" ^
/v "BackupFilesPath" /d "" /t REG_SZ /f
echo copying .ini files ...
mkdir %USERPROFILE%\Documents\SoftMaker\Settings 2>nul
copy /Y %CONFIG%\*21config.ini %USERPROFILE%\Documents\SoftMaker\Settings
echo preparing Softmaker documents folders ...
for %%D in (
"Backup"
"Bullets"
"Samples"
"PlanMaker 2021 templates"
"Presentations 2021 designs"
"TextMaker 2021 templates"
) do (
mkdir %USERPROFILE%\Documents\SoftMaker\%%D 2>/nul
attrib +R %USERPROFILE%\Documents\SoftMaker\%%D 2>/nul
)
echo setting default formats ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\TextMaker 2021" ^
/v "DefaultFormat" /d 6 /t REG_DWORD /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\PlanMaker 2021" ^
/v "DefaultFormat" /d 6 /t REG_DWORD /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\Presentations 2021" ^
/v "DefaultFormat" /d 6 /t REG_DWORD /f
echo disabling smart quotes ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\TextMaker 2021" ^
/v "SmartQuotes" /d 0 /t REG_DWORD /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\PlanMaker 2021" ^
/v "SmartQuotes" /d 0 /t REG_DWORD /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\Presentations 2021" ^
/v "SmartQuotes" /d 0 /t REG_DWORD /f
if softmaker_license == 0 (
echo no softmaker license found!
) else (
echo adding softmaker license ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\SoftMaker Office 2021" ^
/v "ProductKey" /d "%softmaker_license%" /t REG_SZ /f
)
echo ####### %0 #######
rem set filetypes ...
if EXIST ..\scripts\set-filetypes.cmd (
call ..\scripts\set-filetypes.cmd
)
pause

View File

@ -1,29 +1,29 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set EXE=..\software\sonos2-setup.exe
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo installing SONOS 2 client ...
start /wait %EXE% /L1031 /S /v/qn
echo moving SONOS startmenu shortcut ...
move /Y %STARTMENU%\"Sonos\Sonos.lnk" %STARTMENU%\Sonos.lnk
echo removing SONOS startmenu folder ...
rd /S /Q %STARTMENU%\"Sonos" 2>nul
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo ####### %0 #######
pause
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set EXE=..\software\sonos2-setup.exe
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo installing SONOS 2 client ...
start /wait %EXE% /L1031 /S /v/qn
echo moving SONOS startmenu shortcut ...
move /Y %STARTMENU%\"Sonos\Sonos.lnk" %STARTMENU%\Sonos.lnk
echo removing SONOS startmenu folder ...
rd /S /Q %STARTMENU%\"Sonos" 2>nul
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo ####### %0 #######
pause

View File

@ -1,29 +1,29 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set EXE=..\software\steam-setup.exe
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo killing STEAM processes...
taskkill /F /IM steam.exe 2>nul
echo installing STEAM ...
start /wait %EXE% /S
echo moving STEAM startmenu shortcut ...
move /Y %STARTMENU%\"Steam\Steam.lnk" %STARTMENU%
echo removing Steam startmenu folder ...
rd /S /Q %STARTMENU%\"Steam" 2>nul
echo ####### %0 #######
pause
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set EXE=..\software\steam-setup.exe
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo killing STEAM processes...
taskkill /F /IM steam.exe 2>nul
echo installing STEAM ...
start /wait %EXE% /S
echo moving STEAM startmenu shortcut ...
move /Y %STARTMENU%\"Steam\Steam.lnk" %STARTMENU%
echo removing Steam startmenu folder ...
rd /S /Q %STARTMENU%\"Steam" 2>nul
echo ####### %0 #######
pause

View File

@ -1,42 +1,42 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set EXE=..\software\totalcommander-setup.exe
set KEY=..\custom\wincmd.key
set TARGET=c:\totalcmd
set STARTMENU=%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs
set STARTMENU_USER=%APPDATA%\Microsoft\Windows\Start Menu\Programs
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo installing TotalCommander ...
start /wait %EXE% /AHMGDU
echo renaming and moving TotalCommander desktop link to public desktop ...
move /Y "%USERPROFILE%\Desktop\Total Commander*" "%PUBLIC%\Desktop\Total Commander.lnk"
icacls "%PUBLIC%\Desktop\Total Commander.lnk" /grant Users:R
echo moving Total Commander startmenu shortcut ...
move /Y "%STARTMENU_USER%\Total Commander\Total Commander 64 bit.lnk" "%STARTMENU%\Tools\Total Commander.lnk"
icacls "%STARTMENU%\Tools\Total Commander.lnk" /grant Users:R
echo removing Total Commander startmenu folder ...
rd /S /Q "%STARTMENU_USER%\Total Commander" 2>nul
if EXIST %KEY% (
echo installing license ...
copy /Y %KEY% %TARGET%
)
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo ####### %0 #######
pause
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set EXE=..\software\totalcommander-setup.exe
set KEY=..\company\wincmd.key
set TARGET=c:\totalcmd
set STARTMENU=%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs
set STARTMENU_USER=%APPDATA%\Microsoft\Windows\Start Menu\Programs
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo installing TotalCommander ...
start /wait %EXE% /AHMGDU
echo renaming and moving TotalCommander desktop link to public desktop ...
move /Y "%USERPROFILE%\Desktop\Total Commander*" "%PUBLIC%\Desktop\Total Commander.lnk"
icacls "%PUBLIC%\Desktop\Total Commander.lnk" /grant Users:R
echo moving Total Commander startmenu shortcut ...
move /Y "%STARTMENU_USER%\Total Commander\Total Commander 64 bit.lnk" "%STARTMENU%\Tools\Total Commander.lnk"
icacls "%STARTMENU%\Tools\Total Commander.lnk" /grant Users:R
echo removing Total Commander startmenu folder ...
rd /S /Q "%STARTMENU_USER%\Total Commander" 2>nul
if EXIST %KEY% (
echo installing license ...
copy /Y %KEY% %TARGET%
)
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo ####### %0 #######
pause

View File

@ -1,28 +1,28 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set CONFIG=config\install-vcesimulator.txt
set EXE=..\software\vce_exam_simulator_setup.exe
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo installing VCE Simulator 2 ...
start /wait %EXE% /LOADINF=%CONFIG% /NORESTART /NOCANCEL /SILENT /SUPPRESSMSGBOXES /CLOSEAPPLICATIONS
echo cleanup ...
del /F /Q %STARTMENU%\"VCE Exam Simulator\VCE Exam Simulator on the Web.url" 2>nul
del /F /Q %STARTMENU%\"VCE Exam Simulator\Uninstall VCE Exam Simulator.lnk" 2>nul
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo ####### %0 #######
pause
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set CONFIG=config\install-vcesimulator.txt
set EXE=..\software\vce_exam_simulator_setup.exe
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo installing VCE Simulator 2 ...
start /wait %EXE% /LOADINF=%CONFIG% /NORESTART /NOCANCEL /SILENT /SUPPRESSMSGBOXES /CLOSEAPPLICATIONS
echo cleanup ...
del /F /Q %STARTMENU%\"VCE Exam Simulator\VCE Exam Simulator on the Web.url" 2>nul
del /F /Q %STARTMENU%\"VCE Exam Simulator\Uninstall VCE Exam Simulator.lnk" 2>nul
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo ####### %0 #######
pause

View File

@ -1,49 +1,49 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set EXE=..\software\virtualbox-setup.exe
set VBOXMANAGE="%ProgramFiles%\Oracle\VirtualBox\VBoxManage.exe"
set STARTMENU=%PROGRAMDATA%\"Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo installing VirtualBox ...
%EXE% --silent --ignore-reboot
echo renaming Desktop shortcut ...
move /Y "%PUBLIC%\Desktop\Oracle VM VirtualBox.lnk" ^
"%PUBLIC%\Desktop\VirtualBox.lnk"
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo disabling VirtualBox update search ...
%VBOXMANAGE% setextradata global GUI/UpdateDate never
echo moving VirtualBox startmenu shortcut ...
move /Y %STARTMENU%\"Oracle VM VirtualBox\Oracle VM VirtualBox.lnk" %STARTMENU%
echo removing VirtualBox startmenu folder ...
rd /S /Q %STARTMENU%\"Oracle VM VirtualBox" 2>nul
echo enabling VirtualBox bridging protocol ...
powershell -Command "Enable-NetAdapterBinding -Name '*' -ComponentID oracle_VBoxNetLwf"
echo disabling VirtualBox bridging protocol on Host-Only network adapter ...
powershell -Command "Disable-NetAdapterBinding -Name 'VirtualBox Host-Only Network' -ComponentID oracle_VBoxNetLwf"
echo disabling VirtualBox Host-Only network adapter ...
powershell -Command "Disable-NetAdapter -Name 'VirtualBox Host-Only Network' -Confirm:$false"
echo showing network state:
powershell -Command "Get-NetAdapterBinding -ComponentID oracle_VBoxNetLwf"
echo ####### %0 #######
pause
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set EXE=..\software\virtualbox-setup.exe
set VBOXMANAGE="%ProgramFiles%\Oracle\VirtualBox\VBoxManage.exe"
set STARTMENU=%PROGRAMDATA%\"Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo installing VirtualBox ...
%EXE% --silent --ignore-reboot
echo renaming Desktop shortcut ...
move /Y "%PUBLIC%\Desktop\Oracle VM VirtualBox.lnk" ^
"%PUBLIC%\Desktop\VirtualBox.lnk"
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo disabling VirtualBox update search ...
%VBOXMANAGE% setextradata global GUI/UpdateDate never
echo moving VirtualBox startmenu shortcut ...
move /Y %STARTMENU%\"Oracle VM VirtualBox\Oracle VM VirtualBox.lnk" %STARTMENU%
echo removing VirtualBox startmenu folder ...
rd /S /Q %STARTMENU%\"Oracle VM VirtualBox" 2>nul
echo enabling VirtualBox bridging protocol ...
powershell -Command "Enable-NetAdapterBinding -Name '*' -ComponentID oracle_VBoxNetLwf"
echo disabling VirtualBox bridging protocol on Host-Only network adapter ...
powershell -Command "Disable-NetAdapterBinding -Name 'VirtualBox Host-Only Network' -ComponentID oracle_VBoxNetLwf"
echo disabling VirtualBox Host-Only network adapter ...
powershell -Command "Disable-NetAdapter -Name 'VirtualBox Host-Only Network' -Confirm:$false"
echo showing network state:
powershell -Command "Get-NetAdapterBinding -ComponentID oracle_VBoxNetLwf"
echo ####### %0 #######
pause

View File

@ -1,23 +0,0 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set OPT=..\optional
set SOFTWARE=..\software
set EXE=VMRC-setup.exe
if NOT EXIST %SOFTWARE%\%EXE% (
echo ERROR: %SOFTWARE%\%EXE% not found!
exit /b
)
echo ####### %0 #######
cd %SOFTWARE%
@echo on
%EXE% /v "/qn EULAS_AGREED=1 AUTOSOFTWAREUPDATE=0 DATACOLLECTION=0"
@echo off
cd %OPT%
echo ####### %0 #######

View File

@ -1,55 +1,56 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set CONFIG=config\install-vscode.txt
set EXE=..\software\vscode-setup.exe
set MARKDOWNTABLE=..\software\markdowntable.vsix
set SFTP=..\software\sftp.vsix
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo killing VisualStudio code processes...
taskkill /F /IM Code.exe 2>nul
echo cleanup ...
del /F /Q "%PUBLIC%\Desktop\VScode.lnk" 2>nul
echo installing Visual Studio CODE ...
start /wait %EXE% /LOADINF=%CONFIG% /NORESTART /NOCANCEL /SILENT /SUPPRESSMSGBOXES /CLOSEAPPLICATIONS
echo installing Desktop shortcut ...
copy /Y %STARTMENU%\"Visual Studio Code\Visual*.lnk" "%PUBLIC%\Desktop"
move /Y "%PUBLIC%\Desktop\Visual*.lnk" "%PUBLIC%\Desktop\VScode.lnk"
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo moving VScode startmenu shortcut ...
move /Y %STARTMENU%\"Visual Studio Code\Visual*.lnk" %STARTMENU%
echo removing VScode startmenu folder ...
rd /S /Q %STARTMENU%\"Visual Studio Code" 2>nul
echo ####### %0 #######
rem set filetypes ...
if EXIST ..\scripts\set-filetypes.cmd (
call ..\scripts\set-filetypes.cmd
)
rem IMPORTANT! THIS must be the last action
rem - for some reason stupid VScode is killing the script after executing ...
echo adding VScode plugins ...
"%ProgramFiles%\Microsoft VS Code\bin\code" ^
--extensions-dir "%ProgramFiles%\Microsoft VS Code\resources\app\extensions" ^
--install-extension %MARKDOWNTABLE% --install-extension %SFTP% 2>nul
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set CONFIG=config\install-vscode.txt
set EXE=..\software\vscode-setup.exe
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
rem update.code.visualstudio.com
set VSCODEUPDATEIP=51.144.164.215
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo killing VisualStudio code processes...
taskkill /F /IM Code.exe 2>nul
echo cleanup ...
del /F /Q "%PUBLIC%\Desktop\VScode.lnk" 2>nul
echo installing Visual Studio CODE ...
start /wait %EXE% /LOADINF=%CONFIG% /NORESTART /NOCANCEL /SILENT /SUPPRESSMSGBOXES /CLOSEAPPLICATIONS
echo installing Desktop shortcut ...
copy /Y %STARTMENU%\"Visual Studio Code\Visual*.lnk" "%PUBLIC%\Desktop"
move /Y "%PUBLIC%\Desktop\Visual*.lnk" "%PUBLIC%\Desktop\VScode.lnk"
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo moving VScode startmenu shortcut ...
move /Y %STARTMENU%\"Visual Studio Code\Visual*.lnk" %STARTMENU%
echo removing VScode startmenu folder ...
rd /S /Q %STARTMENU%\"Visual Studio Code" 2>nul
rem NO updates here! FUCK YOU!
echo disabling automatic updates via W10 firewall ...
netsh advfirewall firewall delete rule name="block_vscode_updates" 2>nul
netsh advfirewall firewall add rule name="block_vscode_updates" ^
dir=out action=block protocol=tcp localip=any remoteip=%VSCODEUPDATEIP% ^
remoteport=80,443 program="%ProgramFiles%\Microsoft VS Code\Code.exe"
echo ####### %0 #######
rem set filetypes ...
if EXIST ..\scripts\set-filetypes.cmd (
call ..\scripts\set-filetypes.cmd
)
pause

View File

@ -1,31 +0,0 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set CONFIG=config\install-wezterm.txt
set EXE=..\software\wezterm-setup.exe
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo killing WezTerm processes...
taskkill /F /IM wezterm-gui.exe 2>nul
echo installing WezTerm ...
start /wait %EXE% /LOADINF=%CONFIG% /NORESTART /NOCANCEL /SILENT /SUPPRESSMSGBOXES /CLOSEAPPLICATIONS
echo copy startmenu link ...
copy /Y startmenu\WezTerm.lnk %STARTMENU%
copy /Y startmenu\WezTerm.lnk %PUBLIC%\Desktop
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo ####### %0 #######
pause

View File

@ -1,27 +1,27 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set ZIP=..\software\winauth.zip
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %ZIP% (
echo ERROR: %ZIP% not found!
exit /b
)
echo ####### %0 #######
echo killing WinAuth processes...
taskkill /F /IM winauth.exe 2>nul
echo unpacking WinAuth ...
7z x -y -aoa -o"%ProgramFiles(x86)%" %ZIP%
echo copy startmenu link ...
copy /Y startmenu\WinAuth.lnk %STARTMENU%
copy /Y startmenu\WinAuth.lnk %PUBLIC%\Desktop
echo ####### %0 #######
pause
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set ZIP=..\software\winauth.zip
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %ZIP% (
echo ERROR: %ZIP% not found!
exit /b
)
echo ####### %0 #######
echo killing WinAuth processes...
taskkill /F /IM winauth.exe 2>nul
echo unpacking WinAuth ...
7z x -y -aoa -o"%ProgramFiles(x86)%" %ZIP%
echo copy startmenu link ...
copy /Y startmenu\WinAuth.lnk %STARTMENU%
copy /Y startmenu\WinAuth.lnk %PUBLIC%\Desktop
echo ####### %0 #######
pause

View File

@ -1,31 +0,0 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set T=%SystemDrive%\TEMP
set EXE=..\software\wireshark-setup.exe
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo extracting npcap ...
7z e -aoa -o%T% %EXE% npcap*.exe 1>nul 2>nul
move /Y %T%\npcap*.exe %T%\npcap.exe
echo installing npcap ...
start /wait %T%\npcap.exe
del /F /Q %T%\npcap.exe 2>nul
echo installing WireShark ...
start /wait %EXE% /S
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo ####### %0 #######
pause

Binary file not shown.

View File

@ -1,212 +1,212 @@
@echo off
call check-for-admin
echo ####### %0 #######
rem most of this was took from:
rem https://forum.level1techs.com/t/take-back-your-windows-10-privacy/143097/2
rem THANKS!
echo.
echo WARNING: executing this script may cripple some important functions in windows!
echo especially the STORE APP will not work anymore - and it will be removed by this script!
echo.
echo WARNING: system will be REBOOTED after modify!
echo SAVE YOUR WORK AND COME BACK!
echo.
set answer=
:ask
set /p answer="REALLY remove all Microsoft telemetry (Y/N)? "
if /i "%answer:~,1%" EQU "Y" (
GOTO CONT
)
if /i "%answer:~,1%" EQU "N" (
echo ABORTED.
exit /b
)
echo Please type Y or N.
goto ask
:CONT
echo.
echo OK ... trying to remove ALL the stupid fucking microsoft TELEMETRY BULLSHIT!
echo.
echo ADDING some registry keys to disable telemetry ...
reg add "HKCU\Software\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\PhishingFilter" ^
/v "EnabledV9" /t REG_DWORD /d "0" /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\MicrosoftEdge\PhishingFilter" /v "EnabledV9" /t REG_DWORD /d 0 /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\AppCompat" /v AITEnable /t REG_DWORD /d 0 /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\AppCompat" /v DisableInventory /t REG_DWORD /d 1 /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\AppCompat" /v DisablePCA /t REG_DWORD /d 1 /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\AppCompat" /v DisableUAR /t REG_DWORD /d 1 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows Defender" /v DisableAntiSpyware /t REG_DWORD /d 1 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows Defender\Spynet" /v SpyNetReporting /t REG_DWORD /d 0 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows Defender\Spynet" /v SubmitSamplesConsent /t REG_DWORD /d 2 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows Defender\Spynet" /v DontReportInfectionInformation /t REG_DWORD /d 1 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\GameDVR" /v AllowGameDVR /t REG_DWORD /d 0 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Error Reporting" /v Disabled /t REG_DWORD /d 1 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v NoAutoUpdate /t REG_DWORD /d 0 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v AUOptions /t REG_DWORD /d 2 /f
reg add "HKLM\Software\Policies\Microsoft\Windows\CloudContent" /v DisableSoftLanding /t REG_DWORD /d 1 /f
reg add "HKLM\Software\Policies\Microsoft\Windows\CloudContent" /v DisableWindowsSpotlightFeatures /t REG_DWORD /d 1 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\MRT" /v "DontReportInfectionInformation" /t REG_DWORD /d 1 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\MRT" /v "DontOfferThroughWUAU" /t REG_DWORD /d 1 /f
reg add "HKLM\Software\Policies\Microsoft\WindowsStore" /v RemoveWindowsStore /t REG_DWORD /d 1 /f
reg add "HKLM\Software\Policies\Microsoft\WindowsStore" /v DisableStoreApps /t REG_DWORD /d 1 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\PushToInstall" /v DisablePushToInstall /t REG_DWORD /d 1 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\SystemRestore" /v "DisableConfig" /t "REG_DWORD" /d "1" /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\SystemRestore" /v "DisableSR " /t "REG_DWORD" /d "1" /f
reg add "HKLM\Software\Policies\Microsoft\Windows NT\CurrentVersion\Software Protection Platform" /v NoGenTicket /t REG_DWORD /d 1 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Search" /v AllowCortana /t REG_DWORD /d 0 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /v "EnableSmartScreen" /t REG_DWORD /d 0 /f
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SystemRestore" /v "DisableConfig" /t "REG_DWORD" /d "1" /f
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SystemRestore" /v "DisableSR " /t "REG_DWORD" /d "1" /f
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\SecHealthUI.exe" /v Debugger ^
/t REG_SZ /d "%windir%\System32\taskkill.exe" /f
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\CompatTelRunner.exe" /v Debugger ^
/t REG_SZ /d "%windir%\System32\taskkill.exe" /f
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\DeviceCensus.exe" /v Debugger ^
/t REG_SZ /d "%windir%\System32\taskkill.exe" /f
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer" /v SmartScreenEnabled /t REG_SZ /d "Off" /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\AppHost" /v "EnableWebContentEvaluation" /t REG_DWORD /d "0" /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings\Windows.SystemToast.SecurityAndMaintenance" ^
/v "Enabled" /t REG_DWORD /d 0 /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\AppHost" /v "EnableWebContentEvaluation" /t REG_DWORD /d 0 /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v SilentInstalledAppsEnabled /t REG_DWORD /d 0 /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v "NoRecentDocsHistory" /t REG_DWORD /d 1 /f
reg add "HKLM\SOFTWARE\Microsoft\Windows\Windows Error Reporting" /v Disabled /t REG_DWORD /d 1 /f
reg add "HKCU\Software\Microsoft\Internet Explorer\PhishingFilter" /v "EnabledV9" /t REG_DWORD /d 0 /f
reg add "HKLM\Software\Policies\Microsoft\Windows\CloudContent" /v DisableWindowsConsumerFeatures /t REG_DWORD /d 1 /f
reg add "HKLM\Software\Policies\Microsoft\Windows\DataCollection" /v DoNotShowFeedbackNotifications /t REG_DWORD /d 1 /f
reg add "HKLM\Software\Policies\Microsoft\WindowsInkWorkspace" /v AllowSuggestedAppsInWindowsInkWorkspace /t REG_DWORD /d 0 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v ScheduledInstallDay /t REG_DWORD /d 0 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v ScheduledInstallTime /t REG_DWORD /d 3 /f
reg add "HKLM\Software\Policies\Microsoft\Windows\SettingSync" /v DisableSettingSync /t REG_DWORD /d 2 /f
reg add "HKLM\Software\Policies\Microsoft\Windows\SettingSync" /v DisableSettingSyncUserOverride /t REG_DWORD /d 1 /f
reg add "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Siuf\Rules" /v "NumberOfSIUFInPeriod" /t REG_DWORD /d 0 /f
reg add "HKLM\SYSTEM\ControlSet001\Control\WMI\AutoLogger\AutoLogger-Diagtrack-Listener" /v Start /t REG_DWORD /d 0 /f
reg add "HKLM\SYSTEM\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\FirewallRules" /v "{2765E0F4-2918-4A46-B9C9-43CDD8FCBA2B}" ^
/t REG_SZ /d "BlockCortana|Action=Block|Active=TRUE|Dir=Out|App=C:\windows\systemapps\microsoft.windows.cortana_cw5n1h2txyewy\searchui.exe|Name=Search and Cortana application|AppPkgId=S-1-15-2-1861897761-1695161497-2927542615-642690995-327840285-2659745135-2630312742|" /f
echo.
echo DELETING some registry keys to disable telemetry ...
reg delete "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Siuf\Rules" /v "PeriodInNanoSeconds" /f
reg delete "HKLM\SYSTEM\CurrentControlSet\Services\xbgm" /f
reg delete "HKLM\SYSTEM\CurrentControlSet\Services\Sense" /f
reg delete "HKLM\SYSTEM\CurrentControlSet\Services\SecurityHealthService" /f
reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /v "SecurityHealth" /f
reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\StartupApproved\Run" /v "SecurityHealth" /f
for /f "tokens=1" %%I in ('reg query "HKLM\SYSTEM\CurrentControlSet\Services" ^
/k /f "wscsvc" ^| find /i "wscsvc"') do (reg delete %%I /f)
for /f "tokens=1" %%I in ('reg query "HKLM\SYSTEM\CurrentControlSet\Services" ^
/k /f "OneSyncSvc" ^| find /i "OneSyncSvc"') do (reg delete %%I /f)
for /f "tokens=1" %%I in ('reg query "HKLM\SYSTEM\CurrentControlSet\Services" ^
/k /f "MessagingService" ^| find /i "MessagingService"') do (reg delete %%I /f)
for /f "tokens=1" %%I in ('reg query "HKLM\SYSTEM\CurrentControlSet\Services" ^
/k /f "PimIndexMaintenanceSvc" ^| find /i "PimIndexMaintenanceSvc"') do (reg delete %%I /f)
for /f "tokens=1" %%I in ('reg query "HKLM\SYSTEM\CurrentControlSet\Services" ^
/k /f "UserDataSvc" ^| find /i "UserDataSvc"') do (reg delete %%I /f)
for /f "tokens=1" %%I in ('reg query "HKLM\SYSTEM\CurrentControlSet\Services" ^
/k /f "UnistoreSvc" ^| find /i "UnistoreSvc"') do (reg delete %%I /f)
for /f "tokens=1" %%I in ('reg query "HKLM\SYSTEM\CurrentControlSet\Services" ^
/k /f "BcastDVRUserService" ^| find /i "BcastDVRUserService"') do (reg delete %%I /f)
for /f "tokens=1" %%I in ('reg query "HKLM\SYSTEM\CurrentControlSet\Services" ^
/k /f "Sgrmbroker" ^| find /i "Sgrmbroker"') do (reg delete %%I /f)
for /f "tokens=1" %%I in ('reg query "HKLM\SYSTEM\CurrentControlSet\Services" ^
/k /f "ClipSVC" ^| find /i "ClipSVC"') do (reg delete %%I /f)
echo.
echo DELETING some services ...
sc delete PushToInstall
sc delete XblAuthManager
sc delete XblGameSave
sc delete XboxNetApiSvc
sc delete XboxGipSvc
sc delete MapsBroker
sc delete lfsvc
sc delete DiagTrack
sc delete dmwappushservice
sc delete WerSvc
sc delete OneSyncSvc
sc delete MessagingService
sc delete wercplsupport
sc delete PcaSvc
sc delete wisvc
sc delete RetailDemo
sc delete diagsvc
sc delete shpamsvc
sc delete TermService
sc delete UmRdpService
sc delete SessionEnv
sc delete TroubleshootingSvc
sc delete diagnosticshub.standardcollector.service
echo.
echo RECONFIGURING some services ...
sc config wlidsvc start=demand
echo.
echo DISABLING some tasks ...
schtasks /Change /TN "Microsoft\XblGameSave\XblGameSaveTask" /disable
schtasks /Change /TN "Microsoft\XblGameSave\XblGameSaveTaskLogon" /disable
schtasks /Change /TN "\Microsoft\Windows\Maps\MapsUpdateTask" /disable
schtasks /Change /TN "\Microsoft\Windows\Maps\MapsToastTask" /disable
schtasks /Change /TN "\Microsoft\Windows\HelloFace\FODCleanupTask" /Disable
schtasks /Change /TN "\Microsoft\Windows\SystemRestore\SR" /disable
schtasks /Change /TN "Microsoft\Windows\AppID\SmartScreenSpecific" /disable
schtasks /Change /TN "Microsoft\Windows\Application Experience\AitAgent" /disable
schtasks /Change /TN "Microsoft\Windows\Application Experience\Microsoft Compatibility Appraiser" /disable
schtasks /Change /TN "Microsoft\Windows\Application Experience\ProgramDataUpdater" /disable
schtasks /Change /TN "Microsoft\Windows\Application Experience\StartupAppTask" /disable
schtasks /Change /TN "Microsoft\Windows\Autochk\Proxy" /disable
schtasks /Change /TN "Microsoft\Windows\CloudExperienceHost\CreateObjectTask" /disable
schtasks /Change /TN "Microsoft\Windows\Customer Experience Improvement Program\BthSQM" /disable
schtasks /Change /TN "Microsoft\Windows\Customer Experience Improvement Program\Consolidator" /disable
schtasks /Change /TN "Microsoft\Windows\Customer Experience Improvement Program\KernelCeipTask" /disable
schtasks /Change /TN "Microsoft\Windows\Customer Experience Improvement Program\Uploader" /disable
schtasks /Change /TN "Microsoft\Windows\Customer Experience Improvement Program\UsbCeip" /disable
schtasks /Change /TN "Microsoft\Windows\DiskDiagnostic\Microsoft-Windows-DiskDiagnosticDataCollector" /disable
schtasks /Change /TN "Microsoft\Windows\DiskFootprint\Diagnostics" /disable
schtasks /Change /TN "Microsoft\Windows\FileHistory\File History (maintenance mode)" /disable
schtasks /Change /TN "Microsoft\Windows\Maintenance\WinSAT" /disable
schtasks /Change /TN "Microsoft\Windows\PI\Sqm-Tasks" /disable
schtasks /Change /TN "Microsoft\Windows\Power Efficiency Diagnostics\AnalyzeSystem" /disable
schtasks /Change /TN "Microsoft\Windows\Shell\FamilySafetyMonitor" /disable
schtasks /Change /TN "Microsoft\Windows\Shell\FamilySafetyRefresh" /disable
schtasks /Change /TN "Microsoft\Windows\Shell\FamilySafetyUpload" /disable
schtasks /Change /TN "Microsoft\Windows\Windows Error Reporting\QueueReporting" /disable
schtasks /Change /TN "Microsoft\Windows\WindowsUpdate\Automatic App Update" /disable
schtasks /Change /TN "Microsoft\Windows\License Manager\TempSignedLicenseExchange" /disable
schtasks /Change /TN "Microsoft\Windows\Clip\License Validation" /disable
schtasks /Change /TN "\Microsoft\Windows\ApplicationData\DsSvcCleanup" /disable
schtasks /Change /TN "\Microsoft\Windows\Power Efficiency Diagnostics\AnalyzeSystem" /disable
schtasks /Change /TN "\Microsoft\Windows\PushToInstall\LoginCheck" /disable
schtasks /Change /TN "\Microsoft\Windows\PushToInstall\Registration" /disable
schtasks /Change /TN "\Microsoft\Windows\Shell\FamilySafetyMonitor" /disable
schtasks /Change /TN "\Microsoft\Windows\Shell\FamilySafetyMonitorToastTask" /disable
schtasks /Change /TN "\Microsoft\Windows\Shell\FamilySafetyRefreshTask" /disable
schtasks /Change /TN "\Microsoft\Windows\Subscription\EnableLicenseAcquisition" /disable
schtasks /Change /TN "\Microsoft\Windows\Subscription\LicenseAcquisition" /disable
schtasks /Change /TN "\Microsoft\Windows\Diagnosis\RecommendedTroubleshootingScanner" /disable
schtasks /Change /TN "\Microsoft\Windows\Diagnosis\Scheduled" /disable
schtasks /Change /TN "\Microsoft\Windows\NetTrace\GatherNetworkInfo" /disable
echo.
echo DELETING shadow copies ...
vssadmin delete shadows /all /Quiet
echo.
echo DELETING some files ...
del /F /Q "C:\Windows\System32\Tasks\Microsoft\Windows\SettingSync\*"
echo.
echo REMOVING the store ...
powershell -Command ./uninstall-store.ps1
echo.
echo ####### %0 #######
pause
shutdown -g -t 0
@echo off
call check-for-admin
echo ####### %0 #######
rem most of this was took from:
rem https://forum.level1techs.com/t/take-back-your-windows-10-privacy/143097/2
rem THANKS!
echo.
echo WARNING: executing this script may cripple some important functions in windows!
echo especially the STORE APP will not work anymore - and it will be removed by this script!
echo.
echo WARNING: system will be REBOOTED after modify!
echo SAVE YOUR WORK AND COME BACK!
echo.
set answer=
:ask
set /p answer="REALLY remove all Microsoft telemetry (Y/N)? "
if /i "%answer:~,1%" EQU "Y" (
GOTO CONT
)
if /i "%answer:~,1%" EQU "N" (
echo ABORTED.
exit /b
)
echo Please type Y or N.
goto ask
:CONT
echo.
echo OK ... trying to remove ALL the stupid fucking microsoft TELEMETRY BULLSHIT!
echo.
echo ADDING some registry keys to disable telemetry ...
reg add "HKCU\Software\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\PhishingFilter" ^
/v "EnabledV9" /t REG_DWORD /d "0" /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\MicrosoftEdge\PhishingFilter" /v "EnabledV9" /t REG_DWORD /d 0 /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\AppCompat" /v AITEnable /t REG_DWORD /d 0 /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\AppCompat" /v DisableInventory /t REG_DWORD /d 1 /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\AppCompat" /v DisablePCA /t REG_DWORD /d 1 /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\AppCompat" /v DisableUAR /t REG_DWORD /d 1 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows Defender" /v DisableAntiSpyware /t REG_DWORD /d 1 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows Defender\Spynet" /v SpyNetReporting /t REG_DWORD /d 0 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows Defender\Spynet" /v SubmitSamplesConsent /t REG_DWORD /d 2 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows Defender\Spynet" /v DontReportInfectionInformation /t REG_DWORD /d 1 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\GameDVR" /v AllowGameDVR /t REG_DWORD /d 0 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Error Reporting" /v Disabled /t REG_DWORD /d 1 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v NoAutoUpdate /t REG_DWORD /d 0 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v AUOptions /t REG_DWORD /d 2 /f
reg add "HKLM\Software\Policies\Microsoft\Windows\CloudContent" /v DisableSoftLanding /t REG_DWORD /d 1 /f
reg add "HKLM\Software\Policies\Microsoft\Windows\CloudContent" /v DisableWindowsSpotlightFeatures /t REG_DWORD /d 1 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\MRT" /v "DontReportInfectionInformation" /t REG_DWORD /d 1 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\MRT" /v "DontOfferThroughWUAU" /t REG_DWORD /d 1 /f
reg add "HKLM\Software\Policies\Microsoft\WindowsStore" /v RemoveWindowsStore /t REG_DWORD /d 1 /f
reg add "HKLM\Software\Policies\Microsoft\WindowsStore" /v DisableStoreApps /t REG_DWORD /d 1 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\PushToInstall" /v DisablePushToInstall /t REG_DWORD /d 1 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\SystemRestore" /v "DisableConfig" /t "REG_DWORD" /d "1" /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\SystemRestore" /v "DisableSR " /t "REG_DWORD" /d "1" /f
reg add "HKLM\Software\Policies\Microsoft\Windows NT\CurrentVersion\Software Protection Platform" /v NoGenTicket /t REG_DWORD /d 1 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Search" /v AllowCortana /t REG_DWORD /d 0 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /v "EnableSmartScreen" /t REG_DWORD /d 0 /f
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SystemRestore" /v "DisableConfig" /t "REG_DWORD" /d "1" /f
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SystemRestore" /v "DisableSR " /t "REG_DWORD" /d "1" /f
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\SecHealthUI.exe" /v Debugger ^
/t REG_SZ /d "%windir%\System32\taskkill.exe" /f
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\CompatTelRunner.exe" /v Debugger ^
/t REG_SZ /d "%windir%\System32\taskkill.exe" /f
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\DeviceCensus.exe" /v Debugger ^
/t REG_SZ /d "%windir%\System32\taskkill.exe" /f
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer" /v SmartScreenEnabled /t REG_SZ /d "Off" /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\AppHost" /v "EnableWebContentEvaluation" /t REG_DWORD /d "0" /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings\Windows.SystemToast.SecurityAndMaintenance" ^
/v "Enabled" /t REG_DWORD /d 0 /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\AppHost" /v "EnableWebContentEvaluation" /t REG_DWORD /d 0 /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v SilentInstalledAppsEnabled /t REG_DWORD /d 0 /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v "NoRecentDocsHistory" /t REG_DWORD /d 1 /f
reg add "HKLM\SOFTWARE\Microsoft\Windows\Windows Error Reporting" /v Disabled /t REG_DWORD /d 1 /f
reg add "HKCU\Software\Microsoft\Internet Explorer\PhishingFilter" /v "EnabledV9" /t REG_DWORD /d 0 /f
reg add "HKLM\Software\Policies\Microsoft\Windows\CloudContent" /v DisableWindowsConsumerFeatures /t REG_DWORD /d 1 /f
reg add "HKLM\Software\Policies\Microsoft\Windows\DataCollection" /v DoNotShowFeedbackNotifications /t REG_DWORD /d 1 /f
reg add "HKLM\Software\Policies\Microsoft\WindowsInkWorkspace" /v AllowSuggestedAppsInWindowsInkWorkspace /t REG_DWORD /d 0 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v ScheduledInstallDay /t REG_DWORD /d 0 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v ScheduledInstallTime /t REG_DWORD /d 3 /f
reg add "HKLM\Software\Policies\Microsoft\Windows\SettingSync" /v DisableSettingSync /t REG_DWORD /d 2 /f
reg add "HKLM\Software\Policies\Microsoft\Windows\SettingSync" /v DisableSettingSyncUserOverride /t REG_DWORD /d 1 /f
reg add "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Siuf\Rules" /v "NumberOfSIUFInPeriod" /t REG_DWORD /d 0 /f
reg add "HKLM\SYSTEM\ControlSet001\Control\WMI\AutoLogger\AutoLogger-Diagtrack-Listener" /v Start /t REG_DWORD /d 0 /f
reg add "HKLM\SYSTEM\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\FirewallRules" /v "{2765E0F4-2918-4A46-B9C9-43CDD8FCBA2B}" ^
/t REG_SZ /d "BlockCortana|Action=Block|Active=TRUE|Dir=Out|App=C:\windows\systemapps\microsoft.windows.cortana_cw5n1h2txyewy\searchui.exe|Name=Search and Cortana application|AppPkgId=S-1-15-2-1861897761-1695161497-2927542615-642690995-327840285-2659745135-2630312742|" /f
echo.
echo DELETING some registry keys to disable telemetry ...
reg delete "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Siuf\Rules" /v "PeriodInNanoSeconds" /f
reg delete "HKLM\SYSTEM\CurrentControlSet\Services\xbgm" /f
reg delete "HKLM\SYSTEM\CurrentControlSet\Services\Sense" /f
reg delete "HKLM\SYSTEM\CurrentControlSet\Services\SecurityHealthService" /f
reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /v "SecurityHealth" /f
reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\StartupApproved\Run" /v "SecurityHealth" /f
for /f "tokens=1" %%I in ('reg query "HKLM\SYSTEM\CurrentControlSet\Services" ^
/k /f "wscsvc" ^| find /i "wscsvc"') do (reg delete %%I /f)
for /f "tokens=1" %%I in ('reg query "HKLM\SYSTEM\CurrentControlSet\Services" ^
/k /f "OneSyncSvc" ^| find /i "OneSyncSvc"') do (reg delete %%I /f)
for /f "tokens=1" %%I in ('reg query "HKLM\SYSTEM\CurrentControlSet\Services" ^
/k /f "MessagingService" ^| find /i "MessagingService"') do (reg delete %%I /f)
for /f "tokens=1" %%I in ('reg query "HKLM\SYSTEM\CurrentControlSet\Services" ^
/k /f "PimIndexMaintenanceSvc" ^| find /i "PimIndexMaintenanceSvc"') do (reg delete %%I /f)
for /f "tokens=1" %%I in ('reg query "HKLM\SYSTEM\CurrentControlSet\Services" ^
/k /f "UserDataSvc" ^| find /i "UserDataSvc"') do (reg delete %%I /f)
for /f "tokens=1" %%I in ('reg query "HKLM\SYSTEM\CurrentControlSet\Services" ^
/k /f "UnistoreSvc" ^| find /i "UnistoreSvc"') do (reg delete %%I /f)
for /f "tokens=1" %%I in ('reg query "HKLM\SYSTEM\CurrentControlSet\Services" ^
/k /f "BcastDVRUserService" ^| find /i "BcastDVRUserService"') do (reg delete %%I /f)
for /f "tokens=1" %%I in ('reg query "HKLM\SYSTEM\CurrentControlSet\Services" ^
/k /f "Sgrmbroker" ^| find /i "Sgrmbroker"') do (reg delete %%I /f)
for /f "tokens=1" %%I in ('reg query "HKLM\SYSTEM\CurrentControlSet\Services" ^
/k /f "ClipSVC" ^| find /i "ClipSVC"') do (reg delete %%I /f)
echo.
echo DELETING some services ...
sc delete PushToInstall
sc delete XblAuthManager
sc delete XblGameSave
sc delete XboxNetApiSvc
sc delete XboxGipSvc
sc delete MapsBroker
sc delete lfsvc
sc delete DiagTrack
sc delete dmwappushservice
sc delete WerSvc
sc delete OneSyncSvc
sc delete MessagingService
sc delete wercplsupport
sc delete PcaSvc
sc delete wisvc
sc delete RetailDemo
sc delete diagsvc
sc delete shpamsvc
sc delete TermService
sc delete UmRdpService
sc delete SessionEnv
sc delete TroubleshootingSvc
sc delete diagnosticshub.standardcollector.service
echo.
echo RECONFIGURING some services ...
sc config wlidsvc start=demand
echo.
echo DISABLING some tasks ...
schtasks /Change /TN "Microsoft\XblGameSave\XblGameSaveTask" /disable
schtasks /Change /TN "Microsoft\XblGameSave\XblGameSaveTaskLogon" /disable
schtasks /Change /TN "\Microsoft\Windows\Maps\MapsUpdateTask" /disable
schtasks /Change /TN "\Microsoft\Windows\Maps\MapsToastTask" /disable
schtasks /Change /TN "\Microsoft\Windows\HelloFace\FODCleanupTask" /Disable
schtasks /Change /TN "\Microsoft\Windows\SystemRestore\SR" /disable
schtasks /Change /TN "Microsoft\Windows\AppID\SmartScreenSpecific" /disable
schtasks /Change /TN "Microsoft\Windows\Application Experience\AitAgent" /disable
schtasks /Change /TN "Microsoft\Windows\Application Experience\Microsoft Compatibility Appraiser" /disable
schtasks /Change /TN "Microsoft\Windows\Application Experience\ProgramDataUpdater" /disable
schtasks /Change /TN "Microsoft\Windows\Application Experience\StartupAppTask" /disable
schtasks /Change /TN "Microsoft\Windows\Autochk\Proxy" /disable
schtasks /Change /TN "Microsoft\Windows\CloudExperienceHost\CreateObjectTask" /disable
schtasks /Change /TN "Microsoft\Windows\Customer Experience Improvement Program\BthSQM" /disable
schtasks /Change /TN "Microsoft\Windows\Customer Experience Improvement Program\Consolidator" /disable
schtasks /Change /TN "Microsoft\Windows\Customer Experience Improvement Program\KernelCeipTask" /disable
schtasks /Change /TN "Microsoft\Windows\Customer Experience Improvement Program\Uploader" /disable
schtasks /Change /TN "Microsoft\Windows\Customer Experience Improvement Program\UsbCeip" /disable
schtasks /Change /TN "Microsoft\Windows\DiskDiagnostic\Microsoft-Windows-DiskDiagnosticDataCollector" /disable
schtasks /Change /TN "Microsoft\Windows\DiskFootprint\Diagnostics" /disable
schtasks /Change /TN "Microsoft\Windows\FileHistory\File History (maintenance mode)" /disable
schtasks /Change /TN "Microsoft\Windows\Maintenance\WinSAT" /disable
schtasks /Change /TN "Microsoft\Windows\PI\Sqm-Tasks" /disable
schtasks /Change /TN "Microsoft\Windows\Power Efficiency Diagnostics\AnalyzeSystem" /disable
schtasks /Change /TN "Microsoft\Windows\Shell\FamilySafetyMonitor" /disable
schtasks /Change /TN "Microsoft\Windows\Shell\FamilySafetyRefresh" /disable
schtasks /Change /TN "Microsoft\Windows\Shell\FamilySafetyUpload" /disable
schtasks /Change /TN "Microsoft\Windows\Windows Error Reporting\QueueReporting" /disable
schtasks /Change /TN "Microsoft\Windows\WindowsUpdate\Automatic App Update" /disable
schtasks /Change /TN "Microsoft\Windows\License Manager\TempSignedLicenseExchange" /disable
schtasks /Change /TN "Microsoft\Windows\Clip\License Validation" /disable
schtasks /Change /TN "\Microsoft\Windows\ApplicationData\DsSvcCleanup" /disable
schtasks /Change /TN "\Microsoft\Windows\Power Efficiency Diagnostics\AnalyzeSystem" /disable
schtasks /Change /TN "\Microsoft\Windows\PushToInstall\LoginCheck" /disable
schtasks /Change /TN "\Microsoft\Windows\PushToInstall\Registration" /disable
schtasks /Change /TN "\Microsoft\Windows\Shell\FamilySafetyMonitor" /disable
schtasks /Change /TN "\Microsoft\Windows\Shell\FamilySafetyMonitorToastTask" /disable
schtasks /Change /TN "\Microsoft\Windows\Shell\FamilySafetyRefreshTask" /disable
schtasks /Change /TN "\Microsoft\Windows\Subscription\EnableLicenseAcquisition" /disable
schtasks /Change /TN "\Microsoft\Windows\Subscription\LicenseAcquisition" /disable
schtasks /Change /TN "\Microsoft\Windows\Diagnosis\RecommendedTroubleshootingScanner" /disable
schtasks /Change /TN "\Microsoft\Windows\Diagnosis\Scheduled" /disable
schtasks /Change /TN "\Microsoft\Windows\NetTrace\GatherNetworkInfo" /disable
echo.
echo DELETING shadow copies ...
vssadmin delete shadows /all /Quiet
echo.
echo DELETING some files ...
del /F /Q "C:\Windows\System32\Tasks\Microsoft\Windows\SettingSync\*"
echo.
echo REMOVING the store ...
powershell -Command ./uninstall-store.ps1
echo.
echo ####### %0 #######
pause
shutdown -g -t 0

View File

@ -0,0 +1,600 @@
<?xml version="1.0" encoding="utf-8"?>
<Preset xmlns="urn:schemas-nliteos-com:pn.v1">
<Date>01/06/2023 09:47:24</Date>
<AppInfo>
<Version>2.3.9.9020</Version>
<Licensed>Yes</Licensed>
<Protections>Yes</Protections>
<Host>Windows 10 Pro (20H2) x64 - 10.0.19042.508 (en-US)</Host>
</AppInfo>
<ImageInfo>
<Version mode="offline">Windows 10 Professional (20H2) x64 - 10.0.19042.508 (en-US)</Version>
<GUID>{87E639EB-5FD4-45D3-A9DD-E378C7815F14}</GUID>
</ImageInfo>
<RemoveComponents AppRemovalMode="DISM">
<c>accessibility_narrator 'Narrator'</c>
<c>alg 'Application Layer Gateway Service'</c>
<c>alljoyn 'AllJoyn Router Service'</c>
<c>assignedaccess 'Assigned Access'</c>
<c>axinstall 'ActiveX Installer Service'</c>
<c>backgroundtransfer 'Networking Background Transfer'</c>
<c>branchcacheclient 'BranchCache Client'</c>
<c>ceip 'CEIP (SQM)'</c>
<c>cloudfiles 'Cloud Files API'</c>
<c>datacenterbridging 'Data Center Bridging (DCB)'</c>
<c>desktopimgdownldr 'Desktop image downloader'</c>
<c>driver_c_barcodescanner.inf</c>
<c>driver_c_cashdrawer.inf</c>
<c>driver_c_linedisplay.inf</c>
<c>driver_c_magneticstripereader.inf</c>
<c>driver_c_receiptprinter.inf</c>
<c>driver_c_smartcard.inf</c>
<c>driver_c_smartcardreader.inf</c>
<c>driver_hidscanner.inf</c>
<c>driver_idtsec.inf</c>
<c>driver_mgtdyn.inf</c>
<c>driver_msclmd.inf</c>
<c>driver_remoteposdrv.inf</c>
<c>driver_scunknown.inf</c>
<c>driver_tpmvsc.inf</c>
<c>driver_usbcciddriver.inf</c>
<c>driver_wudfusbcciddriver.inf</c>
<c>E2A4F912-2574-4A75-9BB0-0D023378592B 'App Resolver'</c>
<c>enterpriseclientsync 'Work Folders Client'</c>
<c>exchangeactivesync 'Exchange ActiveSync (EAS)'</c>
<c>F46D4000-FD22-4DB4-AC8E-4E1DDDE828FE 'Add Folder Suggestions dialog'</c>
<c>flashactivex 'Adobe Flash for Internet Explorer'</c>
<c>flashactivex32 'Adobe Flash for Internet Explorer - 32 bit'</c>
<c>font_arialblack 'Arial Black'</c>
<c>font_bahnschrift 'Bahnschrift'</c>
<c>font_calibri 'Calibri'</c>
<c>font_cambria 'Cambria'</c>
<c>font_cambria_regular 'Cambria &amp; Cambria Math'</c>
<c>font_candara 'Candara'</c>
<c>font_comicsansms 'ComicSansMS'</c>
<c>font_constantia 'Constantia'</c>
<c>font_corbel 'Corbel'</c>
<c>font_courier 'Courier'</c>
<c>font_ebrima 'Ebrima'</c>
<c>font_ebrimabold 'Ebrima Bold'</c>
<c>font_fixed 'Fixed'</c>
<c>font_franklingothic 'FranklinGothic'</c>
<c>font_gabriola 'Gabriola'</c>
<c>font_gadugi 'Gadugi'</c>
<c>font_gadugibold 'Gadugi Bold'</c>
<c>font_georgia 'Georgia'</c>
<c>font_holomd2 'Holo MDL2 Assets'</c>
<c>font_impact 'Impact'</c>
<c>font_inkfree 'Ink Free'</c>
<c>font_javanesetext 'Javanese Text'</c>
<c>font_leelawadeeui 'LeelawadeeUI'</c>
<c>font_leelawadeeui_regular 'Leelawadee UI'</c>
<c>font_lucidasans 'Lucida Sans Unicode'</c>
<c>font_malgungothicbold 'Malgun Gothic Bold'</c>
<c>font_malgungothicsemilight 'Malgun Gothic SemiLight'</c>
<c>font_microsofthimalaya 'Microsoft Himalaya'</c>
<c>font_microsoftjhenghei 'Microsoft JhengHei &amp; Microsoft JhengHei UI'</c>
<c>font_microsoftjhengheibold 'Microsoft JhengHei Bold &amp; Microsoft JhengHei UI Bold'</c>
<c>font_microsoftjhengheilight 'Microsoft JhengHei Light &amp; Microsoft JhengHei UI Light'</c>
<c>font_microsoftyahei 'Microsoft YaHei &amp; Microsoft YaHei UI'</c>
<c>font_microsoftyaheibold 'Microsoft YaHei Bold &amp; Microsoft YaHei UI Bold'</c>
<c>font_microsoftyaheilight 'Microsoft YaHei Light &amp; Microsoft YaHei UI Light'</c>
<c>font_mingliub 'MingLiU-ExtB &amp; PMingLiU-ExtB &amp; MingLiU_HKSCS-ExtB'</c>
<c>font_mongolianbaiti 'Mongolian Baiti'</c>
<c>font_msgothic 'MS Gothic &amp; MS UI Gothic &amp; MS PGothic'</c>
<c>font_mvboli 'MV Boli'</c>
<c>font_myanmartext 'Myanmar Text'</c>
<c>font_myanmartextbold 'Myanmar Text Bold'</c>
<c>font_newtailue 'Microsoft New Tai Lue'</c>
<c>font_newtailuebold 'Microsoft New Tai Lue Bold'</c>
<c>font_nirmalaui 'NirmalaUI'</c>
<c>font_nirmalaui_regular 'Nirmala UI'</c>
<c>font_oem 'OEM'</c>
<c>font_palatinolinotype 'PalatinoLinotype'</c>
<c>font_phagspa 'Microsoft PhagsPa'</c>
<c>font_phagspabold 'Microsoft PhagsPa Bold'</c>
<c>font_segoeprint 'Segoe Print'</c>
<c>font_segoeprintbold 'Segoe Print Bold'</c>
<c>font_segoescript 'SegoeScript'</c>
<c>font_segoeui_italicssupplement 'SegoeUI ItalicsSupplement'</c>
<c>font_simsun 'SimSun &amp; NSimSun'</c>
<c>font_simsunb 'SimSun-ExtB'</c>
<c>font_sitka 'Sitka'</c>
<c>font_small 'Small'</c>
<c>font_sylfaen 'Sylfaen'</c>
<c>font_symbol 'Symbol'</c>
<c>font_system 'System'</c>
<c>font_taile 'Microsoft Tai Le'</c>
<c>font_tailebold 'Microsoft Tai Le Bold'</c>
<c>font_trebuchetms 'TrebuchetMS'</c>
<c>font_vector 'Vector'</c>
<c>font_verdana 'Verdana'</c>
<c>font_webdings 'Webdings'</c>
<c>font_wingdings 'Wingdings'</c>
<c>font_yibaiti 'Microsoft Yi Baiti'</c>
<c>font_yugothic 'Yu Gothic Regular &amp; Yu Gothic UI Semilight'</c>
<c>font_yugothicbold 'Yu Gothic Bold &amp; Yu Gothic UI Semibold &amp; Yu Gothic UI Bold'</c>
<c>font_yugothiclight 'Yu Gothic Light &amp; Yu Gothic UI Light'</c>
<c>font_yugothicmedium 'Yu Gothic Medium &amp; Yu Gothic UI Regular'</c>
<c>gameexplorer 'Game Explorer'</c>
<c>hwsupport_floppy 'Floppy disk'</c>
<c>hwsupport_smartcard 'Smartcard'</c>
<c>hwsupport_telephony 'Telephony'</c>
<c>ias 'Internet Authentication Service (IAS)'</c>
<c>inputswitchtoasthandler 'Input Switch Toast Handler'</c>
<c>insiderhub 'Windows Insider Program'</c>
<c>internetexplorer 'Internet Explorer'</c>
<c>internetexplorer32 'Internet Explorer - 32 bit'</c>
<c>ipxlatcfg 'IP Translation Configuration Service'</c>
<c>isoburn 'Windows Disc Image Burning Tool'</c>
<c>kl-00000401 'Arabic (101)'</c>
<c>kl-00000402 'Bulgarian (Typewriter)'</c>
<c>kl-00000404 'Chinese (Traditional) - US'</c>
<c>kl-00000405 'Czech'</c>
<c>kl-00000406 'Danish'</c>
<c>kl-00000408 'Greek'</c>
<c>kl-0000040a 'Spanish'</c>
<c>kl-0000040b 'Finnish'</c>
<c>kl-0000040c 'French'</c>
<c>kl-0000040d 'Hebrew'</c>
<c>kl-0000040e 'Hungarian'</c>
<c>kl-0000040f 'Icelandic'</c>
<c>kl-00000410 'Italian'</c>
<c>kl-00000411 'Japanese'</c>
<c>kl-00000412 'Korean'</c>
<c>kl-00000413 'Dutch'</c>
<c>kl-00000414 'Norwegian'</c>
<c>kl-00000415 'Polish (Programmers)'</c>
<c>kl-00000416 'Portuguese (Brazil ABNT)'</c>
<c>kl-00000418 'Romanian (Legacy)'</c>
<c>kl-00000419 'Russian'</c>
<c>kl-0000041a 'Standard'</c>
<c>kl-0000041b 'Slovak'</c>
<c>kl-0000041c 'Albanian'</c>
<c>kl-0000041d 'Swedish'</c>
<c>kl-0000041e 'Thai Kedmanee'</c>
<c>kl-0000041f 'Turkish Q'</c>
<c>kl-00000420 'Urdu'</c>
<c>kl-00000422 'Ukrainian'</c>
<c>kl-00000423 'Belarusian'</c>
<c>kl-00000424 'Slovenian'</c>
<c>kl-00000425 'Estonian'</c>
<c>kl-00000426 'Latvian'</c>
<c>kl-00000427 'Lithuanian IBM'</c>
<c>kl-00000428 'Tajik'</c>
<c>kl-00000429 'Persian'</c>
<c>kl-0000042a 'Vietnamese'</c>
<c>kl-0000042b 'Armenian Eastern (Legacy)'</c>
<c>kl-0000042c 'Azerbaijani Latin'</c>
<c>kl-0000042e 'Sorbian Standard (Legacy)'</c>
<c>kl-0000042f 'Macedonian (North Macedonia)'</c>
<c>kl-00000432 'Setswana'</c>
<c>kl-00000437 'Georgian (Legacy)'</c>
<c>kl-00000438 'Faeroese'</c>
<c>kl-00000439 'Devanagari - INSCRIPT'</c>
<c>kl-0000043a 'Maltese 47-Key'</c>
<c>kl-0000043b 'Norwegian with Sami'</c>
<c>kl-0000043f 'Kazakh'</c>
<c>kl-00000440 'Kyrgyz Cyrillic'</c>
<c>kl-00000442 'Turkmen'</c>
<c>kl-00000444 'Tatar (Legacy)'</c>
<c>kl-00000445 'Bangla'</c>
<c>kl-00000446 'Punjabi'</c>
<c>kl-00000447 'Gujarati'</c>
<c>kl-00000448 'Odia'</c>
<c>kl-00000449 'Tamil'</c>
<c>kl-0000044a 'Telugu'</c>
<c>kl-0000044b 'Kannada'</c>
<c>kl-0000044c 'Malayalam'</c>
<c>kl-0000044d 'Assamese - INSCRIPT'</c>
<c>kl-0000044e 'Marathi'</c>
<c>kl-00000450 'Mongolian Cyrillic'</c>
<c>kl-00000451 'Tibetan (PRC)'</c>
<c>kl-00000452 'United Kingdom Extended'</c>
<c>kl-00000453 'Khmer'</c>
<c>kl-00000454 'Lao'</c>
<c>kl-0000045a 'Syriac'</c>
<c>kl-0000045b 'Sinhala'</c>
<c>kl-0000045c 'Cherokee Nation'</c>
<c>kl-00000461 'Nepali'</c>
<c>kl-00000463 'Pashto (Afghanistan)'</c>
<c>kl-00000465 'Divehi Phonetic'</c>
<c>kl-00000468 'Hausa'</c>
<c>kl-0000046a 'Yoruba'</c>
<c>kl-0000046c 'Sesotho sa Leboa'</c>
<c>kl-0000046d 'Bashkir'</c>
<c>kl-0000046e 'Luxembourgish'</c>
<c>kl-0000046f 'Greenlandic'</c>
<c>kl-00000470 'Igbo'</c>
<c>kl-00000474 'Guarani'</c>
<c>kl-00000475 'Hawaiian'</c>
<c>kl-00000480 'Uyghur (Legacy)'</c>
<c>kl-00000481 'Maori'</c>
<c>kl-00000485 'Sakha'</c>
<c>kl-00000488 'Wolof'</c>
<c>kl-00000492 'Central Kurdish'</c>
<c>kl-00000804 'Chinese (Simplified) - US'</c>
<c>kl-00000807 'Swiss German'</c>
<c>kl-00000809 'United Kingdom'</c>
<c>kl-0000080a 'Latin American'</c>
<c>kl-0000080c 'Belgian French'</c>
<c>kl-00000813 'Belgian (Period)'</c>
<c>kl-00000816 'Portuguese'</c>
<c>kl-0000081a 'Serbian (Latin)'</c>
<c>kl-0000082c 'Azerbaijani Cyrillic'</c>
<c>kl-0000083b 'Swedish with Sami'</c>
<c>kl-00000843 'Uzbek Cyrillic'</c>
<c>kl-00000850 'Mongolian (Mongolian Script)'</c>
<c>kl-0000085d 'Inuktitut - Latin'</c>
<c>kl-0000085f 'Central Atlas Tamazight'</c>
<c>kl-00000c04 'Chinese (Traditional, Hong Kong S.A.R.) - US'</c>
<c>kl-00000c0c 'Canadian French (Legacy)'</c>
<c>kl-00000c1a 'Serbian (Cyrillic)'</c>
<c>kl-00000c51 'Dzongkha'</c>
<c>kl-00001004 'Chinese (Simplified, Singapore) - US'</c>
<c>kl-00001009 'Canadian French'</c>
<c>kl-0000100c 'Swiss French'</c>
<c>kl-0000105f 'Tifinagh (Basic)'</c>
<c>kl-00001404 'Chinese (Traditional, Macao S.A.R.) - US'</c>
<c>kl-00001809 'Irish'</c>
<c>kl-0000201a 'Bosnian (Cyrillic)'</c>
<c>kl-00004009 'English (India)'</c>
<c>kl-00010401 'Arabic (102)'</c>
<c>kl-00010402 'Bulgarian (Latin)'</c>
<c>kl-00010405 'Czech (QWERTY)'</c>
<c>kl-00010407 'German (IBM)'</c>
<c>kl-00010408 'Greek (220)'</c>
<c>kl-00010409 'United States-Dvorak'</c>
<c>kl-0001040a 'Spanish Variation'</c>
<c>kl-0001040e 'Hungarian 101-key'</c>
<c>kl-00010410 'Italian (142)'</c>
<c>kl-00010415 'Polish (214)'</c>
<c>kl-00010416 'Portuguese (Brazil ABNT2)'</c>
<c>kl-00010418 'Romanian (Standard)'</c>
<c>kl-00010419 'Russian (Typewriter)'</c>
<c>kl-0001041b 'Slovak (QWERTY)'</c>
<c>kl-0001041e 'Thai Pattachote'</c>
<c>kl-0001041f 'Turkish F'</c>
<c>kl-00010426 'Latvian (QWERTY)'</c>
<c>kl-00010427 'Lithuanian'</c>
<c>kl-0001042b 'Armenian Western (Legacy)'</c>
<c>kl-0001042c 'Azerbaijani (Standard)'</c>
<c>kl-0001042e 'Sorbian Extended'</c>
<c>kl-0001042f 'Macedonian (North Macedonia) - Standard'</c>
<c>kl-00010437 'Georgian (QWERTY)'</c>
<c>kl-00010439 'Hindi Traditional'</c>
<c>kl-0001043a 'Maltese 48-Key'</c>
<c>kl-0001043b 'Sami Extended Norway'</c>
<c>kl-00010444 'Tatar'</c>
<c>kl-00010445 'Bangla - INSCRIPT (Legacy)'</c>
<c>kl-00010451 'Tibetan (PRC) - Updated'</c>
<c>kl-00010453 'Khmer (NIDA)'</c>
<c>kl-0001045a 'Syriac Phonetic'</c>
<c>kl-0001045b 'Sinhala - Wij 9'</c>
<c>kl-0001045c 'Cherokee Phonetic'</c>
<c>kl-0001045d 'Inuktitut - Naqittaut'</c>
<c>kl-00010465 'Divehi Typewriter'</c>
<c>kl-00010480 'Uyghur'</c>
<c>kl-0001080c 'Belgian (Comma)'</c>
<c>kl-0001083b 'Finnish with Sami'</c>
<c>kl-00010850 'Traditional Mongolian (Standard)'</c>
<c>kl-00010c00 'Myanmar (Phonetic order)'</c>
<c>kl-00011009 'Canadian Multilingual Standard'</c>
<c>kl-0001105f 'Tifinagh (Extended)'</c>
<c>kl-00011809 'Scottish Gaelic'</c>
<c>kl-00020401 'Arabic (102) AZERTY'</c>
<c>kl-00020402 'Bulgarian (Phonetic)'</c>
<c>kl-00020405 'Czech Programmers'</c>
<c>kl-00020408 'Greek (319)'</c>
<c>kl-00020409 'United States-International'</c>
<c>kl-0002040d 'Hebrew (Standard)'</c>
<c>kl-00020418 'Romanian (Programmers)'</c>
<c>kl-00020419 'Russian - Mnemonic'</c>
<c>kl-0002041e 'Thai Kedmanee (non-ShiftLock)'</c>
<c>kl-00020422 'Ukrainian (Enhanced)'</c>
<c>kl-00020426 'Latvian (Standard)'</c>
<c>kl-00020427 'Lithuanian Standard'</c>
<c>kl-0002042b 'Armenian Phonetic'</c>
<c>kl-0002042e 'Sorbian Standard'</c>
<c>kl-00020437 'Georgian (Ergonomic)'</c>
<c>kl-00020445 'Bangla - INSCRIPT'</c>
<c>kl-00020449 'Tamil 99'</c>
<c>kl-0002083b 'Sami Extended Finland-Sweden'</c>
<c>kl-00020c00 'New Tai Lue'</c>
<c>kl-00030402 'Bulgarian'</c>
<c>kl-00030408 'Greek (220) Latin'</c>
<c>kl-0003041e 'Thai Pattachote (non-ShiftLock)'</c>
<c>kl-0003042b 'Armenian Typewriter'</c>
<c>kl-00030437 'Georgian (MES)'</c>
<c>kl-00030c00 'Tai Le'</c>
<c>kl-00040402 'Bulgarian (Phonetic Traditional)'</c>
<c>kl-00040408 'Greek (319) Latin'</c>
<c>kl-00040437 'Georgian (Old Alphabets)'</c>
<c>kl-00040c00 'Ogham'</c>
<c>kl-00050408 'Greek Latin'</c>
<c>kl-00050409 'US English Table for IBM Arabic 238_L'</c>
<c>kl-00050429 'Persian (Standard)'</c>
<c>kl-00060408 'Greek Polytonic'</c>
<c>kl-00070c00 'Lisu (Basic)'</c>
<c>kl-00080c00 'Lisu (Standard)'</c>
<c>kl-00090c00 'N’Ko'</c>
<c>kl-000a0c00 'Phags-pa'</c>
<c>kl-000b0c00 'Buginese'</c>
<c>kl-000c0c00 'Gothic'</c>
<c>kl-000d0c00 'Ol Chiki'</c>
<c>kl-000e0c00 'Osmanya'</c>
<c>kl-000f0c00 'Old Italic'</c>
<c>kl-00100c00 'Sora'</c>
<c>kl-00110c00 'Javanese'</c>
<c>kl-00120c00 'Futhark'</c>
<c>kl-00130c00 'Myanmar (Visual order)'</c>
<c>kl-00140c00 'ADLaM'</c>
<c>kl-00150c00 'Osage'</c>
<c>langarabic 'Arabic'</c>
<c>langbulgarian 'Bulgarian'</c>
<c>langchineses 'Chinese Simplified'</c>
<c>langchineset 'Chinese Traditional'</c>
<c>langcroatian 'Croatian'</c>
<c>langczech 'Czech'</c>
<c>langdanish 'Danish'</c>
<c>langdutch 'Dutch'</c>
<c>langenglishgb 'English (GB)'</c>
<c>langestonian 'Estonian'</c>
<c>langfinnish 'Finnish'</c>
<c>langfrench 'French'</c>
<c>langfrenchcanadian 'French (Canadian)'</c>
<c>langgreek 'Greek'</c>
<c>langhebrew 'Hebrew'</c>
<c>langhungarian 'Hungarian'</c>
<c>langime 'Input Method Editor (IME)'</c>
<c>langimejp 'Japanese (IME)'</c>
<c>langimeko 'Korean (IME)'</c>
<c>langimetc 'Chinese Traditional (IME)'</c>
<c>langitalian 'Italian'</c>
<c>langjapanese 'Japanese'</c>
<c>langkorean 'Korean'</c>
<c>langlatvian 'Latvian'</c>
<c>langlithuanian 'Lithuanian'</c>
<c>langnorwegian 'Norwegian'</c>
<c>langpolish 'Polish'</c>
<c>langportuguesebr 'Portuguese (Brazilian)'</c>
<c>langportuguesept 'Portuguese'</c>
<c>langromanian 'Romanian'</c>
<c>langrussian 'Russian'</c>
<c>langserbian 'Serbian'</c>
<c>langslovak 'Slovak'</c>
<c>langslovenian 'Slovenian'</c>
<c>langspanish 'Spanish'</c>
<c>langswedish 'Swedish'</c>
<c>langtamil 'Tamil'</c>
<c>langthai 'Thai'</c>
<c>langturkish 'Turkish'</c>
<c>langukrainian 'Ukrainian'</c>
<c>lockscreens 'Lock Screen backgrounds'</c>
<c>lpasvc 'Local Profile Assistant Service'</c>
<c>lpksetup 'Language Pack Setup'</c>
<c>mail 'Windows Mail'</c>
<c>mailcommdll 'Windows Mail Communications Library'</c>
<c>mapcontrol 'Map Control'</c>
<c>messagingsvc 'Messaging Service'</c>
<c>Microsoft.549981C3F5F10 'Cortana'</c>
<c>Microsoft.Advertising.Xaml 'Microsoft Advertising SDK for XAML'</c>
<c>Microsoft.AsyncTextService 'AsyncTextService'</c>
<c>Microsoft.BingWeather 'MSN Weather'</c>
<c>Microsoft.BioEnrollment 'Windows Hello Setup'</c>
<c>Microsoft.CredDialogHost 'Credential Dialog'</c>
<c>Microsoft.ECApp 'Eye Control'</c>
<c>Microsoft.GetHelp 'Get Help'</c>
<c>Microsoft.Getstarted 'Tips (Get Started)'</c>
<c>Microsoft.HEIFImageExtension 'HEIF-Bilderweiterungen'</c>
<c>Microsoft.Microsoft3DViewer '3D-Viewer'</c>
<c>Microsoft.MicrosoftEdge.Stable 'Microsoft Edge (Chromium)'</c>
<c>Microsoft.MicrosoftEdge 'Microsoft Edge (Legacy)'</c>
<c>Microsoft.MicrosoftEdgeDevToolsClient 'Microsoft Edge DevTools Client'</c>
<c>Microsoft.MicrosoftOfficeHub 'Office'</c>
<c>Microsoft.MicrosoftSolitaireCollection 'Microsoft Solitaire Collection'</c>
<c>Microsoft.MicrosoftStickyNotes 'Microsoft Sticky Notes'</c>
<c>Microsoft.MixedReality.Portal 'Mixed Reality Portal'</c>
<c>Microsoft.MSPaint 'Paint 3D'</c>
<c>Microsoft.Office.OneNote 'OneNote'</c>
<c>Microsoft.People 'Microsoft People'</c>
<c>Microsoft.ScreenSketch 'Snip &amp; Sketch'</c>
<c>Microsoft.Services.Store.Engagement 'Microsoft Engagement Framework'</c>
<c>Microsoft.SkypeApp 'Skype'</c>
<c>Microsoft.StorePurchaseApp 'Store Experience Host'</c>
<c>Microsoft.VP9VideoExtensions 'VP9-Videoerweiterungen'</c>
<c>Microsoft.Wallet 'Microsoft Pay'</c>
<c>Microsoft.WebMediaExtensions 'Web Media Extensions'</c>
<c>Microsoft.WebpImageExtension 'Webp-Bilderweiterungen'</c>
<c>Microsoft.Win32WebViewHost 'Desktop App Web Viewer'</c>
<c>Microsoft.Windows.Apprep.ChxApp 'SmartScreen'</c>
<c>Microsoft.Windows.AssignedAccessLockApp 'Assigned Access Lock app'</c>
<c>Microsoft.Windows.CallingShellApp 'Call'</c>
<c>Microsoft.Windows.CapturePicker 'Capture Picker'</c>
<c>Microsoft.Windows.ContentDeliveryManager 'Content Delivery Manager'</c>
<c>Microsoft.Windows.NarratorQuickStart 'Narrator'</c>
<c>Microsoft.Windows.OOBENetworkCaptivePortal 'Captive Portal Flow'</c>
<c>Microsoft.Windows.ParentalControls 'Microsoft family features'</c>
<c>Microsoft.Windows.Photos 'Microsoft Photos'</c>
<c>Microsoft.Windows.SecureAssessmentBrowser 'PrĂĽfung'</c>
<c>Microsoft.WindowsAlarms 'Windows Alarms &amp; Clock'</c>
<c>Microsoft.WindowsCalculator 'Windows Calculator'</c>
<c>Microsoft.WindowsCamera 'Windows Camera'</c>
<c>microsoft.windowscommunicationsapps 'Mail and Calendar'</c>
<c>Microsoft.WindowsFeedbackHub 'Feedback Hub'</c>
<c>Microsoft.WindowsMaps 'Windows Maps'</c>
<c>Microsoft.WindowsSoundRecorder 'Windows Voice Recorder'</c>
<c>Microsoft.Xbox.TCUI 'Xbox TCUI'</c>
<c>Microsoft.XboxApp 'Xbox'</c>
<c>Microsoft.XboxGameCallableUI 'Xbox Game UI'</c>
<c>Microsoft.XboxGameOverlay 'Xbox Game Bar Plugin'</c>
<c>Microsoft.XboxGamingOverlay 'Xbox Game Bar'</c>
<c>Microsoft.XboxSpeechToTextOverlay 'Xbox Game Speech Window'</c>
<c>Microsoft.YourPhone 'Your Phone'</c>
<c>Microsoft.ZuneMusic 'Groove Music'</c>
<c>Microsoft.ZuneVideo 'Movies &amp; TV'</c>
<c>midi 'Microsoft GS Wavetable SW Synth (MIDI)'</c>
<c>mixedreality 'Windows Mixed Reality'</c>
<c>netqos 'Quality of Service Packet Scheduler (QoS)'</c>
<c>nettopology 'Link-Layer Topology Discovery protocol (LLTD)'</c>
<c>nfc 'Near Field Communication (NFC)'</c>
<c>offlinefiles 'Offline Files'</c>
<c>onedrive</c>
<c>openssh</c>
<c>otherthemes 'Windows Personalization themes'</c>
<c>payments</c>
<c>pdfreader 'Windows Reader (PDF)'</c>
<c>phonesvc 'Phone Service'</c>
<c>pos 'Point of Service (POS)'</c>
<c>pushtoinstall 'Windows PushToInstall Service'</c>
<c>rasauto 'Remote Access Auto Connection Manager'</c>
<c>rascmd 'Remote Access Service Client Tools'</c>
<c>rasmans 'Remote Access Connection Manager'</c>
<c>rdc 'Remote Differential Compression (RDC)'</c>
<c>remoteaccessservice 'Routing and Remote Access Service'</c>
<c>remoteaccesssupport 'Routing and Remote Access support'</c>
<c>remoteassistance 'Remote Assistance'</c>
<c>remoteregistry 'Remote Registry'</c>
<c>retaildemo 'Retail Demo Content'</c>
<c>settingsync 'Setting Sync'</c>
<c>sharedaccess 'Internet Connection Sharing (ICS)'</c>
<c>sharehost32 'Share Host - 32 bit'</c>
<c>simpletcp 'Simple TCP/IP services'</c>
<c>skypeortc 'Skype ORTC'</c>
<c>smsrouter 'SMS Router Service'</c>
<c>soundsdefault 'Sounds (Default)'</c>
<c>soundthemes 'Sound Themes'</c>
<c>sourcessxsdir 'Manual feature repository'</c>
<c>speechapi 'Speech API'</c>
<c>speechcommon 'Speech Recognition'</c>
<c>speechtts 'Speech TTS'</c>
<c>staticfontcache 'Static Font Cache'</c>
<c>supportdir 'Support directory'</c>
<c>synccenter 'Sync Center'</c>
<c>tabletextservice 'Table Text Service'</c>
<c>telnetclient 'Telnet Client'</c>
<c>tftpclient 'TFTP client'</c>
<c>trkwks 'Distributed Link Tracking Client'</c>
<c>vpn 'Virtual Private Network (VPN) support'</c>
<c>wallet 'Wallet Service'</c>
<c>wallpapers 'Wallpapers (Themes)'</c>
<c>webcamexperience 'Webcam Experience'</c>
<c>Windows.CBSPreview 'Windows Barcode Preview'</c>
<c>winocr 'Windows TIFF IFilter (OCR)'</c>
<c>wwanautoconfig 'WWAN AutoConfig'</c>
<c>xbox 'Xbox - Core'</c>
</RemoveComponents>
<Compatibility protectHidden="true">
<ComponentFeatures>
<Feature enabled="no">AppGuard</Feature>
<Feature enabled="no">YubiKey</Feature>
<Feature enabled="yes">Bluetooth</Feature>
<Feature enabled="no">CapFrameX</Feature>
<Feature enabled="no">Discord</Feature>
<Feature enabled="yes">FileSharing</Feature>
<Feature enabled="no">Hyper-V</Feature>
<Feature enabled="no">iCloud</Feature>
<Feature enabled="yes">ManualSetup</Feature>
<Feature enabled="no">OfficeSupport</Feature>
<Feature enabled="yes">AppxSupport</Feature>
<Feature enabled="no">Netflix</Feature>
<Feature enabled="no">NetworkDiscovery</Feature>
<Feature enabled="no">NightLight</Feature>
<Feature enabled="yes">NvidiaSetup</Feature>
<Feature enabled="yes">OOBE</Feature>
<Feature enabled="yes">Printing</Feature>
<Feature enabled="yes">Recommended-All</Feature>
<Feature enabled="no">SamsungSwitch</Feature>
<Feature enabled="no">Scanning</Feature>
<Feature enabled="yes">ServicingStack</Feature>
<Feature enabled="no">ShellSearchSupport</Feature>
<Feature enabled="no">Spotify</Feature>
<Feature enabled="yes">SFC</Feature>
<Feature enabled="yes">DefaultFonts</Feature>
<Feature enabled="no">SafeMode</Feature>
<Feature enabled="no">TeamViewer</Feature>
<Feature enabled="no">Recommended-Tablet</Feature>
<Feature enabled="no">USBModem</Feature>
<Feature enabled="yes">USB</Feature>
<Feature enabled="yes">VideoPlayback</Feature>
<Feature enabled="no">VPN</Feature>
<Feature enabled="no">VisualStudio</Feature>
<Feature enabled="no">VSS</Feature>
<Feature enabled="yes">ActivationKMS</Feature>
<Feature enabled="yes">Activation</Feature>
<Feature enabled="yes">WindowsStore</Feature>
<Feature enabled="yes">WindowsUpdate</Feature>
<Feature enabled="yes">WLAN</Feature>
</ComponentFeatures>
<MachineDrivers>
<Machine enabled="yes">HostMachine</Machine>
<Machine enabled="no">Hyper-V VM</Machine>
<Machine enabled="no">Parallels VM</Machine>
<Machine enabled="no">Virtual Box VM</Machine>
<Machine enabled="yes">VMware VM</Machine>
</MachineDrivers>
</Compatibility>
<Features></Features>
<Packages></Packages>
<Commands>
<PostUpdates>
<!--<Command>cmd /c echo Example from [MOUNTDIR]\Windows &amp; pause</Command>-->
<!--<Command>dism /image:[MOUNTDIR] /get-intl</Command>-->
</PostUpdates>
</Commands>
<Drivers showHidden="true"></Drivers>
<Unattended mode="0">
<OEMSetupComplete>false</OEMSetupComplete>
<AnswerFileLocationPanther>false</AnswerFileLocationPanther>
<AnswerFileLocationBoot>false</AnswerFileLocationBoot>
<SaveBothArch>false</SaveBothArch>
<EditionPrompt>false</EditionPrompt>
<settings pass="windowsPE">
<component name="Microsoft-Windows-Setup">
<DynamicUpdate>
<WillShowUI>OnError</WillShowUI>
</DynamicUpdate>
<ImageInstall>
<OSImage>
<WillShowUI>OnError</WillShowUI>
<InstallFrom>
<MetaData>
<Key>/IMAGE/INDEX</Key>
<Value>1</Value>
</MetaData>
</InstallFrom>
</OSImage>
</ImageInstall>
<UserData>
<ProductKey>
<Key></Key>
</ProductKey>
</UserData>
</component>
</settings>
</Unattended>
<Tweaks>
<Settings></Settings>
<Services></Services>
<ExtraServices></ExtraServices>
<ScheduledTasks></ScheduledTasks>
</Tweaks>
<ApplyOptions>
<ImageTasks>
<Task>imageSaveRebuild</Task>
<Task>imageFormatWim</Task>
</ImageTasks>
<AutoIsoFile>NTLite.iso</AutoIsoFile>
<AutoIsoLabel>NTLite</AutoIsoLabel>
<AutoSplitSize>4000</AutoSplitSize>
<CleanHotfixedLeftovers>0</CleanHotfixedLeftovers>
<OptimizeAppX>false</OptimizeAppX>
<ReuseDriverCache>false</ReuseDriverCache>
</ApplyOptions>
<Execution>
<Remove></Remove>
<Change></Change>
<Add></Add>
</Execution>
<Registry></Registry>
</Preset>

View File

@ -0,0 +1,591 @@
<?xml version="1.0" encoding="utf-8"?>
<Preset xmlns="urn:schemas-nliteos-com:pn.v1">
<Date>02/05/2023 12:23:16</Date>
<AppInfo>
<Version>2.3.9.9039</Version>
<Licensed>Yes</Licensed>
<Protections>Yes</Protections>
<Host>Windows 10 Pro (20H2) x64 - 10.0.19042.1706 (en-US)</Host>
</AppInfo>
<ImageInfo>
<Version mode="offline">Windows 10 Professional (20H2) x64 - 10.0.19042.508 (en-US)</Version>
<GUID>{4445CA00-9DFF-4E43-8ED3-ACFC74CA0D4A}</GUID>
</ImageInfo>
<RemoveComponents AppRemovalMode="DISM">
<c>accessibility_narrator 'Narrator'</c>
<c>alg 'Application Layer Gateway Service'</c>
<c>alljoyn 'AllJoyn Router Service'</c>
<c>assignedaccess 'Assigned Access'</c>
<c>axinstall 'ActiveX Installer Service'</c>
<c>backgroundtransfer 'Networking Background Transfer'</c>
<c>branchcacheclient 'BranchCache Client'</c>
<c>ceip 'CEIP (SQM)'</c>
<c>cloudfiles 'Cloud Files API'</c>
<c>datacenterbridging 'Data Center Bridging (DCB)'</c>
<c>desktopimgdownldr 'Desktop image downloader'</c>
<c>driver_c_barcodescanner.inf</c>
<c>driver_c_cashdrawer.inf</c>
<c>driver_c_linedisplay.inf</c>
<c>driver_c_magneticstripereader.inf</c>
<c>driver_c_receiptprinter.inf</c>
<c>driver_c_smartcardreader.inf</c>
<c>driver_hidscanner.inf</c>
<c>driver_idtsec.inf</c>
<c>driver_mgtdyn.inf</c>
<c>driver_msclmd.inf</c>
<c>driver_remoteposdrv.inf</c>
<c>driver_tpmvsc.inf</c>
<c>driver_usbcciddriver.inf</c>
<c>driver_wudfusbcciddriver.inf</c>
<c>E2A4F912-2574-4A75-9BB0-0D023378592B 'App Resolver'</c>
<c>enterpriseclientsync 'Work Folders Client'</c>
<c>exchangeactivesync 'Exchange ActiveSync (EAS)'</c>
<c>F46D4000-FD22-4DB4-AC8E-4E1DDDE828FE 'Add Folder Suggestions dialog'</c>
<c>flashactivex 'Adobe Flash for Internet Explorer'</c>
<c>flashactivex32 'Adobe Flash for Internet Explorer - 32 bit'</c>
<c>font_arialblack 'Arial Black'</c>
<c>font_bahnschrift 'Bahnschrift'</c>
<c>font_cambria 'Cambria'</c>
<c>font_cambria_regular 'Cambria &amp; Cambria Math'</c>
<c>font_candara 'Candara'</c>
<c>font_comicsansms 'ComicSansMS'</c>
<c>font_constantia 'Constantia'</c>
<c>font_corbel 'Corbel'</c>
<c>font_courier 'Courier'</c>
<c>font_ebrima 'Ebrima'</c>
<c>font_ebrimabold 'Ebrima Bold'</c>
<c>font_franklingothic 'FranklinGothic'</c>
<c>font_gabriola 'Gabriola'</c>
<c>font_gadugi 'Gadugi'</c>
<c>font_gadugibold 'Gadugi Bold'</c>
<c>font_georgia 'Georgia'</c>
<c>font_holomd2 'Holo MDL2 Assets'</c>
<c>font_impact 'Impact'</c>
<c>font_inkfree 'Ink Free'</c>
<c>font_javanesetext 'Javanese Text'</c>
<c>font_leelawadeeui 'LeelawadeeUI'</c>
<c>font_leelawadeeui_regular 'Leelawadee UI'</c>
<c>font_lucidasans 'Lucida Sans Unicode'</c>
<c>font_malgungothicbold 'Malgun Gothic Bold'</c>
<c>font_malgungothicsemilight 'Malgun Gothic SemiLight'</c>
<c>font_microsofthimalaya 'Microsoft Himalaya'</c>
<c>font_microsoftjhenghei 'Microsoft JhengHei &amp; Microsoft JhengHei UI'</c>
<c>font_microsoftjhengheibold 'Microsoft JhengHei Bold &amp; Microsoft JhengHei UI Bold'</c>
<c>font_microsoftjhengheilight 'Microsoft JhengHei Light &amp; Microsoft JhengHei UI Light'</c>
<c>font_microsoftyahei 'Microsoft YaHei &amp; Microsoft YaHei UI'</c>
<c>font_microsoftyaheibold 'Microsoft YaHei Bold &amp; Microsoft YaHei UI Bold'</c>
<c>font_microsoftyaheilight 'Microsoft YaHei Light &amp; Microsoft YaHei UI Light'</c>
<c>font_mingliub 'MingLiU-ExtB &amp; PMingLiU-ExtB &amp; MingLiU_HKSCS-ExtB'</c>
<c>font_mongolianbaiti 'Mongolian Baiti'</c>
<c>font_msgothic 'MS Gothic &amp; MS UI Gothic &amp; MS PGothic'</c>
<c>font_mvboli 'MV Boli'</c>
<c>font_myanmartext 'Myanmar Text'</c>
<c>font_myanmartextbold 'Myanmar Text Bold'</c>
<c>font_newtailue 'Microsoft New Tai Lue'</c>
<c>font_newtailuebold 'Microsoft New Tai Lue Bold'</c>
<c>font_nirmalaui 'NirmalaUI'</c>
<c>font_nirmalaui_regular 'Nirmala UI'</c>
<c>font_palatinolinotype 'PalatinoLinotype'</c>
<c>font_phagspa 'Microsoft PhagsPa'</c>
<c>font_phagspabold 'Microsoft PhagsPa Bold'</c>
<c>font_segoeprint 'Segoe Print'</c>
<c>font_segoeprintbold 'Segoe Print Bold'</c>
<c>font_segoescript 'SegoeScript'</c>
<c>font_segoeui_italicssupplement 'SegoeUI ItalicsSupplement'</c>
<c>font_simsun 'SimSun &amp; NSimSun'</c>
<c>font_simsunb 'SimSun-ExtB'</c>
<c>font_sitka 'Sitka'</c>
<c>font_small 'Small'</c>
<c>font_sylfaen 'Sylfaen'</c>
<c>font_taile 'Microsoft Tai Le'</c>
<c>font_tailebold 'Microsoft Tai Le Bold'</c>
<c>font_trebuchetms 'TrebuchetMS'</c>
<c>font_vector 'Vector'</c>
<c>font_verdana 'Verdana'</c>
<c>font_yibaiti 'Microsoft Yi Baiti'</c>
<c>font_yugothic 'Yu Gothic Regular &amp; Yu Gothic UI Semilight'</c>
<c>font_yugothicbold 'Yu Gothic Bold &amp; Yu Gothic UI Semibold &amp; Yu Gothic UI Bold'</c>
<c>font_yugothiclight 'Yu Gothic Light &amp; Yu Gothic UI Light'</c>
<c>font_yugothicmedium 'Yu Gothic Medium &amp; Yu Gothic UI Regular'</c>
<c>gameexplorer 'Game Explorer'</c>
<c>hwsupport_floppy 'Floppy disk'</c>
<c>hwsupport_smartcard 'Smartcard'</c>
<c>hwsupport_telephony 'Telephony'</c>
<c>ias 'Internet Authentication Service (IAS)'</c>
<c>inputswitchtoasthandler 'Input Switch Toast Handler'</c>
<c>insiderhub 'Windows Insider Program'</c>
<c>internetexplorer 'Internet Explorer'</c>
<c>internetexplorer32 'Internet Explorer - 32 bit'</c>
<c>ipxlatcfg 'IP Translation Configuration Service'</c>
<c>isoburn 'Windows Disc Image Burning Tool'</c>
<c>kl-00000401 'Arabic (101)'</c>
<c>kl-00000402 'Bulgarian (Typewriter)'</c>
<c>kl-00000404 'Chinese (Traditional) - US'</c>
<c>kl-00000405 'Czech'</c>
<c>kl-00000406 'Danish'</c>
<c>kl-00000408 'Greek'</c>
<c>kl-0000040a 'Spanish'</c>
<c>kl-0000040b 'Finnish'</c>
<c>kl-0000040c 'French'</c>
<c>kl-0000040d 'Hebrew'</c>
<c>kl-0000040e 'Hungarian'</c>
<c>kl-0000040f 'Icelandic'</c>
<c>kl-00000410 'Italian'</c>
<c>kl-00000411 'Japanese'</c>
<c>kl-00000412 'Korean'</c>
<c>kl-00000413 'Dutch'</c>
<c>kl-00000414 'Norwegian'</c>
<c>kl-00000415 'Polish (Programmers)'</c>
<c>kl-00000416 'Portuguese (Brazil ABNT)'</c>
<c>kl-00000418 'Romanian (Legacy)'</c>
<c>kl-00000419 'Russian'</c>
<c>kl-0000041a 'Standard'</c>
<c>kl-0000041b 'Slovak'</c>
<c>kl-0000041c 'Albanian'</c>
<c>kl-0000041d 'Swedish'</c>
<c>kl-0000041e 'Thai Kedmanee'</c>
<c>kl-0000041f 'Turkish Q'</c>
<c>kl-00000420 'Urdu'</c>
<c>kl-00000422 'Ukrainian'</c>
<c>kl-00000423 'Belarusian'</c>
<c>kl-00000424 'Slovenian'</c>
<c>kl-00000425 'Estonian'</c>
<c>kl-00000426 'Latvian'</c>
<c>kl-00000427 'Lithuanian IBM'</c>
<c>kl-00000428 'Tajik'</c>
<c>kl-00000429 'Persian'</c>
<c>kl-0000042a 'Vietnamese'</c>
<c>kl-0000042b 'Armenian Eastern (Legacy)'</c>
<c>kl-0000042c 'Azerbaijani Latin'</c>
<c>kl-0000042e 'Sorbian Standard (Legacy)'</c>
<c>kl-0000042f 'Macedonian (North Macedonia)'</c>
<c>kl-00000432 'Setswana'</c>
<c>kl-00000437 'Georgian (Legacy)'</c>
<c>kl-00000438 'Faeroese'</c>
<c>kl-00000439 'Devanagari - INSCRIPT'</c>
<c>kl-0000043a 'Maltese 47-Key'</c>
<c>kl-0000043b 'Norwegian with Sami'</c>
<c>kl-0000043f 'Kazakh'</c>
<c>kl-00000440 'Kyrgyz Cyrillic'</c>
<c>kl-00000442 'Turkmen'</c>
<c>kl-00000444 'Tatar (Legacy)'</c>
<c>kl-00000445 'Bangla'</c>
<c>kl-00000446 'Punjabi'</c>
<c>kl-00000447 'Gujarati'</c>
<c>kl-00000448 'Odia'</c>
<c>kl-00000449 'Tamil'</c>
<c>kl-0000044a 'Telugu'</c>
<c>kl-0000044b 'Kannada'</c>
<c>kl-0000044c 'Malayalam'</c>
<c>kl-0000044d 'Assamese - INSCRIPT'</c>
<c>kl-0000044e 'Marathi'</c>
<c>kl-00000450 'Mongolian Cyrillic'</c>
<c>kl-00000451 'Tibetan (PRC)'</c>
<c>kl-00000452 'United Kingdom Extended'</c>
<c>kl-00000453 'Khmer'</c>
<c>kl-00000454 'Lao'</c>
<c>kl-0000045a 'Syriac'</c>
<c>kl-0000045b 'Sinhala'</c>
<c>kl-0000045c 'Cherokee Nation'</c>
<c>kl-00000461 'Nepali'</c>
<c>kl-00000463 'Pashto (Afghanistan)'</c>
<c>kl-00000465 'Divehi Phonetic'</c>
<c>kl-00000468 'Hausa'</c>
<c>kl-0000046a 'Yoruba'</c>
<c>kl-0000046c 'Sesotho sa Leboa'</c>
<c>kl-0000046d 'Bashkir'</c>
<c>kl-0000046e 'Luxembourgish'</c>
<c>kl-0000046f 'Greenlandic'</c>
<c>kl-00000470 'Igbo'</c>
<c>kl-00000474 'Guarani'</c>
<c>kl-00000475 'Hawaiian'</c>
<c>kl-00000480 'Uyghur (Legacy)'</c>
<c>kl-00000481 'Maori'</c>
<c>kl-00000485 'Sakha'</c>
<c>kl-00000488 'Wolof'</c>
<c>kl-00000492 'Central Kurdish'</c>
<c>kl-00000804 'Chinese (Simplified) - US'</c>
<c>kl-00000807 'Swiss German'</c>
<c>kl-00000809 'United Kingdom'</c>
<c>kl-0000080a 'Latin American'</c>
<c>kl-0000080c 'Belgian French'</c>
<c>kl-00000813 'Belgian (Period)'</c>
<c>kl-00000816 'Portuguese'</c>
<c>kl-0000081a 'Serbian (Latin)'</c>
<c>kl-0000082c 'Azerbaijani Cyrillic'</c>
<c>kl-0000083b 'Swedish with Sami'</c>
<c>kl-00000843 'Uzbek Cyrillic'</c>
<c>kl-00000850 'Mongolian (Mongolian Script)'</c>
<c>kl-0000085d 'Inuktitut - Latin'</c>
<c>kl-0000085f 'Central Atlas Tamazight'</c>
<c>kl-00000c04 'Chinese (Traditional, Hong Kong S.A.R.) - US'</c>
<c>kl-00000c0c 'Canadian French (Legacy)'</c>
<c>kl-00000c1a 'Serbian (Cyrillic)'</c>
<c>kl-00000c51 'Dzongkha'</c>
<c>kl-00001004 'Chinese (Simplified, Singapore) - US'</c>
<c>kl-00001009 'Canadian French'</c>
<c>kl-0000100c 'Swiss French'</c>
<c>kl-0000105f 'Tifinagh (Basic)'</c>
<c>kl-00001404 'Chinese (Traditional, Macao S.A.R.) - US'</c>
<c>kl-00001809 'Irish'</c>
<c>kl-0000201a 'Bosnian (Cyrillic)'</c>
<c>kl-00004009 'English (India)'</c>
<c>kl-00010401 'Arabic (102)'</c>
<c>kl-00010402 'Bulgarian (Latin)'</c>
<c>kl-00010405 'Czech (QWERTY)'</c>
<c>kl-00010407 'German (IBM)'</c>
<c>kl-00010408 'Greek (220)'</c>
<c>kl-00010409 'United States-Dvorak'</c>
<c>kl-0001040a 'Spanish Variation'</c>
<c>kl-0001040e 'Hungarian 101-key'</c>
<c>kl-00010410 'Italian (142)'</c>
<c>kl-00010415 'Polish (214)'</c>
<c>kl-00010416 'Portuguese (Brazil ABNT2)'</c>
<c>kl-00010418 'Romanian (Standard)'</c>
<c>kl-00010419 'Russian (Typewriter)'</c>
<c>kl-0001041b 'Slovak (QWERTY)'</c>
<c>kl-0001041e 'Thai Pattachote'</c>
<c>kl-0001041f 'Turkish F'</c>
<c>kl-00010426 'Latvian (QWERTY)'</c>
<c>kl-00010427 'Lithuanian'</c>
<c>kl-0001042b 'Armenian Western (Legacy)'</c>
<c>kl-0001042c 'Azerbaijani (Standard)'</c>
<c>kl-0001042e 'Sorbian Extended'</c>
<c>kl-0001042f 'Macedonian (North Macedonia) - Standard'</c>
<c>kl-00010437 'Georgian (QWERTY)'</c>
<c>kl-00010439 'Hindi Traditional'</c>
<c>kl-0001043a 'Maltese 48-Key'</c>
<c>kl-0001043b 'Sami Extended Norway'</c>
<c>kl-00010444 'Tatar'</c>
<c>kl-00010445 'Bangla - INSCRIPT (Legacy)'</c>
<c>kl-00010451 'Tibetan (PRC) - Updated'</c>
<c>kl-00010453 'Khmer (NIDA)'</c>
<c>kl-0001045a 'Syriac Phonetic'</c>
<c>kl-0001045b 'Sinhala - Wij 9'</c>
<c>kl-0001045c 'Cherokee Phonetic'</c>
<c>kl-0001045d 'Inuktitut - Naqittaut'</c>
<c>kl-00010465 'Divehi Typewriter'</c>
<c>kl-00010480 'Uyghur'</c>
<c>kl-0001080c 'Belgian (Comma)'</c>
<c>kl-0001083b 'Finnish with Sami'</c>
<c>kl-00010850 'Traditional Mongolian (Standard)'</c>
<c>kl-00010c00 'Myanmar (Phonetic order)'</c>
<c>kl-00011009 'Canadian Multilingual Standard'</c>
<c>kl-0001105f 'Tifinagh (Extended)'</c>
<c>kl-00011809 'Scottish Gaelic'</c>
<c>kl-00020401 'Arabic (102) AZERTY'</c>
<c>kl-00020402 'Bulgarian (Phonetic)'</c>
<c>kl-00020405 'Czech Programmers'</c>
<c>kl-00020408 'Greek (319)'</c>
<c>kl-00020409 'United States-International'</c>
<c>kl-0002040d 'Hebrew (Standard)'</c>
<c>kl-00020418 'Romanian (Programmers)'</c>
<c>kl-00020419 'Russian - Mnemonic'</c>
<c>kl-0002041e 'Thai Kedmanee (non-ShiftLock)'</c>
<c>kl-00020422 'Ukrainian (Enhanced)'</c>
<c>kl-00020426 'Latvian (Standard)'</c>
<c>kl-00020427 'Lithuanian Standard'</c>
<c>kl-0002042b 'Armenian Phonetic'</c>
<c>kl-0002042e 'Sorbian Standard'</c>
<c>kl-00020437 'Georgian (Ergonomic)'</c>
<c>kl-00020445 'Bangla - INSCRIPT'</c>
<c>kl-00020449 'Tamil 99'</c>
<c>kl-0002083b 'Sami Extended Finland-Sweden'</c>
<c>kl-00020c00 'New Tai Lue'</c>
<c>kl-00030402 'Bulgarian'</c>
<c>kl-00030408 'Greek (220) Latin'</c>
<c>kl-0003041e 'Thai Pattachote (non-ShiftLock)'</c>
<c>kl-0003042b 'Armenian Typewriter'</c>
<c>kl-00030437 'Georgian (MES)'</c>
<c>kl-00030c00 'Tai Le'</c>
<c>kl-00040402 'Bulgarian (Phonetic Traditional)'</c>
<c>kl-00040408 'Greek (319) Latin'</c>
<c>kl-00040437 'Georgian (Old Alphabets)'</c>
<c>kl-00040c00 'Ogham'</c>
<c>kl-00050408 'Greek Latin'</c>
<c>kl-00050409 'US English Table for IBM Arabic 238_L'</c>
<c>kl-00050429 'Persian (Standard)'</c>
<c>kl-00060408 'Greek Polytonic'</c>
<c>kl-00070c00 'Lisu (Basic)'</c>
<c>kl-00080c00 'Lisu (Standard)'</c>
<c>kl-00090c00 'N’Ko'</c>
<c>kl-000a0c00 'Phags-pa'</c>
<c>kl-000b0c00 'Buginese'</c>
<c>kl-000c0c00 'Gothic'</c>
<c>kl-000d0c00 'Ol Chiki'</c>
<c>kl-000e0c00 'Osmanya'</c>
<c>kl-000f0c00 'Old Italic'</c>
<c>kl-00100c00 'Sora'</c>
<c>kl-00110c00 'Javanese'</c>
<c>kl-00120c00 'Futhark'</c>
<c>kl-00130c00 'Myanmar (Visual order)'</c>
<c>kl-00140c00 'ADLaM'</c>
<c>kl-00150c00 'Osage'</c>
<c>langarabic 'Arabic'</c>
<c>langbulgarian 'Bulgarian'</c>
<c>langchineses 'Chinese Simplified'</c>
<c>langchineset 'Chinese Traditional'</c>
<c>langcroatian 'Croatian'</c>
<c>langczech 'Czech'</c>
<c>langdanish 'Danish'</c>
<c>langdutch 'Dutch'</c>
<c>langenglishgb 'English (GB)'</c>
<c>langestonian 'Estonian'</c>
<c>langfinnish 'Finnish'</c>
<c>langfrench 'French'</c>
<c>langfrenchcanadian 'French (Canadian)'</c>
<c>langgreek 'Greek'</c>
<c>langhebrew 'Hebrew'</c>
<c>langhungarian 'Hungarian'</c>
<c>langime 'Input Method Editor (IME)'</c>
<c>langimejp 'Japanese (IME)'</c>
<c>langimeko 'Korean (IME)'</c>
<c>langimetc 'Chinese Traditional (IME)'</c>
<c>langitalian 'Italian'</c>
<c>langjapanese 'Japanese'</c>
<c>langkorean 'Korean'</c>
<c>langlatvian 'Latvian'</c>
<c>langlithuanian 'Lithuanian'</c>
<c>langnorwegian 'Norwegian'</c>
<c>langpolish 'Polish'</c>
<c>langportuguesebr 'Portuguese (Brazilian)'</c>
<c>langportuguesept 'Portuguese'</c>
<c>langromanian 'Romanian'</c>
<c>langrussian 'Russian'</c>
<c>langserbian 'Serbian'</c>
<c>langslovak 'Slovak'</c>
<c>langslovenian 'Slovenian'</c>
<c>langspanish 'Spanish'</c>
<c>langswedish 'Swedish'</c>
<c>langtamil 'Tamil'</c>
<c>langthai 'Thai'</c>
<c>langturkish 'Turkish'</c>
<c>langukrainian 'Ukrainian'</c>
<c>lockscreens 'Lock Screen backgrounds'</c>
<c>lpasvc 'Local Profile Assistant Service'</c>
<c>lpksetup 'Language Pack Setup'</c>
<c>mail 'Windows Mail'</c>
<c>mailcommdll 'Windows Mail Communications Library'</c>
<c>mapcontrol 'Map Control'</c>
<c>messagingsvc 'Messaging Service'</c>
<c>Microsoft.549981C3F5F10 'Cortana'</c>
<c>Microsoft.Advertising.Xaml 'Microsoft Advertising SDK for XAML'</c>
<c>Microsoft.AsyncTextService 'AsyncTextService'</c>
<c>Microsoft.BingWeather 'MSN Weather'</c>
<c>Microsoft.BioEnrollment 'Windows Hello Setup'</c>
<c>Microsoft.CredDialogHost 'Credential Dialog'</c>
<c>Microsoft.ECApp 'Eye Control'</c>
<c>Microsoft.GetHelp 'Get Help'</c>
<c>Microsoft.Getstarted 'Tips (Get Started)'</c>
<c>Microsoft.HEIFImageExtension 'HEIF-Bilderweiterungen'</c>
<c>Microsoft.Microsoft3DViewer '3D-Viewer'</c>
<c>Microsoft.MicrosoftEdge.Stable 'Microsoft Edge (Chromium)'</c>
<c>Microsoft.MicrosoftEdge 'Microsoft Edge (Legacy)'</c>
<c>Microsoft.MicrosoftEdgeDevToolsClient 'Microsoft Edge DevTools Client'</c>
<c>Microsoft.MicrosoftOfficeHub 'Office'</c>
<c>Microsoft.MicrosoftSolitaireCollection 'Microsoft Solitaire Collection'</c>
<c>Microsoft.MicrosoftStickyNotes 'Microsoft Sticky Notes'</c>
<c>Microsoft.MixedReality.Portal 'Mixed Reality Portal'</c>
<c>Microsoft.MSPaint 'Paint 3D'</c>
<c>Microsoft.Office.OneNote 'OneNote'</c>
<c>Microsoft.People 'Microsoft People'</c>
<c>Microsoft.ScreenSketch 'Snip &amp; Sketch'</c>
<c>Microsoft.Services.Store.Engagement 'Microsoft Engagement Framework'</c>
<c>Microsoft.SkypeApp 'Skype'</c>
<c>Microsoft.StorePurchaseApp 'Store Experience Host'</c>
<c>Microsoft.VP9VideoExtensions 'VP9-Videoerweiterungen'</c>
<c>Microsoft.Wallet 'Microsoft Pay'</c>
<c>Microsoft.WebMediaExtensions 'Web Media Extensions'</c>
<c>Microsoft.WebpImageExtension 'Webp-Bilderweiterungen'</c>
<c>Microsoft.Win32WebViewHost 'Desktop App Web Viewer'</c>
<c>Microsoft.Windows.Apprep.ChxApp 'SmartScreen'</c>
<c>Microsoft.Windows.AssignedAccessLockApp 'Assigned Access Lock app'</c>
<c>Microsoft.Windows.CallingShellApp 'Call'</c>
<c>Microsoft.Windows.CapturePicker 'Capture Picker'</c>
<c>Microsoft.Windows.ContentDeliveryManager 'Content Delivery Manager'</c>
<c>Microsoft.Windows.NarratorQuickStart 'Narrator'</c>
<c>Microsoft.Windows.OOBENetworkCaptivePortal 'Captive Portal Flow'</c>
<c>Microsoft.Windows.ParentalControls 'Microsoft family features'</c>
<c>Microsoft.Windows.Photos 'Microsoft Photos'</c>
<c>Microsoft.Windows.SecureAssessmentBrowser 'PrĂĽfung'</c>
<c>Microsoft.WindowsAlarms 'Windows Alarms &amp; Clock'</c>
<c>Microsoft.WindowsCalculator 'Windows Calculator'</c>
<c>Microsoft.WindowsCamera 'Windows Camera'</c>
<c>microsoft.windowscommunicationsapps 'Mail and Calendar'</c>
<c>Microsoft.WindowsFeedbackHub 'Feedback Hub'</c>
<c>Microsoft.WindowsMaps 'Windows Maps'</c>
<c>Microsoft.WindowsSoundRecorder 'Windows Voice Recorder'</c>
<c>Microsoft.Xbox.TCUI 'Xbox TCUI'</c>
<c>Microsoft.XboxApp 'Xbox'</c>
<c>Microsoft.XboxGameCallableUI 'Xbox Game UI'</c>
<c>Microsoft.XboxGameOverlay 'Xbox Game Bar Plugin'</c>
<c>Microsoft.XboxGamingOverlay 'Xbox Game Bar'</c>
<c>Microsoft.XboxSpeechToTextOverlay 'Xbox Game Speech Window'</c>
<c>Microsoft.YourPhone 'Your Phone'</c>
<c>Microsoft.ZuneMusic 'Groove Music'</c>
<c>Microsoft.ZuneVideo 'Movies &amp; TV'</c>
<c>midi 'Microsoft GS Wavetable SW Synth (MIDI)'</c>
<c>mixedreality 'Windows Mixed Reality'</c>
<c>netqos 'Quality of Service Packet Scheduler (QoS)'</c>
<c>nettopology 'Link-Layer Topology Discovery protocol (LLTD)'</c>
<c>nfc 'Near Field Communication (NFC)'</c>
<c>offlinefiles 'Offline Files'</c>
<c>onedrive</c>
<c>openssh</c>
<c>otherthemes 'Windows Personalization themes'</c>
<c>payments</c>
<c>pdfreader 'Windows Reader (PDF)'</c>
<c>phonesvc 'Phone Service'</c>
<c>pos 'Point of Service (POS)'</c>
<c>pushtoinstall 'Windows PushToInstall Service'</c>
<c>rasauto 'Remote Access Auto Connection Manager'</c>
<c>rascmd 'Remote Access Service Client Tools'</c>
<c>rasmans 'Remote Access Connection Manager'</c>
<c>rdc 'Remote Differential Compression (RDC)'</c>
<c>remoteaccessservice 'Routing and Remote Access Service'</c>
<c>remoteaccesssupport 'Routing and Remote Access support'</c>
<c>remoteassistance 'Remote Assistance'</c>
<c>remoteregistry 'Remote Registry'</c>
<c>retaildemo 'Retail Demo Content'</c>
<c>settingsync 'Setting Sync'</c>
<c>sharedaccess 'Internet Connection Sharing (ICS)'</c>
<c>sharehost32 'Share Host - 32 bit'</c>
<c>simpletcp 'Simple TCP/IP services'</c>
<c>skypeortc 'Skype ORTC'</c>
<c>smsrouter 'SMS Router Service'</c>
<c>soundsdefault 'Sounds (Default)'</c>
<c>soundthemes 'Sound Themes'</c>
<c>sourcessxsdir 'Manual feature repository'</c>
<c>speechapi 'Speech API'</c>
<c>speechcommon 'Speech Recognition'</c>
<c>speechtts 'Speech TTS'</c>
<c>staticfontcache 'Static Font Cache'</c>
<c>supportdir 'Support directory'</c>
<c>synccenter 'Sync Center'</c>
<c>tabletextservice 'Table Text Service'</c>
<c>telnetclient 'Telnet Client'</c>
<c>tftpclient 'TFTP client'</c>
<c>trkwks 'Distributed Link Tracking Client'</c>
<c>vpn 'Virtual Private Network (VPN) support'</c>
<c>wallet 'Wallet Service'</c>
<c>wallpapers 'Wallpapers (Themes)'</c>
<c>webcamexperience 'Webcam Experience'</c>
<c>Windows.CBSPreview 'Windows Barcode Preview'</c>
<c>winocr 'Windows TIFF IFilter (OCR)'</c>
<c>wwanautoconfig 'WWAN AutoConfig'</c>
<c>xbox 'Xbox - Core'</c>
</RemoveComponents>
<Compatibility protectHidden="true">
<ComponentFeatures>
<Feature enabled="no">AppGuard</Feature>
<Feature enabled="no">YubiKey</Feature>
<Feature enabled="yes">Bluetooth</Feature>
<Feature enabled="no">CapFrameX</Feature>
<Feature enabled="no">Discord</Feature>
<Feature enabled="yes">FileSharing</Feature>
<Feature enabled="no">Hyper-V</Feature>
<Feature enabled="no">iCloud</Feature>
<Feature enabled="yes">ManualSetup</Feature>
<Feature enabled="no">OfficeSupport</Feature>
<Feature enabled="yes">AppxSupport</Feature>
<Feature enabled="no">Netflix</Feature>
<Feature enabled="no">NetworkDiscovery</Feature>
<Feature enabled="no">NightLight</Feature>
<Feature enabled="yes">NvidiaSetup</Feature>
<Feature enabled="yes">OOBE</Feature>
<Feature enabled="yes">Printing</Feature>
<Feature enabled="yes">Recommended-All</Feature>
<Feature enabled="no">SamsungSwitch</Feature>
<Feature enabled="no">Scanning</Feature>
<Feature enabled="yes">ServicingStack</Feature>
<Feature enabled="no">ShellSearchSupport</Feature>
<Feature enabled="no">Spotify</Feature>
<Feature enabled="yes">SFC</Feature>
<Feature enabled="yes">DefaultFonts</Feature>
<Feature enabled="no">SafeMode</Feature>
<Feature enabled="no">TeamViewer</Feature>
<Feature enabled="no">Recommended-Tablet</Feature>
<Feature enabled="no">USBModem</Feature>
<Feature enabled="yes">USB</Feature>
<Feature enabled="yes">VideoPlayback</Feature>
<Feature enabled="no">VPN</Feature>
<Feature enabled="no">VisualStudio</Feature>
<Feature enabled="no">VSS</Feature>
<Feature enabled="yes">ActivationKMS</Feature>
<Feature enabled="yes">Activation</Feature>
<Feature enabled="yes">WindowsStore</Feature>
<Feature enabled="yes">WindowsUpdate</Feature>
<Feature enabled="yes">WLAN</Feature>
</ComponentFeatures>
<MachineDrivers>
<Machine enabled="yes">HostMachine</Machine>
<Machine enabled="no">Hyper-V VM</Machine>
<Machine enabled="no">Parallels VM</Machine>
<Machine enabled="no">Virtual Box VM</Machine>
<Machine enabled="yes">VMware VM</Machine>
</MachineDrivers>
</Compatibility>
<Features></Features>
<Packages></Packages>
<Commands>
<PostUpdates>
<!--<Command>cmd /c echo Example from [MOUNTDIR]\Windows &amp; pause</Command>-->
<!--<Command>dism /image:[MOUNTDIR] /get-intl</Command>-->
</PostUpdates>
</Commands>
<Drivers showHidden="true"></Drivers>
<Unattended mode="0">
<OEMSetupComplete>false</OEMSetupComplete>
<AnswerFileLocationPanther>false</AnswerFileLocationPanther>
<AnswerFileLocationBoot>false</AnswerFileLocationBoot>
<SaveBothArch>false</SaveBothArch>
<EditionPrompt>false</EditionPrompt>
<settings pass="windowsPE">
<component name="Microsoft-Windows-Setup">
<DynamicUpdate>
<WillShowUI>OnError</WillShowUI>
</DynamicUpdate>
<ImageInstall>
<OSImage>
<WillShowUI>OnError</WillShowUI>
<InstallFrom>
<MetaData>
<Key>/IMAGE/INDEX</Key>
<Value>1</Value>
</MetaData>
</InstallFrom>
</OSImage>
</ImageInstall>
<UserData>
<ProductKey>
<Key></Key>
</ProductKey>
</UserData>
</component>
</settings>
</Unattended>
<Tweaks>
<Settings></Settings>
<Services></Services>
<ExtraServices></ExtraServices>
<ScheduledTasks></ScheduledTasks>
</Tweaks>
<ApplyOptions>
<ImageTasks>
<Task>imageSaveRebuild</Task>
<Task>imageFormatWim</Task>
</ImageTasks>
<AutoIsoFile>NTLite.iso</AutoIsoFile>
<AutoIsoLabel>NTLite</AutoIsoLabel>
<AutoSplitSize>4000</AutoSplitSize>
<CleanHotfixedLeftovers>0</CleanHotfixedLeftovers>
<OptimizeAppX>false</OptimizeAppX>
<ReuseDriverCache>false</ReuseDriverCache>
</ApplyOptions>
<Execution>
<Remove></Remove>
<Change></Change>
<Add></Add>
</Execution>
<Registry></Registry>
</Preset>

View File

@ -1,24 +1,27 @@
<?xml version="1.0" encoding="utf-8"?>
<Preset xmlns="urn:schemas-nliteos-com:pn.v1">
<Date>01/02/2024 22:38:08</Date>
<Date>02/21/2023 14:33:44</Date>
<AppInfo>
<Version>2023.7.9371</Version>
<Version>2.3.9.9039</Version>
<Licensed>Yes</Licensed>
<Protections>Yes</Protections>
<Host>Windows 10 Pro (20H2) x64 - 10.0.19042.508 (en-US)</Host>
</AppInfo>
<ImageInfo>
<Version mode="offline">Windows 10 EnterpriseSEval (21H2) x64 - 10.0.19044.1288 (en-US)</Version>
<GUID>{D77A3B3A-D08D-49DA-82CE-D619BEC194F9}</GUID>
<Version mode="offline">Windows 10 Professional (20H2) x64 - 10.0.19042.508 (en-US)</Version>
<GUID>{1F12FBE8-C8A1-4A37-B63B-E1D56800437A}</GUID>
</ImageInfo>
<RemoveComponents AppRemovalMode="DISM">
<c>aarsvc 'Agent Activation Runtime'</c>
<c>accessibility_magnifier 'Screen Magnifier'</c>
<c>accessibility_narrator 'Narrator'</c>
<c>activedirectory 'Active Directory'</c>
<c>adamclient 'Active Directory Lightweight Directory Services (AD LDS)'</c>
<c>alg 'Application Layer Gateway Service'</c>
<c>alljoyn 'AllJoyn Router Service'</c>
<c>appv 'Application Virtualization (App-V)'</c>
<c>assignedaccess 'Assigned Access'</c>
<c>azuread 'Azure Active Directory'</c>
<c>backgroundtransfer 'Networking Background Transfer'</c>
<c>branchcacheclient 'BranchCache Client'</c>
<c>ceip 'CEIP (SQM)'</c>
@ -26,7 +29,6 @@
<c>datacenterbridging 'Data Center Bridging (DCB)'</c>
<c>desktopactivitymoderator 'Desktop Activity Moderator (DAM)'</c>
<c>desktopimgdownldr 'Desktop image downloader'</c>
<c>directml 'Direct Machine Learning (DirectML)'</c>
<c>diskquota 'Disk Quota'</c>
<c>diskquota32 'Disk Quota - 32 bit'</c>
<c>driver_61883.inf</c>
@ -34,6 +36,7 @@
<c>driver_c_barcodescanner.inf</c>
<c>driver_c_biometric.inf</c>
<c>driver_c_cashdrawer.inf</c>
<c>driver_c_holographic.inf</c>
<c>driver_c_infrared.inf</c>
<c>driver_c_linedisplay.inf</c>
<c>driver_c_magneticstripereader.inf</c>
@ -207,6 +210,7 @@
<c>driver_msclmd.inf</c>
<c>driver_oposdrv.inf</c>
<c>driver_pcmcia.inf</c>
<c>driver_perceptionsimulationheadset.inf</c>
<c>driver_remoteposdrv.inf</c>
<c>driver_sensorshidclassdriver.inf</c>
<c>driver_sensorsservicedriver.inf</c>
@ -231,13 +235,15 @@
<c>driver_wvmic.inf</c>
<c>driver_wvmic_ext.inf</c>
<c>driver_wvpci.inf</c>
<c>e2a4f912-2574-4a75-9bb0-0d023378592b 'App Resolver'</c>
<c>E2A4F912-2574-4A75-9BB0-0D023378592B 'App Resolver'</c>
<c>easeofaccessthemes 'Ease Of Access Themes'</c>
<c>edgeupdate 'Microsoft Edge Update'</c>
<c>embeddedmode 'Embedded Mode'</c>
<c>enterpriseclientsync 'Work Folders Client'</c>
<c>exchangeactivesync 'Exchange ActiveSync (EAS)'</c>
<c>f46d4000-fd22-4db4-ac8e-4e1ddde828fe 'Add Folder Suggestions dialog'</c>
<c>F46D4000-FD22-4DB4-AC8E-4E1DDDE828FE 'Add Folder Suggestions dialog'</c>
<c>flashactivex 'Adobe Flash for Internet Explorer'</c>
<c>flashactivex32 'Adobe Flash for Internet Explorer - 32 bit'</c>
<c>folderredirection 'Folder Redirection'</c>
<c>font_arialblack 'Arial Black'</c>
<c>font_bahnschrift 'Bahnschrift'</c>
@ -255,6 +261,7 @@
<c>font_gadugi 'Gadugi'</c>
<c>font_gadugibold 'Gadugi Bold'</c>
<c>font_georgia 'Georgia'</c>
<c>font_holomd2 'Holo MDL2 Assets'</c>
<c>font_impact 'Impact'</c>
<c>font_inkfree 'Ink Free'</c>
<c>font_javanesetext 'Javanese Text'</c>
@ -572,22 +579,55 @@
<c>mediaplayernetworksharing 'WMP Network Sharing Service'</c>
<c>mediaplayernetworksharing32 'WMP Network Sharing Service - 32 bit'</c>
<c>messagingsvc 'Messaging Service'</c>
<c>microsoft.asynctextservice 'AsyncTextService'</c>
<c>microsoft.bioenrollment 'Windows Hello Setup'</c>
<c>microsoft.creddialoghost 'Credential Dialog'</c>
<c>microsoft.ecapp 'Eye Control'</c>
<c>microsoft.microsoftedge.stable 'Microsoft Edge (Chromium)'</c>
<c>microsoft.microsoftedge 'Microsoft Edge (Legacy)'</c>
<c>microsoft.microsoftedgedevtoolsclient 'Microsoft Edge DevTools Client'</c>
<c>microsoft.win32webviewhost 'Desktop App Web Viewer'</c>
<c>microsoft.windows.apprep.chxapp 'SmartScreen'</c>
<c>microsoft.windows.assignedaccesslockapp 'Assigned Access Lock app'</c>
<c>microsoft.windows.callingshellapp 'Call'</c>
<c>microsoft.windows.capturepicker 'Capture Picker'</c>
<c>microsoft.windows.contentdeliverymanager 'Content Delivery Manager'</c>
<c>microsoft.windows.narratorquickstart 'Narrator'</c>
<c>microsoft.windows.oobenetworkcaptiveportal 'Captive Portal Flow'</c>
<c>microsoft.windows.parentalcontrols 'Microsoft family features'</c>
<c>Microsoft.549981C3F5F10 'Cortana'</c>
<c>Microsoft.Advertising.Xaml 'Microsoft Advertising SDK for XAML'</c>
<c>Microsoft.AsyncTextService 'AsyncTextService'</c>
<c>Microsoft.BingWeather 'MSN Weather'</c>
<c>Microsoft.BioEnrollment 'Windows Hello Setup'</c>
<c>Microsoft.CredDialogHost 'Credential Dialog'</c>
<c>Microsoft.ECApp 'Eye Control'</c>
<c>Microsoft.GetHelp 'Get Help'</c>
<c>Microsoft.Getstarted 'Tips (Get Started)'</c>
<c>Microsoft.HEIFImageExtension 'HEIF-Bilderweiterungen'</c>
<c>Microsoft.Microsoft3DViewer '3D-Viewer'</c>
<c>Microsoft.MicrosoftEdge.Stable 'Microsoft Edge (Chromium)'</c>
<c>Microsoft.MicrosoftEdge 'Microsoft Edge (Legacy)'</c>
<c>Microsoft.MicrosoftEdgeDevToolsClient 'Microsoft Edge DevTools Client'</c>
<c>Microsoft.MicrosoftOfficeHub 'Office'</c>
<c>Microsoft.MicrosoftSolitaireCollection 'Microsoft Solitaire Collection'</c>
<c>Microsoft.MicrosoftStickyNotes 'Microsoft Sticky Notes'</c>
<c>Microsoft.MixedReality.Portal 'Mixed Reality Portal'</c>
<c>Microsoft.MSPaint 'Paint 3D'</c>
<c>Microsoft.Office.OneNote 'OneNote'</c>
<c>Microsoft.People 'Microsoft People'</c>
<c>Microsoft.ScreenSketch 'Snip &amp; Sketch'</c>
<c>Microsoft.Services.Store.Engagement 'Microsoft Engagement Framework'</c>
<c>Microsoft.SkypeApp 'Skype'</c>
<c>Microsoft.StorePurchaseApp 'Store Experience Host'</c>
<c>Microsoft.VP9VideoExtensions 'VP9-Videoerweiterungen'</c>
<c>Microsoft.Wallet 'Microsoft Pay'</c>
<c>Microsoft.WebMediaExtensions 'Web Media Extensions'</c>
<c>Microsoft.WebpImageExtension 'Webp-Bilderweiterungen'</c>
<c>Microsoft.Win32WebViewHost 'Desktop App Web Viewer'</c>
<c>Microsoft.Windows.Apprep.ChxApp 'SmartScreen'</c>
<c>Microsoft.Windows.AssignedAccessLockApp 'Assigned Access Lock app'</c>
<c>Microsoft.Windows.CallingShellApp 'Call'</c>
<c>Microsoft.Windows.CapturePicker 'Capture Picker'</c>
<c>Microsoft.Windows.ContentDeliveryManager 'Content Delivery Manager'</c>
<c>Microsoft.Windows.NarratorQuickStart 'Narrator'</c>
<c>Microsoft.Windows.OOBENetworkCaptivePortal 'Captive Portal Flow'</c>
<c>Microsoft.Windows.ParentalControls 'Microsoft family features'</c>
<c>Microsoft.Windows.Photos 'Microsoft Photos'</c>
<c>Microsoft.Windows.SecureAssessmentBrowser 'PrĂĽfung'</c>
<c>Microsoft.WindowsAlarms 'Windows Alarms &amp; Clock'</c>
<c>Microsoft.WindowsCamera 'Windows Camera'</c>
<c>microsoft.windowscommunicationsapps 'Mail and Calendar'</c>
<c>Microsoft.WindowsFeedbackHub 'Feedback Hub'</c>
<c>Microsoft.WindowsMaps 'Windows Maps'</c>
<c>Microsoft.WindowsSoundRecorder 'Windows Voice Recorder'</c>
<c>Microsoft.YourPhone 'Your Phone'</c>
<c>Microsoft.ZuneMusic 'Groove Music'</c>
<c>Microsoft.ZuneVideo 'Movies &amp; TV'</c>
<c>midi 'Microsoft GS Wavetable SW Synth (MIDI)'</c>
<c>migwiz 'Easy Transfer'</c>
<c>mixedreality 'Windows Mixed Reality'</c>
@ -597,11 +637,13 @@
<c>mobilepc_networkprojection 'Network Projection'</c>
<c>mobilepc_sensors 'Sensors'</c>
<c>msmq 'Microsoft Message Queue (MSMQ)'</c>
<c>netlogon</c>
<c>netqos 'Quality of Service Packet Scheduler (QoS)'</c>
<c>nettopology 'Link-Layer Topology Discovery protocol (LLTD)'</c>
<c>nfc 'Near Field Communication (NFC)'</c>
<c>nfsclient 'NFS Administrative Tools'</c>
<c>offlinefiles 'Offline Files'</c>
<c>onedrive</c>
<c>openssh</c>
<c>otherthemes 'Windows Personalization themes'</c>
<c>payments</c>
@ -645,12 +687,13 @@
<c>tftpclient 'TFTP client'</c>
<c>trkwks 'Distributed Link Tracking Client'</c>
<c>unp 'Universal Notification Platform (UNP)'</c>
<c>userdeviceregistration 'User Device Registration'</c>
<c>vpn 'Virtual Private Network (VPN) support'</c>
<c>wallet 'Wallet Service'</c>
<c>wallpapers 'Wallpapers (Themes)'</c>
<c>webcamexperience 'Webcam Experience'</c>
<c>winai 'Windows AI Machine Learning'</c>
<c>windows.cbspreview 'Windows Barcode Preview'</c>
<c>Windows.CBSPreview 'Windows Barcode Preview'</c>
<c>winocr 'Windows TIFF IFilter (OCR)'</c>
<c>wwanautoconfig 'WWAN AutoConfig'</c>
</RemoveComponents>
@ -659,7 +702,6 @@
<Feature enabled="no">AppGuard</Feature>
<Feature enabled="no">YubiKey</Feature>
<Feature enabled="no">Bluetooth</Feature>
<Feature enabled="no">USBCamera</Feature>
<Feature enabled="no">CapFrameX</Feature>
<Feature enabled="no">Discord</Feature>
<Feature enabled="no">FileSharing</Feature>
@ -705,27 +747,8 @@
<Machine enabled="no">VMware VM</Machine>
</MachineDrivers>
</Compatibility>
<Features>
<Feature name="Language.Handwriting~~~en-us~0.0.1.0">false</Feature>
<Feature name="Language.OCR~~~en-us~0.0.1.0">false</Feature>
<Feature name="Language.Speech~~~en-us~0.0.1.0">false</Feature>
<Feature name="Language.TextToSpeech~~~en-us~0.0.1.0">false</Feature>
<Feature name="Language.Basic~~~en-us~0.0.1.0">false</Feature>
<Feature name="OneCoreUAP.OneSync~~~~0.0.1.0">false</Feature>
<Feature name="Browser.InternetExplorer~~~~0.0.11.0">false</Feature>
<Feature name="Internet-Explorer-Optional-amd64">false</Feature>
<Feature name="Printing-Foundation-InternetPrinting-Client">false</Feature>
<Feature name="MathRecognizer~~~~0.0.1.0">false</Feature>
<Feature name="App.Support.QuickAssist~~~~0.0.1.0">false</Feature>
<Feature name="Printing-XPSServices-Features">false</Feature>
<Feature name="WCF-TCP-PortSharing45">false</Feature>
<Feature name="WCF-Services45">false</Feature>
<Feature name="Print.Fax.Scan~~~~0.0.1.0">false</Feature>
<Feature name="Hello.Face.Migration.18967~~~~0.0.1.0">false</Feature>
<Feature name="Hello.Face.18967~~~~0.0.1.0">false</Feature>
</Features>
<Packages>
</Packages>
<Features></Features>
<Packages></Packages>
<Commands>
<PostUpdates>
<!--<Command>cmd /c echo Example from [MOUNTDIR]\Windows &amp; pause</Command>-->
@ -757,7 +780,7 @@
</ImageInstall>
<UserData>
<ProductKey>
<WillShowUI>OnError</WillShowUI>
<Key></Key>
</ProductKey>
</UserData>
</component>

View File

@ -0,0 +1,588 @@
<?xml version="1.0" encoding="utf-8"?>
<Preset xmlns="urn:schemas-nliteos-com:pn.v1">
<Date>02/05/2023 16:13:31</Date>
<AppInfo>
<Version>2.3.9.9039</Version>
<Licensed>Yes</Licensed>
<Protections>Yes</Protections>
<Host>Windows 10 Pro (20H2) x64 - 10.0.19042.1706 (en-US)</Host>
</AppInfo>
<ImageInfo>
<Version mode="offline">Windows 10 Professional (20H2) x64 - 10.0.19042.508 (en-US)</Version>
<GUID>{D8C32E39-131D-4DAE-A70A-491C9346F927}</GUID>
</ImageInfo>
<RemoveComponents AppRemovalMode="DISM">
<c>accessibility_narrator 'Narrator'</c>
<c>alg 'Application Layer Gateway Service'</c>
<c>alljoyn 'AllJoyn Router Service'</c>
<c>assignedaccess 'Assigned Access'</c>
<c>backgroundtransfer 'Networking Background Transfer'</c>
<c>branchcacheclient 'BranchCache Client'</c>
<c>ceip 'CEIP (SQM)'</c>
<c>cloudfiles 'Cloud Files API'</c>
<c>datacenterbridging 'Data Center Bridging (DCB)'</c>
<c>desktopimgdownldr 'Desktop image downloader'</c>
<c>driver_c_barcodescanner.inf</c>
<c>driver_c_cashdrawer.inf</c>
<c>driver_c_linedisplay.inf</c>
<c>driver_c_magneticstripereader.inf</c>
<c>driver_c_receiptprinter.inf</c>
<c>driver_c_smartcardreader.inf</c>
<c>driver_hidscanner.inf</c>
<c>driver_idtsec.inf</c>
<c>driver_mgtdyn.inf</c>
<c>driver_msclmd.inf</c>
<c>driver_remoteposdrv.inf</c>
<c>driver_tpmvsc.inf</c>
<c>driver_usbcciddriver.inf</c>
<c>driver_wudfusbcciddriver.inf</c>
<c>E2A4F912-2574-4A75-9BB0-0D023378592B 'App Resolver'</c>
<c>enterpriseclientsync 'Work Folders Client'</c>
<c>exchangeactivesync 'Exchange ActiveSync (EAS)'</c>
<c>F46D4000-FD22-4DB4-AC8E-4E1DDDE828FE 'Add Folder Suggestions dialog'</c>
<c>flashactivex 'Adobe Flash for Internet Explorer'</c>
<c>flashactivex32 'Adobe Flash for Internet Explorer - 32 bit'</c>
<c>font_arialblack 'Arial Black'</c>
<c>font_bahnschrift 'Bahnschrift'</c>
<c>font_cambria 'Cambria'</c>
<c>font_cambria_regular 'Cambria &amp; Cambria Math'</c>
<c>font_candara 'Candara'</c>
<c>font_comicsansms 'ComicSansMS'</c>
<c>font_constantia 'Constantia'</c>
<c>font_corbel 'Corbel'</c>
<c>font_courier 'Courier'</c>
<c>font_ebrima 'Ebrima'</c>
<c>font_ebrimabold 'Ebrima Bold'</c>
<c>font_franklingothic 'FranklinGothic'</c>
<c>font_gabriola 'Gabriola'</c>
<c>font_gadugi 'Gadugi'</c>
<c>font_gadugibold 'Gadugi Bold'</c>
<c>font_georgia 'Georgia'</c>
<c>font_holomd2 'Holo MDL2 Assets'</c>
<c>font_impact 'Impact'</c>
<c>font_inkfree 'Ink Free'</c>
<c>font_javanesetext 'Javanese Text'</c>
<c>font_leelawadeeui 'LeelawadeeUI'</c>
<c>font_leelawadeeui_regular 'Leelawadee UI'</c>
<c>font_lucidasans 'Lucida Sans Unicode'</c>
<c>font_malgungothicbold 'Malgun Gothic Bold'</c>
<c>font_malgungothicsemilight 'Malgun Gothic SemiLight'</c>
<c>font_microsofthimalaya 'Microsoft Himalaya'</c>
<c>font_microsoftjhenghei 'Microsoft JhengHei &amp; Microsoft JhengHei UI'</c>
<c>font_microsoftjhengheibold 'Microsoft JhengHei Bold &amp; Microsoft JhengHei UI Bold'</c>
<c>font_microsoftjhengheilight 'Microsoft JhengHei Light &amp; Microsoft JhengHei UI Light'</c>
<c>font_microsoftyahei 'Microsoft YaHei &amp; Microsoft YaHei UI'</c>
<c>font_microsoftyaheibold 'Microsoft YaHei Bold &amp; Microsoft YaHei UI Bold'</c>
<c>font_microsoftyaheilight 'Microsoft YaHei Light &amp; Microsoft YaHei UI Light'</c>
<c>font_mingliub 'MingLiU-ExtB &amp; PMingLiU-ExtB &amp; MingLiU_HKSCS-ExtB'</c>
<c>font_mongolianbaiti 'Mongolian Baiti'</c>
<c>font_msgothic 'MS Gothic &amp; MS UI Gothic &amp; MS PGothic'</c>
<c>font_mvboli 'MV Boli'</c>
<c>font_myanmartext 'Myanmar Text'</c>
<c>font_myanmartextbold 'Myanmar Text Bold'</c>
<c>font_newtailue 'Microsoft New Tai Lue'</c>
<c>font_newtailuebold 'Microsoft New Tai Lue Bold'</c>
<c>font_nirmalaui 'NirmalaUI'</c>
<c>font_nirmalaui_regular 'Nirmala UI'</c>
<c>font_palatinolinotype 'PalatinoLinotype'</c>
<c>font_phagspa 'Microsoft PhagsPa'</c>
<c>font_phagspabold 'Microsoft PhagsPa Bold'</c>
<c>font_segoeprint 'Segoe Print'</c>
<c>font_segoeprintbold 'Segoe Print Bold'</c>
<c>font_segoescript 'SegoeScript'</c>
<c>font_segoeui_italicssupplement 'SegoeUI ItalicsSupplement'</c>
<c>font_simsun 'SimSun &amp; NSimSun'</c>
<c>font_simsunb 'SimSun-ExtB'</c>
<c>font_sitka 'Sitka'</c>
<c>font_small 'Small'</c>
<c>font_sylfaen 'Sylfaen'</c>
<c>font_taile 'Microsoft Tai Le'</c>
<c>font_tailebold 'Microsoft Tai Le Bold'</c>
<c>font_trebuchetms 'TrebuchetMS'</c>
<c>font_vector 'Vector'</c>
<c>font_verdana 'Verdana'</c>
<c>font_yibaiti 'Microsoft Yi Baiti'</c>
<c>font_yugothic 'Yu Gothic Regular &amp; Yu Gothic UI Semilight'</c>
<c>font_yugothicbold 'Yu Gothic Bold &amp; Yu Gothic UI Semibold &amp; Yu Gothic UI Bold'</c>
<c>font_yugothiclight 'Yu Gothic Light &amp; Yu Gothic UI Light'</c>
<c>font_yugothicmedium 'Yu Gothic Medium &amp; Yu Gothic UI Regular'</c>
<c>gameexplorer 'Game Explorer'</c>
<c>hwsupport_floppy 'Floppy disk'</c>
<c>hwsupport_smartcard 'Smartcard'</c>
<c>hwsupport_telephony 'Telephony'</c>
<c>ias 'Internet Authentication Service (IAS)'</c>
<c>inputswitchtoasthandler 'Input Switch Toast Handler'</c>
<c>insiderhub 'Windows Insider Program'</c>
<c>ipxlatcfg 'IP Translation Configuration Service'</c>
<c>isoburn 'Windows Disc Image Burning Tool'</c>
<c>kl-00000401 'Arabic (101)'</c>
<c>kl-00000402 'Bulgarian (Typewriter)'</c>
<c>kl-00000404 'Chinese (Traditional) - US'</c>
<c>kl-00000405 'Czech'</c>
<c>kl-00000406 'Danish'</c>
<c>kl-00000408 'Greek'</c>
<c>kl-0000040a 'Spanish'</c>
<c>kl-0000040b 'Finnish'</c>
<c>kl-0000040c 'French'</c>
<c>kl-0000040d 'Hebrew'</c>
<c>kl-0000040e 'Hungarian'</c>
<c>kl-0000040f 'Icelandic'</c>
<c>kl-00000410 'Italian'</c>
<c>kl-00000411 'Japanese'</c>
<c>kl-00000412 'Korean'</c>
<c>kl-00000413 'Dutch'</c>
<c>kl-00000414 'Norwegian'</c>
<c>kl-00000415 'Polish (Programmers)'</c>
<c>kl-00000416 'Portuguese (Brazil ABNT)'</c>
<c>kl-00000418 'Romanian (Legacy)'</c>
<c>kl-00000419 'Russian'</c>
<c>kl-0000041a 'Standard'</c>
<c>kl-0000041b 'Slovak'</c>
<c>kl-0000041c 'Albanian'</c>
<c>kl-0000041d 'Swedish'</c>
<c>kl-0000041e 'Thai Kedmanee'</c>
<c>kl-0000041f 'Turkish Q'</c>
<c>kl-00000420 'Urdu'</c>
<c>kl-00000422 'Ukrainian'</c>
<c>kl-00000423 'Belarusian'</c>
<c>kl-00000424 'Slovenian'</c>
<c>kl-00000425 'Estonian'</c>
<c>kl-00000426 'Latvian'</c>
<c>kl-00000427 'Lithuanian IBM'</c>
<c>kl-00000428 'Tajik'</c>
<c>kl-00000429 'Persian'</c>
<c>kl-0000042a 'Vietnamese'</c>
<c>kl-0000042b 'Armenian Eastern (Legacy)'</c>
<c>kl-0000042c 'Azerbaijani Latin'</c>
<c>kl-0000042e 'Sorbian Standard (Legacy)'</c>
<c>kl-0000042f 'Macedonian (North Macedonia)'</c>
<c>kl-00000432 'Setswana'</c>
<c>kl-00000437 'Georgian (Legacy)'</c>
<c>kl-00000438 'Faeroese'</c>
<c>kl-00000439 'Devanagari - INSCRIPT'</c>
<c>kl-0000043a 'Maltese 47-Key'</c>
<c>kl-0000043b 'Norwegian with Sami'</c>
<c>kl-0000043f 'Kazakh'</c>
<c>kl-00000440 'Kyrgyz Cyrillic'</c>
<c>kl-00000442 'Turkmen'</c>
<c>kl-00000444 'Tatar (Legacy)'</c>
<c>kl-00000445 'Bangla'</c>
<c>kl-00000446 'Punjabi'</c>
<c>kl-00000447 'Gujarati'</c>
<c>kl-00000448 'Odia'</c>
<c>kl-00000449 'Tamil'</c>
<c>kl-0000044a 'Telugu'</c>
<c>kl-0000044b 'Kannada'</c>
<c>kl-0000044c 'Malayalam'</c>
<c>kl-0000044d 'Assamese - INSCRIPT'</c>
<c>kl-0000044e 'Marathi'</c>
<c>kl-00000450 'Mongolian Cyrillic'</c>
<c>kl-00000451 'Tibetan (PRC)'</c>
<c>kl-00000452 'United Kingdom Extended'</c>
<c>kl-00000453 'Khmer'</c>
<c>kl-00000454 'Lao'</c>
<c>kl-0000045a 'Syriac'</c>
<c>kl-0000045b 'Sinhala'</c>
<c>kl-0000045c 'Cherokee Nation'</c>
<c>kl-00000461 'Nepali'</c>
<c>kl-00000463 'Pashto (Afghanistan)'</c>
<c>kl-00000465 'Divehi Phonetic'</c>
<c>kl-00000468 'Hausa'</c>
<c>kl-0000046a 'Yoruba'</c>
<c>kl-0000046c 'Sesotho sa Leboa'</c>
<c>kl-0000046d 'Bashkir'</c>
<c>kl-0000046e 'Luxembourgish'</c>
<c>kl-0000046f 'Greenlandic'</c>
<c>kl-00000470 'Igbo'</c>
<c>kl-00000474 'Guarani'</c>
<c>kl-00000475 'Hawaiian'</c>
<c>kl-00000480 'Uyghur (Legacy)'</c>
<c>kl-00000481 'Maori'</c>
<c>kl-00000485 'Sakha'</c>
<c>kl-00000488 'Wolof'</c>
<c>kl-00000492 'Central Kurdish'</c>
<c>kl-00000804 'Chinese (Simplified) - US'</c>
<c>kl-00000807 'Swiss German'</c>
<c>kl-00000809 'United Kingdom'</c>
<c>kl-0000080a 'Latin American'</c>
<c>kl-0000080c 'Belgian French'</c>
<c>kl-00000813 'Belgian (Period)'</c>
<c>kl-00000816 'Portuguese'</c>
<c>kl-0000081a 'Serbian (Latin)'</c>
<c>kl-0000082c 'Azerbaijani Cyrillic'</c>
<c>kl-0000083b 'Swedish with Sami'</c>
<c>kl-00000843 'Uzbek Cyrillic'</c>
<c>kl-00000850 'Mongolian (Mongolian Script)'</c>
<c>kl-0000085d 'Inuktitut - Latin'</c>
<c>kl-0000085f 'Central Atlas Tamazight'</c>
<c>kl-00000c04 'Chinese (Traditional, Hong Kong S.A.R.) - US'</c>
<c>kl-00000c0c 'Canadian French (Legacy)'</c>
<c>kl-00000c1a 'Serbian (Cyrillic)'</c>
<c>kl-00000c51 'Dzongkha'</c>
<c>kl-00001004 'Chinese (Simplified, Singapore) - US'</c>
<c>kl-00001009 'Canadian French'</c>
<c>kl-0000100c 'Swiss French'</c>
<c>kl-0000105f 'Tifinagh (Basic)'</c>
<c>kl-00001404 'Chinese (Traditional, Macao S.A.R.) - US'</c>
<c>kl-00001809 'Irish'</c>
<c>kl-0000201a 'Bosnian (Cyrillic)'</c>
<c>kl-00004009 'English (India)'</c>
<c>kl-00010401 'Arabic (102)'</c>
<c>kl-00010402 'Bulgarian (Latin)'</c>
<c>kl-00010405 'Czech (QWERTY)'</c>
<c>kl-00010407 'German (IBM)'</c>
<c>kl-00010408 'Greek (220)'</c>
<c>kl-00010409 'United States-Dvorak'</c>
<c>kl-0001040a 'Spanish Variation'</c>
<c>kl-0001040e 'Hungarian 101-key'</c>
<c>kl-00010410 'Italian (142)'</c>
<c>kl-00010415 'Polish (214)'</c>
<c>kl-00010416 'Portuguese (Brazil ABNT2)'</c>
<c>kl-00010418 'Romanian (Standard)'</c>
<c>kl-00010419 'Russian (Typewriter)'</c>
<c>kl-0001041b 'Slovak (QWERTY)'</c>
<c>kl-0001041e 'Thai Pattachote'</c>
<c>kl-0001041f 'Turkish F'</c>
<c>kl-00010426 'Latvian (QWERTY)'</c>
<c>kl-00010427 'Lithuanian'</c>
<c>kl-0001042b 'Armenian Western (Legacy)'</c>
<c>kl-0001042c 'Azerbaijani (Standard)'</c>
<c>kl-0001042e 'Sorbian Extended'</c>
<c>kl-0001042f 'Macedonian (North Macedonia) - Standard'</c>
<c>kl-00010437 'Georgian (QWERTY)'</c>
<c>kl-00010439 'Hindi Traditional'</c>
<c>kl-0001043a 'Maltese 48-Key'</c>
<c>kl-0001043b 'Sami Extended Norway'</c>
<c>kl-00010444 'Tatar'</c>
<c>kl-00010445 'Bangla - INSCRIPT (Legacy)'</c>
<c>kl-00010451 'Tibetan (PRC) - Updated'</c>
<c>kl-00010453 'Khmer (NIDA)'</c>
<c>kl-0001045a 'Syriac Phonetic'</c>
<c>kl-0001045b 'Sinhala - Wij 9'</c>
<c>kl-0001045c 'Cherokee Phonetic'</c>
<c>kl-0001045d 'Inuktitut - Naqittaut'</c>
<c>kl-00010465 'Divehi Typewriter'</c>
<c>kl-00010480 'Uyghur'</c>
<c>kl-0001080c 'Belgian (Comma)'</c>
<c>kl-0001083b 'Finnish with Sami'</c>
<c>kl-00010850 'Traditional Mongolian (Standard)'</c>
<c>kl-00010c00 'Myanmar (Phonetic order)'</c>
<c>kl-00011009 'Canadian Multilingual Standard'</c>
<c>kl-0001105f 'Tifinagh (Extended)'</c>
<c>kl-00011809 'Scottish Gaelic'</c>
<c>kl-00020401 'Arabic (102) AZERTY'</c>
<c>kl-00020402 'Bulgarian (Phonetic)'</c>
<c>kl-00020405 'Czech Programmers'</c>
<c>kl-00020408 'Greek (319)'</c>
<c>kl-00020409 'United States-International'</c>
<c>kl-0002040d 'Hebrew (Standard)'</c>
<c>kl-00020418 'Romanian (Programmers)'</c>
<c>kl-00020419 'Russian - Mnemonic'</c>
<c>kl-0002041e 'Thai Kedmanee (non-ShiftLock)'</c>
<c>kl-00020422 'Ukrainian (Enhanced)'</c>
<c>kl-00020426 'Latvian (Standard)'</c>
<c>kl-00020427 'Lithuanian Standard'</c>
<c>kl-0002042b 'Armenian Phonetic'</c>
<c>kl-0002042e 'Sorbian Standard'</c>
<c>kl-00020437 'Georgian (Ergonomic)'</c>
<c>kl-00020445 'Bangla - INSCRIPT'</c>
<c>kl-00020449 'Tamil 99'</c>
<c>kl-0002083b 'Sami Extended Finland-Sweden'</c>
<c>kl-00020c00 'New Tai Lue'</c>
<c>kl-00030402 'Bulgarian'</c>
<c>kl-00030408 'Greek (220) Latin'</c>
<c>kl-0003041e 'Thai Pattachote (non-ShiftLock)'</c>
<c>kl-0003042b 'Armenian Typewriter'</c>
<c>kl-00030437 'Georgian (MES)'</c>
<c>kl-00030c00 'Tai Le'</c>
<c>kl-00040402 'Bulgarian (Phonetic Traditional)'</c>
<c>kl-00040408 'Greek (319) Latin'</c>
<c>kl-00040437 'Georgian (Old Alphabets)'</c>
<c>kl-00040c00 'Ogham'</c>
<c>kl-00050408 'Greek Latin'</c>
<c>kl-00050409 'US English Table for IBM Arabic 238_L'</c>
<c>kl-00050429 'Persian (Standard)'</c>
<c>kl-00060408 'Greek Polytonic'</c>
<c>kl-00070c00 'Lisu (Basic)'</c>
<c>kl-00080c00 'Lisu (Standard)'</c>
<c>kl-00090c00 'N’Ko'</c>
<c>kl-000a0c00 'Phags-pa'</c>
<c>kl-000b0c00 'Buginese'</c>
<c>kl-000c0c00 'Gothic'</c>
<c>kl-000d0c00 'Ol Chiki'</c>
<c>kl-000e0c00 'Osmanya'</c>
<c>kl-000f0c00 'Old Italic'</c>
<c>kl-00100c00 'Sora'</c>
<c>kl-00110c00 'Javanese'</c>
<c>kl-00120c00 'Futhark'</c>
<c>kl-00130c00 'Myanmar (Visual order)'</c>
<c>kl-00140c00 'ADLaM'</c>
<c>kl-00150c00 'Osage'</c>
<c>langarabic 'Arabic'</c>
<c>langbulgarian 'Bulgarian'</c>
<c>langchineses 'Chinese Simplified'</c>
<c>langchineset 'Chinese Traditional'</c>
<c>langcroatian 'Croatian'</c>
<c>langczech 'Czech'</c>
<c>langdanish 'Danish'</c>
<c>langdutch 'Dutch'</c>
<c>langenglishgb 'English (GB)'</c>
<c>langestonian 'Estonian'</c>
<c>langfinnish 'Finnish'</c>
<c>langfrench 'French'</c>
<c>langfrenchcanadian 'French (Canadian)'</c>
<c>langgreek 'Greek'</c>
<c>langhebrew 'Hebrew'</c>
<c>langhungarian 'Hungarian'</c>
<c>langime 'Input Method Editor (IME)'</c>
<c>langimejp 'Japanese (IME)'</c>
<c>langimeko 'Korean (IME)'</c>
<c>langimetc 'Chinese Traditional (IME)'</c>
<c>langitalian 'Italian'</c>
<c>langjapanese 'Japanese'</c>
<c>langkorean 'Korean'</c>
<c>langlatvian 'Latvian'</c>
<c>langlithuanian 'Lithuanian'</c>
<c>langnorwegian 'Norwegian'</c>
<c>langpolish 'Polish'</c>
<c>langportuguesebr 'Portuguese (Brazilian)'</c>
<c>langportuguesept 'Portuguese'</c>
<c>langromanian 'Romanian'</c>
<c>langrussian 'Russian'</c>
<c>langserbian 'Serbian'</c>
<c>langslovak 'Slovak'</c>
<c>langslovenian 'Slovenian'</c>
<c>langspanish 'Spanish'</c>
<c>langswedish 'Swedish'</c>
<c>langtamil 'Tamil'</c>
<c>langthai 'Thai'</c>
<c>langturkish 'Turkish'</c>
<c>langukrainian 'Ukrainian'</c>
<c>lockscreens 'Lock Screen backgrounds'</c>
<c>lpasvc 'Local Profile Assistant Service'</c>
<c>mail 'Windows Mail'</c>
<c>mailcommdll 'Windows Mail Communications Library'</c>
<c>mapcontrol 'Map Control'</c>
<c>messagingsvc 'Messaging Service'</c>
<c>Microsoft.549981C3F5F10 'Cortana'</c>
<c>Microsoft.Advertising.Xaml 'Microsoft Advertising SDK for XAML'</c>
<c>Microsoft.AsyncTextService 'AsyncTextService'</c>
<c>Microsoft.BingWeather 'MSN Weather'</c>
<c>Microsoft.BioEnrollment 'Windows Hello Setup'</c>
<c>Microsoft.CredDialogHost 'Credential Dialog'</c>
<c>Microsoft.ECApp 'Eye Control'</c>
<c>Microsoft.GetHelp 'Get Help'</c>
<c>Microsoft.Getstarted 'Tips (Get Started)'</c>
<c>Microsoft.HEIFImageExtension 'HEIF-Bilderweiterungen'</c>
<c>Microsoft.Microsoft3DViewer '3D-Viewer'</c>
<c>Microsoft.MicrosoftEdge.Stable 'Microsoft Edge (Chromium)'</c>
<c>Microsoft.MicrosoftEdge 'Microsoft Edge (Legacy)'</c>
<c>Microsoft.MicrosoftEdgeDevToolsClient 'Microsoft Edge DevTools Client'</c>
<c>Microsoft.MicrosoftOfficeHub 'Office'</c>
<c>Microsoft.MicrosoftSolitaireCollection 'Microsoft Solitaire Collection'</c>
<c>Microsoft.MicrosoftStickyNotes 'Microsoft Sticky Notes'</c>
<c>Microsoft.MixedReality.Portal 'Mixed Reality Portal'</c>
<c>Microsoft.MSPaint 'Paint 3D'</c>
<c>Microsoft.Office.OneNote 'OneNote'</c>
<c>Microsoft.People 'Microsoft People'</c>
<c>Microsoft.ScreenSketch 'Snip &amp; Sketch'</c>
<c>Microsoft.Services.Store.Engagement 'Microsoft Engagement Framework'</c>
<c>Microsoft.SkypeApp 'Skype'</c>
<c>Microsoft.StorePurchaseApp 'Store Experience Host'</c>
<c>Microsoft.VP9VideoExtensions 'VP9-Videoerweiterungen'</c>
<c>Microsoft.Wallet 'Microsoft Pay'</c>
<c>Microsoft.WebMediaExtensions 'Web Media Extensions'</c>
<c>Microsoft.WebpImageExtension 'Webp-Bilderweiterungen'</c>
<c>Microsoft.Win32WebViewHost 'Desktop App Web Viewer'</c>
<c>Microsoft.Windows.Apprep.ChxApp 'SmartScreen'</c>
<c>Microsoft.Windows.AssignedAccessLockApp 'Assigned Access Lock app'</c>
<c>Microsoft.Windows.CallingShellApp 'Call'</c>
<c>Microsoft.Windows.CapturePicker 'Capture Picker'</c>
<c>Microsoft.Windows.ContentDeliveryManager 'Content Delivery Manager'</c>
<c>Microsoft.Windows.NarratorQuickStart 'Narrator'</c>
<c>Microsoft.Windows.OOBENetworkCaptivePortal 'Captive Portal Flow'</c>
<c>Microsoft.Windows.ParentalControls 'Microsoft family features'</c>
<c>Microsoft.Windows.Photos 'Microsoft Photos'</c>
<c>Microsoft.Windows.SecureAssessmentBrowser 'PrĂĽfung'</c>
<c>Microsoft.WindowsAlarms 'Windows Alarms &amp; Clock'</c>
<c>Microsoft.WindowsCalculator 'Windows Calculator'</c>
<c>Microsoft.WindowsCamera 'Windows Camera'</c>
<c>microsoft.windowscommunicationsapps 'Mail and Calendar'</c>
<c>Microsoft.WindowsFeedbackHub 'Feedback Hub'</c>
<c>Microsoft.WindowsMaps 'Windows Maps'</c>
<c>Microsoft.WindowsSoundRecorder 'Windows Voice Recorder'</c>
<c>Microsoft.Xbox.TCUI 'Xbox TCUI'</c>
<c>Microsoft.XboxApp 'Xbox'</c>
<c>Microsoft.XboxGameCallableUI 'Xbox Game UI'</c>
<c>Microsoft.XboxGameOverlay 'Xbox Game Bar Plugin'</c>
<c>Microsoft.XboxGamingOverlay 'Xbox Game Bar'</c>
<c>Microsoft.XboxSpeechToTextOverlay 'Xbox Game Speech Window'</c>
<c>Microsoft.YourPhone 'Your Phone'</c>
<c>Microsoft.ZuneMusic 'Groove Music'</c>
<c>Microsoft.ZuneVideo 'Movies &amp; TV'</c>
<c>midi 'Microsoft GS Wavetable SW Synth (MIDI)'</c>
<c>mixedreality 'Windows Mixed Reality'</c>
<c>netqos 'Quality of Service Packet Scheduler (QoS)'</c>
<c>nettopology 'Link-Layer Topology Discovery protocol (LLTD)'</c>
<c>nfc 'Near Field Communication (NFC)'</c>
<c>offlinefiles 'Offline Files'</c>
<c>onedrive</c>
<c>openssh</c>
<c>otherthemes 'Windows Personalization themes'</c>
<c>payments</c>
<c>pdfreader 'Windows Reader (PDF)'</c>
<c>phonesvc 'Phone Service'</c>
<c>pos 'Point of Service (POS)'</c>
<c>pushtoinstall 'Windows PushToInstall Service'</c>
<c>rasauto 'Remote Access Auto Connection Manager'</c>
<c>rascmd 'Remote Access Service Client Tools'</c>
<c>rasmans 'Remote Access Connection Manager'</c>
<c>rdc 'Remote Differential Compression (RDC)'</c>
<c>remoteaccessservice 'Routing and Remote Access Service'</c>
<c>remoteaccesssupport 'Routing and Remote Access support'</c>
<c>remoteassistance 'Remote Assistance'</c>
<c>remoteregistry 'Remote Registry'</c>
<c>retaildemo 'Retail Demo Content'</c>
<c>settingsync 'Setting Sync'</c>
<c>sharedaccess 'Internet Connection Sharing (ICS)'</c>
<c>sharehost32 'Share Host - 32 bit'</c>
<c>simpletcp 'Simple TCP/IP services'</c>
<c>skypeortc 'Skype ORTC'</c>
<c>smsrouter 'SMS Router Service'</c>
<c>soundsdefault 'Sounds (Default)'</c>
<c>soundthemes 'Sound Themes'</c>
<c>sourcessxsdir 'Manual feature repository'</c>
<c>speechapi 'Speech API'</c>
<c>speechcommon 'Speech Recognition'</c>
<c>speechtts 'Speech TTS'</c>
<c>staticfontcache 'Static Font Cache'</c>
<c>supportdir 'Support directory'</c>
<c>synccenter 'Sync Center'</c>
<c>tabletextservice 'Table Text Service'</c>
<c>telnetclient 'Telnet Client'</c>
<c>tempcache 'Cache and temp files'</c>
<c>tftpclient 'TFTP client'</c>
<c>trkwks 'Distributed Link Tracking Client'</c>
<c>vpn 'Virtual Private Network (VPN) support'</c>
<c>wallet 'Wallet Service'</c>
<c>wallpapers 'Wallpapers (Themes)'</c>
<c>webcamexperience 'Webcam Experience'</c>
<c>Windows.CBSPreview 'Windows Barcode Preview'</c>
<c>winocr 'Windows TIFF IFilter (OCR)'</c>
<c>wwanautoconfig 'WWAN AutoConfig'</c>
<c>xbox 'Xbox - Core'</c>
</RemoveComponents>
<Compatibility protectHidden="true">
<ComponentFeatures>
<Feature enabled="no">AppGuard</Feature>
<Feature enabled="no">YubiKey</Feature>
<Feature enabled="yes">Bluetooth</Feature>
<Feature enabled="no">CapFrameX</Feature>
<Feature enabled="no">Discord</Feature>
<Feature enabled="yes">FileSharing</Feature>
<Feature enabled="no">Hyper-V</Feature>
<Feature enabled="no">iCloud</Feature>
<Feature enabled="yes">ManualSetup</Feature>
<Feature enabled="no">OfficeSupport</Feature>
<Feature enabled="yes">AppxSupport</Feature>
<Feature enabled="no">Netflix</Feature>
<Feature enabled="no">NetworkDiscovery</Feature>
<Feature enabled="no">NightLight</Feature>
<Feature enabled="yes">NvidiaSetup</Feature>
<Feature enabled="yes">OOBE</Feature>
<Feature enabled="yes">Printing</Feature>
<Feature enabled="yes">Recommended-All</Feature>
<Feature enabled="no">SamsungSwitch</Feature>
<Feature enabled="no">Scanning</Feature>
<Feature enabled="yes">ServicingStack</Feature>
<Feature enabled="no">ShellSearchSupport</Feature>
<Feature enabled="no">Spotify</Feature>
<Feature enabled="yes">SFC</Feature>
<Feature enabled="yes">DefaultFonts</Feature>
<Feature enabled="no">SafeMode</Feature>
<Feature enabled="no">TeamViewer</Feature>
<Feature enabled="no">Recommended-Tablet</Feature>
<Feature enabled="no">USBModem</Feature>
<Feature enabled="yes">USB</Feature>
<Feature enabled="yes">VideoPlayback</Feature>
<Feature enabled="no">VPN</Feature>
<Feature enabled="no">VisualStudio</Feature>
<Feature enabled="no">VSS</Feature>
<Feature enabled="yes">ActivationKMS</Feature>
<Feature enabled="yes">Activation</Feature>
<Feature enabled="yes">WindowsStore</Feature>
<Feature enabled="yes">WindowsUpdate</Feature>
<Feature enabled="yes">WLAN</Feature>
</ComponentFeatures>
<MachineDrivers>
<Machine enabled="yes">HostMachine</Machine>
<Machine enabled="no">Hyper-V VM</Machine>
<Machine enabled="no">Parallels VM</Machine>
<Machine enabled="no">Virtual Box VM</Machine>
<Machine enabled="yes">VMware VM</Machine>
</MachineDrivers>
</Compatibility>
<Features></Features>
<Packages></Packages>
<Commands>
<PostUpdates>
<!--<Command>cmd /c echo Example from [MOUNTDIR]\Windows &amp; pause</Command>-->
<!--<Command>dism /image:[MOUNTDIR] /get-intl</Command>-->
</PostUpdates>
</Commands>
<Drivers showHidden="true"></Drivers>
<Unattended mode="0">
<OEMSetupComplete>false</OEMSetupComplete>
<AnswerFileLocationPanther>false</AnswerFileLocationPanther>
<AnswerFileLocationBoot>false</AnswerFileLocationBoot>
<SaveBothArch>false</SaveBothArch>
<EditionPrompt>false</EditionPrompt>
<settings pass="windowsPE">
<component name="Microsoft-Windows-Setup">
<DynamicUpdate>
<WillShowUI>OnError</WillShowUI>
</DynamicUpdate>
<ImageInstall>
<OSImage>
<WillShowUI>OnError</WillShowUI>
<InstallFrom>
<MetaData>
<Key>/IMAGE/INDEX</Key>
<Value>1</Value>
</MetaData>
</InstallFrom>
</OSImage>
</ImageInstall>
<UserData>
<ProductKey>
<Key></Key>
</ProductKey>
</UserData>
</component>
</settings>
</Unattended>
<Tweaks>
<Settings></Settings>
<Services></Services>
<ExtraServices></ExtraServices>
<ScheduledTasks></ScheduledTasks>
</Tweaks>
<ApplyOptions>
<ImageTasks>
<Task>imageSaveRebuild</Task>
<Task>imageFormatWim</Task>
</ImageTasks>
<AutoIsoFile>NTLite.iso</AutoIsoFile>
<AutoIsoLabel>NTLite</AutoIsoLabel>
<AutoSplitSize>4000</AutoSplitSize>
<CleanHotfixedLeftovers>0</CleanHotfixedLeftovers>
<OptimizeAppX>false</OptimizeAppX>
<ReuseDriverCache>false</ReuseDriverCache>
</ApplyOptions>
<Execution>
<Remove></Remove>
<Change></Change>
<Add></Add>
</Execution>
<Registry></Registry>
</Preset>

View File

@ -0,0 +1,768 @@
<?xml version="1.0" encoding="utf-8"?>
<Preset xmlns="urn:schemas-nliteos-com:pn.v1">
<Date>02/05/2023 17:06:49</Date>
<AppInfo>
<Version>2.3.9.9039</Version>
<Licensed>Yes</Licensed>
<Protections>Yes</Protections>
<Host>Windows 10 Pro (20H2) x64 - 10.0.19042.1706 (en-US)</Host>
</AppInfo>
<ImageInfo>
<Version mode="offline">Windows 10 Professional (20H2) x64 - 10.0.19042.508 (en-US)</Version>
<GUID>{A60EDD0D-68F8-407A-8AFF-7F522969A4A5}</GUID>
</ImageInfo>
<RemoveComponents AppRemovalMode="DISM">
<c>accessibility_narrator 'Narrator'</c>
<c>alg 'Application Layer Gateway Service'</c>
<c>alljoyn 'AllJoyn Router Service'</c>
<c>assignedaccess 'Assigned Access'</c>
<c>backgroundtransfer 'Networking Background Transfer'</c>
<c>branchcacheclient 'BranchCache Client'</c>
<c>ceip 'CEIP (SQM)'</c>
<c>cloudfiles 'Cloud Files API'</c>
<c>datacenterbridging 'Data Center Bridging (DCB)'</c>
<c>desktopimgdownldr 'Desktop image downloader'</c>
<c>driver_61883.inf</c>
<c>driver_c_61883.inf</c>
<c>driver_c_barcodescanner.inf</c>
<c>driver_c_biometric.inf</c>
<c>driver_c_cashdrawer.inf</c>
<c>driver_c_holographic.inf</c>
<c>driver_c_infrared.inf</c>
<c>driver_c_linedisplay.inf</c>
<c>driver_c_magneticstripereader.inf</c>
<c>driver_c_mcx.inf</c>
<c>driver_c_mediumchanger.inf</c>
<c>driver_c_pcmcia.inf</c>
<c>driver_c_receiptprinter.inf</c>
<c>driver_c_smartcardreader.inf</c>
<c>driver_c_tapedrive.inf</c>
<c>driver_cht4vx64.inf</c>
<c>driver_dc1-controller.inf</c>
<c>driver_hidir.inf</c>
<c>driver_hidirkbd.inf</c>
<c>driver_hidscanner.inf</c>
<c>driver_idtsec.inf</c>
<c>driver_iscsi.inf</c>
<c>driver_mchgr.inf</c>
<c>driver_mdm3com.inf</c>
<c>driver_mdm5674a.inf</c>
<c>driver_mdmadc.inf</c>
<c>driver_mdmagm64.inf</c>
<c>driver_mdmags64.inf</c>
<c>driver_mdmairte.inf</c>
<c>driver_mdmaiwa.inf</c>
<c>driver_mdmaiwa3.inf</c>
<c>driver_mdmaiwa4.inf</c>
<c>driver_mdmaiwa5.inf</c>
<c>driver_mdmaiwat.inf</c>
<c>driver_mdmar1.inf</c>
<c>driver_mdmarch.inf</c>
<c>driver_mdmarn.inf</c>
<c>driver_mdmati.inf</c>
<c>driver_mdmatm2k.inf</c>
<c>driver_mdmaus.inf</c>
<c>driver_mdmboca.inf</c>
<c>driver_mdmbsb.inf</c>
<c>driver_mdmbug3.inf</c>
<c>driver_mdmbw561.inf</c>
<c>driver_mdmc26a.inf</c>
<c>driver_mdmcdp.inf</c>
<c>driver_mdmcm28.inf</c>
<c>driver_mdmcodex.inf</c>
<c>driver_mdmcom1.inf</c>
<c>driver_mdmcommu.inf</c>
<c>driver_mdmcomp.inf</c>
<c>driver_mdmcpq.inf</c>
<c>driver_mdmcpq2.inf</c>
<c>driver_mdmcpv.inf</c>
<c>driver_mdmcrtix.inf</c>
<c>driver_mdmcxhv6.inf</c>
<c>driver_mdmcxpv6.inf</c>
<c>driver_mdmdcm5.inf</c>
<c>driver_mdmdcm6.inf</c>
<c>driver_mdmdf56f.inf</c>
<c>driver_mdmdgitn.inf</c>
<c>driver_mdmdp2.inf</c>
<c>driver_mdmdsi.inf</c>
<c>driver_mdmdyna.inf</c>
<c>driver_mdmeiger.inf</c>
<c>driver_mdmelsa.inf</c>
<c>driver_mdmeric.inf</c>
<c>driver_mdmeric2.inf</c>
<c>driver_mdmetech.inf</c>
<c>driver_mdmfj2.inf</c>
<c>driver_mdmgatew.inf</c>
<c>driver_mdmgcs.inf</c>
<c>driver_mdmgen.inf</c>
<c>driver_mdmgl001.inf</c>
<c>driver_mdmgl002.inf</c>
<c>driver_mdmgl003.inf</c>
<c>driver_mdmgl004.inf</c>
<c>driver_mdmgl005.inf</c>
<c>driver_mdmgl006.inf</c>
<c>driver_mdmgl007.inf</c>
<c>driver_mdmgl008.inf</c>
<c>driver_mdmgl009.inf</c>
<c>driver_mdmgl010.inf</c>
<c>driver_mdmgsm.inf</c>
<c>driver_mdmhaeu.inf</c>
<c>driver_mdmhandy.inf</c>
<c>driver_mdmhay2.inf</c>
<c>driver_mdmhayes.inf</c>
<c>driver_mdminfot.inf</c>
<c>driver_mdmiodat.inf</c>
<c>driver_mdmirmdm.inf</c>
<c>driver_mdmisdn.inf</c>
<c>driver_mdmjf56e.inf</c>
<c>driver_mdmke.inf</c>
<c>driver_mdmkortx.inf</c>
<c>driver_mdmlasat.inf</c>
<c>driver_mdmlasno.inf</c>
<c>driver_mdmlucnt.inf</c>
<c>driver_mdmmc288.inf</c>
<c>driver_mdmmcd.inf</c>
<c>driver_mdmmcom.inf</c>
<c>driver_mdmmct.inf</c>
<c>driver_mdmmega.inf</c>
<c>driver_mdmmetri.inf</c>
<c>driver_mdmmhrtz.inf</c>
<c>driver_mdmmhzel.inf</c>
<c>driver_mdmminij.inf</c>
<c>driver_mdmmod.inf</c>
<c>driver_mdmmot64.inf</c>
<c>driver_mdmmoto1.inf</c>
<c>driver_mdmmotou.inf</c>
<c>driver_mdmmts.inf</c>
<c>driver_mdmneuhs.inf</c>
<c>driver_mdmnis1u.inf</c>
<c>driver_mdmnis2u.inf</c>
<c>driver_mdmnis3t.inf</c>
<c>driver_mdmnis5t.inf</c>
<c>driver_mdmnokia.inf</c>
<c>driver_mdmnova.inf</c>
<c>driver_mdmntt1.inf</c>
<c>driver_mdmnttd2.inf</c>
<c>driver_mdmnttd6.inf</c>
<c>driver_mdmnttme.inf</c>
<c>driver_mdmnttp.inf</c>
<c>driver_mdmnttp2.inf</c>
<c>driver_mdmnttte.inf</c>
<c>driver_mdmolic.inf</c>
<c>driver_mdmomrn3.inf</c>
<c>driver_mdmoptn.inf</c>
<c>driver_mdmosi.inf</c>
<c>driver_mdmpace.inf</c>
<c>driver_mdmpenr.inf</c>
<c>driver_mdmpin.inf</c>
<c>driver_mdmpn1.inf</c>
<c>driver_mdmpp.inf</c>
<c>driver_mdmpsion.inf</c>
<c>driver_mdmracal.inf</c>
<c>driver_mdmrock.inf</c>
<c>driver_mdmrock3.inf</c>
<c>driver_mdmrock4.inf</c>
<c>driver_mdmrock5.inf</c>
<c>driver_mdmsier.inf</c>
<c>driver_mdmsii64.inf</c>
<c>driver_mdmsmart.inf</c>
<c>driver_mdmsonyu.inf</c>
<c>driver_mdmsun1.inf</c>
<c>driver_mdmsun2.inf</c>
<c>driver_mdmsupr3.inf</c>
<c>driver_mdmsupra.inf</c>
<c>driver_mdmsuprv.inf</c>
<c>driver_mdmtdk.inf</c>
<c>driver_mdmtdkj2.inf</c>
<c>driver_mdmtdkj3.inf</c>
<c>driver_mdmtdkj4.inf</c>
<c>driver_mdmtdkj5.inf</c>
<c>driver_mdmtdkj6.inf</c>
<c>driver_mdmtdkj7.inf</c>
<c>driver_mdmtexas.inf</c>
<c>driver_mdmti.inf</c>
<c>driver_mdmtkr.inf</c>
<c>driver_mdmtron.inf</c>
<c>driver_mdmusrf.inf</c>
<c>driver_mdmusrg.inf</c>
<c>driver_mdmusrgl.inf</c>
<c>driver_mdmusrk1.inf</c>
<c>driver_mdmusrsp.inf</c>
<c>driver_mdmvdot.inf</c>
<c>driver_mdmvv.inf</c>
<c>driver_mdmwhql0.inf</c>
<c>driver_mdmx5560.inf</c>
<c>driver_mdmzoom.inf</c>
<c>driver_mdmzyp.inf</c>
<c>driver_mdmzyxel.inf</c>
<c>driver_mdmzyxlg.inf</c>
<c>driver_mgtdyn.inf</c>
<c>driver_miradisp.inf</c>
<c>driver_msclmd.inf</c>
<c>driver_oposdrv.inf</c>
<c>driver_pcmcia.inf</c>
<c>driver_perceptionsimulationheadset.inf</c>
<c>driver_remoteposdrv.inf</c>
<c>driver_tape.inf</c>
<c>driver_tpm.inf</c>
<c>driver_tpmvsc.inf</c>
<c>driver_usbcciddriver.inf</c>
<c>driver_usbcir.inf</c>
<c>driver_wudfusbcciddriver.inf</c>
<c>driver_xboxgipsynthetic.inf</c>
<c>driver_xusb22.inf</c>
<c>E2A4F912-2574-4A75-9BB0-0D023378592B 'App Resolver'</c>
<c>enterpriseclientsync 'Work Folders Client'</c>
<c>exchangeactivesync 'Exchange ActiveSync (EAS)'</c>
<c>F46D4000-FD22-4DB4-AC8E-4E1DDDE828FE 'Add Folder Suggestions dialog'</c>
<c>flashactivex 'Adobe Flash for Internet Explorer'</c>
<c>flashactivex32 'Adobe Flash for Internet Explorer - 32 bit'</c>
<c>font_arialblack 'Arial Black'</c>
<c>font_bahnschrift 'Bahnschrift'</c>
<c>font_cambria 'Cambria'</c>
<c>font_cambria_regular 'Cambria &amp; Cambria Math'</c>
<c>font_candara 'Candara'</c>
<c>font_comicsansms 'ComicSansMS'</c>
<c>font_constantia 'Constantia'</c>
<c>font_corbel 'Corbel'</c>
<c>font_courier 'Courier'</c>
<c>font_ebrima 'Ebrima'</c>
<c>font_ebrimabold 'Ebrima Bold'</c>
<c>font_franklingothic 'FranklinGothic'</c>
<c>font_gabriola 'Gabriola'</c>
<c>font_gadugi 'Gadugi'</c>
<c>font_gadugibold 'Gadugi Bold'</c>
<c>font_georgia 'Georgia'</c>
<c>font_holomd2 'Holo MDL2 Assets'</c>
<c>font_impact 'Impact'</c>
<c>font_inkfree 'Ink Free'</c>
<c>font_javanesetext 'Javanese Text'</c>
<c>font_leelawadeeui 'LeelawadeeUI'</c>
<c>font_leelawadeeui_regular 'Leelawadee UI'</c>
<c>font_lucidasans 'Lucida Sans Unicode'</c>
<c>font_malgungothicbold 'Malgun Gothic Bold'</c>
<c>font_malgungothicsemilight 'Malgun Gothic SemiLight'</c>
<c>font_microsofthimalaya 'Microsoft Himalaya'</c>
<c>font_microsoftjhenghei 'Microsoft JhengHei &amp; Microsoft JhengHei UI'</c>
<c>font_microsoftjhengheibold 'Microsoft JhengHei Bold &amp; Microsoft JhengHei UI Bold'</c>
<c>font_microsoftjhengheilight 'Microsoft JhengHei Light &amp; Microsoft JhengHei UI Light'</c>
<c>font_microsoftyahei 'Microsoft YaHei &amp; Microsoft YaHei UI'</c>
<c>font_microsoftyaheibold 'Microsoft YaHei Bold &amp; Microsoft YaHei UI Bold'</c>
<c>font_microsoftyaheilight 'Microsoft YaHei Light &amp; Microsoft YaHei UI Light'</c>
<c>font_mingliub 'MingLiU-ExtB &amp; PMingLiU-ExtB &amp; MingLiU_HKSCS-ExtB'</c>
<c>font_mongolianbaiti 'Mongolian Baiti'</c>
<c>font_msgothic 'MS Gothic &amp; MS UI Gothic &amp; MS PGothic'</c>
<c>font_mvboli 'MV Boli'</c>
<c>font_myanmartext 'Myanmar Text'</c>
<c>font_myanmartextbold 'Myanmar Text Bold'</c>
<c>font_newtailue 'Microsoft New Tai Lue'</c>
<c>font_newtailuebold 'Microsoft New Tai Lue Bold'</c>
<c>font_nirmalaui 'NirmalaUI'</c>
<c>font_nirmalaui_regular 'Nirmala UI'</c>
<c>font_palatinolinotype 'PalatinoLinotype'</c>
<c>font_phagspa 'Microsoft PhagsPa'</c>
<c>font_phagspabold 'Microsoft PhagsPa Bold'</c>
<c>font_segoeprint 'Segoe Print'</c>
<c>font_segoeprintbold 'Segoe Print Bold'</c>
<c>font_segoescript 'SegoeScript'</c>
<c>font_segoeui_italicssupplement 'SegoeUI ItalicsSupplement'</c>
<c>font_simsun 'SimSun &amp; NSimSun'</c>
<c>font_simsunb 'SimSun-ExtB'</c>
<c>font_sitka 'Sitka'</c>
<c>font_small 'Small'</c>
<c>font_sylfaen 'Sylfaen'</c>
<c>font_taile 'Microsoft Tai Le'</c>
<c>font_tailebold 'Microsoft Tai Le Bold'</c>
<c>font_trebuchetms 'TrebuchetMS'</c>
<c>font_vector 'Vector'</c>
<c>font_verdana 'Verdana'</c>
<c>font_yibaiti 'Microsoft Yi Baiti'</c>
<c>font_yugothic 'Yu Gothic Regular &amp; Yu Gothic UI Semilight'</c>
<c>font_yugothicbold 'Yu Gothic Bold &amp; Yu Gothic UI Semibold &amp; Yu Gothic UI Bold'</c>
<c>font_yugothiclight 'Yu Gothic Light &amp; Yu Gothic UI Light'</c>
<c>font_yugothicmedium 'Yu Gothic Medium &amp; Yu Gothic UI Regular'</c>
<c>gameexplorer 'Game Explorer'</c>
<c>hwsupport_fax 'Fax'</c>
<c>hwsupport_floppy 'Floppy disk'</c>
<c>hwsupport_infrared 'Infrared devices'</c>
<c>hwsupport_modemsettings 'Shared modem settings (mdmgl*.inf)'</c>
<c>hwsupport_scanner 'Scanner'</c>
<c>hwsupport_smartcard 'Smartcard'</c>
<c>hwsupport_telephony 'Telephony'</c>
<c>ias 'Internet Authentication Service (IAS)'</c>
<c>inputswitchtoasthandler 'Input Switch Toast Handler'</c>
<c>insiderhub 'Windows Insider Program'</c>
<c>ipxlatcfg 'IP Translation Configuration Service'</c>
<c>iscsi 'iSCSI Initiator'</c>
<c>isoburn 'Windows Disc Image Burning Tool'</c>
<c>kl-00000401 'Arabic (101)'</c>
<c>kl-00000402 'Bulgarian (Typewriter)'</c>
<c>kl-00000404 'Chinese (Traditional) - US'</c>
<c>kl-00000405 'Czech'</c>
<c>kl-00000406 'Danish'</c>
<c>kl-00000408 'Greek'</c>
<c>kl-0000040a 'Spanish'</c>
<c>kl-0000040b 'Finnish'</c>
<c>kl-0000040c 'French'</c>
<c>kl-0000040d 'Hebrew'</c>
<c>kl-0000040e 'Hungarian'</c>
<c>kl-0000040f 'Icelandic'</c>
<c>kl-00000410 'Italian'</c>
<c>kl-00000411 'Japanese'</c>
<c>kl-00000412 'Korean'</c>
<c>kl-00000413 'Dutch'</c>
<c>kl-00000414 'Norwegian'</c>
<c>kl-00000415 'Polish (Programmers)'</c>
<c>kl-00000416 'Portuguese (Brazil ABNT)'</c>
<c>kl-00000418 'Romanian (Legacy)'</c>
<c>kl-00000419 'Russian'</c>
<c>kl-0000041a 'Standard'</c>
<c>kl-0000041b 'Slovak'</c>
<c>kl-0000041c 'Albanian'</c>
<c>kl-0000041d 'Swedish'</c>
<c>kl-0000041e 'Thai Kedmanee'</c>
<c>kl-0000041f 'Turkish Q'</c>
<c>kl-00000420 'Urdu'</c>
<c>kl-00000422 'Ukrainian'</c>
<c>kl-00000423 'Belarusian'</c>
<c>kl-00000424 'Slovenian'</c>
<c>kl-00000425 'Estonian'</c>
<c>kl-00000426 'Latvian'</c>
<c>kl-00000427 'Lithuanian IBM'</c>
<c>kl-00000428 'Tajik'</c>
<c>kl-00000429 'Persian'</c>
<c>kl-0000042a 'Vietnamese'</c>
<c>kl-0000042b 'Armenian Eastern (Legacy)'</c>
<c>kl-0000042c 'Azerbaijani Latin'</c>
<c>kl-0000042e 'Sorbian Standard (Legacy)'</c>
<c>kl-0000042f 'Macedonian (North Macedonia)'</c>
<c>kl-00000432 'Setswana'</c>
<c>kl-00000437 'Georgian (Legacy)'</c>
<c>kl-00000438 'Faeroese'</c>
<c>kl-00000439 'Devanagari - INSCRIPT'</c>
<c>kl-0000043a 'Maltese 47-Key'</c>
<c>kl-0000043b 'Norwegian with Sami'</c>
<c>kl-0000043f 'Kazakh'</c>
<c>kl-00000440 'Kyrgyz Cyrillic'</c>
<c>kl-00000442 'Turkmen'</c>
<c>kl-00000444 'Tatar (Legacy)'</c>
<c>kl-00000445 'Bangla'</c>
<c>kl-00000446 'Punjabi'</c>
<c>kl-00000447 'Gujarati'</c>
<c>kl-00000448 'Odia'</c>
<c>kl-00000449 'Tamil'</c>
<c>kl-0000044a 'Telugu'</c>
<c>kl-0000044b 'Kannada'</c>
<c>kl-0000044c 'Malayalam'</c>
<c>kl-0000044d 'Assamese - INSCRIPT'</c>
<c>kl-0000044e 'Marathi'</c>
<c>kl-00000450 'Mongolian Cyrillic'</c>
<c>kl-00000451 'Tibetan (PRC)'</c>
<c>kl-00000452 'United Kingdom Extended'</c>
<c>kl-00000453 'Khmer'</c>
<c>kl-00000454 'Lao'</c>
<c>kl-0000045a 'Syriac'</c>
<c>kl-0000045b 'Sinhala'</c>
<c>kl-0000045c 'Cherokee Nation'</c>
<c>kl-00000461 'Nepali'</c>
<c>kl-00000463 'Pashto (Afghanistan)'</c>
<c>kl-00000465 'Divehi Phonetic'</c>
<c>kl-00000468 'Hausa'</c>
<c>kl-0000046a 'Yoruba'</c>
<c>kl-0000046c 'Sesotho sa Leboa'</c>
<c>kl-0000046d 'Bashkir'</c>
<c>kl-0000046e 'Luxembourgish'</c>
<c>kl-0000046f 'Greenlandic'</c>
<c>kl-00000470 'Igbo'</c>
<c>kl-00000474 'Guarani'</c>
<c>kl-00000475 'Hawaiian'</c>
<c>kl-00000480 'Uyghur (Legacy)'</c>
<c>kl-00000481 'Maori'</c>
<c>kl-00000485 'Sakha'</c>
<c>kl-00000488 'Wolof'</c>
<c>kl-00000492 'Central Kurdish'</c>
<c>kl-00000804 'Chinese (Simplified) - US'</c>
<c>kl-00000807 'Swiss German'</c>
<c>kl-00000809 'United Kingdom'</c>
<c>kl-0000080a 'Latin American'</c>
<c>kl-0000080c 'Belgian French'</c>
<c>kl-00000813 'Belgian (Period)'</c>
<c>kl-00000816 'Portuguese'</c>
<c>kl-0000081a 'Serbian (Latin)'</c>
<c>kl-0000082c 'Azerbaijani Cyrillic'</c>
<c>kl-0000083b 'Swedish with Sami'</c>
<c>kl-00000843 'Uzbek Cyrillic'</c>
<c>kl-00000850 'Mongolian (Mongolian Script)'</c>
<c>kl-0000085d 'Inuktitut - Latin'</c>
<c>kl-0000085f 'Central Atlas Tamazight'</c>
<c>kl-00000c04 'Chinese (Traditional, Hong Kong S.A.R.) - US'</c>
<c>kl-00000c0c 'Canadian French (Legacy)'</c>
<c>kl-00000c1a 'Serbian (Cyrillic)'</c>
<c>kl-00000c51 'Dzongkha'</c>
<c>kl-00001004 'Chinese (Simplified, Singapore) - US'</c>
<c>kl-00001009 'Canadian French'</c>
<c>kl-0000100c 'Swiss French'</c>
<c>kl-0000105f 'Tifinagh (Basic)'</c>
<c>kl-00001404 'Chinese (Traditional, Macao S.A.R.) - US'</c>
<c>kl-00001809 'Irish'</c>
<c>kl-0000201a 'Bosnian (Cyrillic)'</c>
<c>kl-00004009 'English (India)'</c>
<c>kl-00010401 'Arabic (102)'</c>
<c>kl-00010402 'Bulgarian (Latin)'</c>
<c>kl-00010405 'Czech (QWERTY)'</c>
<c>kl-00010407 'German (IBM)'</c>
<c>kl-00010408 'Greek (220)'</c>
<c>kl-00010409 'United States-Dvorak'</c>
<c>kl-0001040a 'Spanish Variation'</c>
<c>kl-0001040e 'Hungarian 101-key'</c>
<c>kl-00010410 'Italian (142)'</c>
<c>kl-00010415 'Polish (214)'</c>
<c>kl-00010416 'Portuguese (Brazil ABNT2)'</c>
<c>kl-00010418 'Romanian (Standard)'</c>
<c>kl-00010419 'Russian (Typewriter)'</c>
<c>kl-0001041b 'Slovak (QWERTY)'</c>
<c>kl-0001041e 'Thai Pattachote'</c>
<c>kl-0001041f 'Turkish F'</c>
<c>kl-00010426 'Latvian (QWERTY)'</c>
<c>kl-00010427 'Lithuanian'</c>
<c>kl-0001042b 'Armenian Western (Legacy)'</c>
<c>kl-0001042c 'Azerbaijani (Standard)'</c>
<c>kl-0001042e 'Sorbian Extended'</c>
<c>kl-0001042f 'Macedonian (North Macedonia) - Standard'</c>
<c>kl-00010437 'Georgian (QWERTY)'</c>
<c>kl-00010439 'Hindi Traditional'</c>
<c>kl-0001043a 'Maltese 48-Key'</c>
<c>kl-0001043b 'Sami Extended Norway'</c>
<c>kl-00010444 'Tatar'</c>
<c>kl-00010445 'Bangla - INSCRIPT (Legacy)'</c>
<c>kl-00010451 'Tibetan (PRC) - Updated'</c>
<c>kl-00010453 'Khmer (NIDA)'</c>
<c>kl-0001045a 'Syriac Phonetic'</c>
<c>kl-0001045b 'Sinhala - Wij 9'</c>
<c>kl-0001045c 'Cherokee Phonetic'</c>
<c>kl-0001045d 'Inuktitut - Naqittaut'</c>
<c>kl-00010465 'Divehi Typewriter'</c>
<c>kl-00010480 'Uyghur'</c>
<c>kl-0001080c 'Belgian (Comma)'</c>
<c>kl-0001083b 'Finnish with Sami'</c>
<c>kl-00010850 'Traditional Mongolian (Standard)'</c>
<c>kl-00010c00 'Myanmar (Phonetic order)'</c>
<c>kl-00011009 'Canadian Multilingual Standard'</c>
<c>kl-0001105f 'Tifinagh (Extended)'</c>
<c>kl-00011809 'Scottish Gaelic'</c>
<c>kl-00020401 'Arabic (102) AZERTY'</c>
<c>kl-00020402 'Bulgarian (Phonetic)'</c>
<c>kl-00020405 'Czech Programmers'</c>
<c>kl-00020408 'Greek (319)'</c>
<c>kl-00020409 'United States-International'</c>
<c>kl-0002040d 'Hebrew (Standard)'</c>
<c>kl-00020418 'Romanian (Programmers)'</c>
<c>kl-00020419 'Russian - Mnemonic'</c>
<c>kl-0002041e 'Thai Kedmanee (non-ShiftLock)'</c>
<c>kl-00020422 'Ukrainian (Enhanced)'</c>
<c>kl-00020426 'Latvian (Standard)'</c>
<c>kl-00020427 'Lithuanian Standard'</c>
<c>kl-0002042b 'Armenian Phonetic'</c>
<c>kl-0002042e 'Sorbian Standard'</c>
<c>kl-00020437 'Georgian (Ergonomic)'</c>
<c>kl-00020445 'Bangla - INSCRIPT'</c>
<c>kl-00020449 'Tamil 99'</c>
<c>kl-0002083b 'Sami Extended Finland-Sweden'</c>
<c>kl-00020c00 'New Tai Lue'</c>
<c>kl-00030402 'Bulgarian'</c>
<c>kl-00030408 'Greek (220) Latin'</c>
<c>kl-0003041e 'Thai Pattachote (non-ShiftLock)'</c>
<c>kl-0003042b 'Armenian Typewriter'</c>
<c>kl-00030437 'Georgian (MES)'</c>
<c>kl-00030c00 'Tai Le'</c>
<c>kl-00040402 'Bulgarian (Phonetic Traditional)'</c>
<c>kl-00040408 'Greek (319) Latin'</c>
<c>kl-00040437 'Georgian (Old Alphabets)'</c>
<c>kl-00040c00 'Ogham'</c>
<c>kl-00050408 'Greek Latin'</c>
<c>kl-00050409 'US English Table for IBM Arabic 238_L'</c>
<c>kl-00050429 'Persian (Standard)'</c>
<c>kl-00060408 'Greek Polytonic'</c>
<c>kl-00070c00 'Lisu (Basic)'</c>
<c>kl-00080c00 'Lisu (Standard)'</c>
<c>kl-00090c00 'N’Ko'</c>
<c>kl-000a0c00 'Phags-pa'</c>
<c>kl-000b0c00 'Buginese'</c>
<c>kl-000c0c00 'Gothic'</c>
<c>kl-000d0c00 'Ol Chiki'</c>
<c>kl-000e0c00 'Osmanya'</c>
<c>kl-000f0c00 'Old Italic'</c>
<c>kl-00100c00 'Sora'</c>
<c>kl-00110c00 'Javanese'</c>
<c>kl-00120c00 'Futhark'</c>
<c>kl-00130c00 'Myanmar (Visual order)'</c>
<c>kl-00140c00 'ADLaM'</c>
<c>kl-00150c00 'Osage'</c>
<c>langarabic 'Arabic'</c>
<c>langbulgarian 'Bulgarian'</c>
<c>langchineses 'Chinese Simplified'</c>
<c>langchineset 'Chinese Traditional'</c>
<c>langcroatian 'Croatian'</c>
<c>langczech 'Czech'</c>
<c>langdanish 'Danish'</c>
<c>langdutch 'Dutch'</c>
<c>langenglishgb 'English (GB)'</c>
<c>langestonian 'Estonian'</c>
<c>langfinnish 'Finnish'</c>
<c>langfrench 'French'</c>
<c>langfrenchcanadian 'French (Canadian)'</c>
<c>langgreek 'Greek'</c>
<c>langhebrew 'Hebrew'</c>
<c>langhungarian 'Hungarian'</c>
<c>langime 'Input Method Editor (IME)'</c>
<c>langimejp 'Japanese (IME)'</c>
<c>langimeko 'Korean (IME)'</c>
<c>langimetc 'Chinese Traditional (IME)'</c>
<c>langitalian 'Italian'</c>
<c>langjapanese 'Japanese'</c>
<c>langkorean 'Korean'</c>
<c>langlatvian 'Latvian'</c>
<c>langlithuanian 'Lithuanian'</c>
<c>langnorwegian 'Norwegian'</c>
<c>langpolish 'Polish'</c>
<c>langportuguesebr 'Portuguese (Brazilian)'</c>
<c>langportuguesept 'Portuguese'</c>
<c>langromanian 'Romanian'</c>
<c>langrussian 'Russian'</c>
<c>langserbian 'Serbian'</c>
<c>langslovak 'Slovak'</c>
<c>langslovenian 'Slovenian'</c>
<c>langspanish 'Spanish'</c>
<c>langswedish 'Swedish'</c>
<c>langtamil 'Tamil'</c>
<c>langthai 'Thai'</c>
<c>langturkish 'Turkish'</c>
<c>langukrainian 'Ukrainian'</c>
<c>lockscreens 'Lock Screen backgrounds'</c>
<c>lpasvc 'Local Profile Assistant Service'</c>
<c>mail 'Windows Mail'</c>
<c>mailcommdll 'Windows Mail Communications Library'</c>
<c>mapcontrol 'Map Control'</c>
<c>messagingsvc 'Messaging Service'</c>
<c>Microsoft.549981C3F5F10 'Cortana'</c>
<c>Microsoft.Advertising.Xaml 'Microsoft Advertising SDK for XAML'</c>
<c>Microsoft.AsyncTextService 'AsyncTextService'</c>
<c>Microsoft.BingWeather 'MSN Weather'</c>
<c>Microsoft.BioEnrollment 'Windows Hello Setup'</c>
<c>Microsoft.CredDialogHost 'Credential Dialog'</c>
<c>Microsoft.ECApp 'Eye Control'</c>
<c>Microsoft.GetHelp 'Get Help'</c>
<c>Microsoft.Getstarted 'Tips (Get Started)'</c>
<c>Microsoft.HEIFImageExtension 'HEIF-Bilderweiterungen'</c>
<c>Microsoft.Microsoft3DViewer '3D-Viewer'</c>
<c>Microsoft.MicrosoftEdge.Stable 'Microsoft Edge (Chromium)'</c>
<c>Microsoft.MicrosoftEdge 'Microsoft Edge (Legacy)'</c>
<c>Microsoft.MicrosoftEdgeDevToolsClient 'Microsoft Edge DevTools Client'</c>
<c>Microsoft.MicrosoftOfficeHub 'Office'</c>
<c>Microsoft.MicrosoftSolitaireCollection 'Microsoft Solitaire Collection'</c>
<c>Microsoft.MicrosoftStickyNotes 'Microsoft Sticky Notes'</c>
<c>Microsoft.MixedReality.Portal 'Mixed Reality Portal'</c>
<c>Microsoft.MSPaint 'Paint 3D'</c>
<c>Microsoft.Office.OneNote 'OneNote'</c>
<c>Microsoft.People 'Microsoft People'</c>
<c>Microsoft.ScreenSketch 'Snip &amp; Sketch'</c>
<c>Microsoft.Services.Store.Engagement 'Microsoft Engagement Framework'</c>
<c>Microsoft.SkypeApp 'Skype'</c>
<c>Microsoft.StorePurchaseApp 'Store Experience Host'</c>
<c>Microsoft.VP9VideoExtensions 'VP9-Videoerweiterungen'</c>
<c>Microsoft.Wallet 'Microsoft Pay'</c>
<c>Microsoft.WebMediaExtensions 'Web Media Extensions'</c>
<c>Microsoft.WebpImageExtension 'Webp-Bilderweiterungen'</c>
<c>Microsoft.Win32WebViewHost 'Desktop App Web Viewer'</c>
<c>Microsoft.Windows.Apprep.ChxApp 'SmartScreen'</c>
<c>Microsoft.Windows.AssignedAccessLockApp 'Assigned Access Lock app'</c>
<c>Microsoft.Windows.CallingShellApp 'Call'</c>
<c>Microsoft.Windows.CapturePicker 'Capture Picker'</c>
<c>Microsoft.Windows.ContentDeliveryManager 'Content Delivery Manager'</c>
<c>Microsoft.Windows.NarratorQuickStart 'Narrator'</c>
<c>Microsoft.Windows.OOBENetworkCaptivePortal 'Captive Portal Flow'</c>
<c>Microsoft.Windows.ParentalControls 'Microsoft family features'</c>
<c>Microsoft.Windows.Photos 'Microsoft Photos'</c>
<c>Microsoft.Windows.SecureAssessmentBrowser 'PrĂĽfung'</c>
<c>Microsoft.WindowsAlarms 'Windows Alarms &amp; Clock'</c>
<c>Microsoft.WindowsCalculator 'Windows Calculator'</c>
<c>Microsoft.WindowsCamera 'Windows Camera'</c>
<c>microsoft.windowscommunicationsapps 'Mail and Calendar'</c>
<c>Microsoft.WindowsFeedbackHub 'Feedback Hub'</c>
<c>Microsoft.WindowsMaps 'Windows Maps'</c>
<c>Microsoft.WindowsSoundRecorder 'Windows Voice Recorder'</c>
<c>Microsoft.Xbox.TCUI 'Xbox TCUI'</c>
<c>Microsoft.XboxApp 'Xbox'</c>
<c>Microsoft.XboxGameCallableUI 'Xbox Game UI'</c>
<c>Microsoft.XboxGameOverlay 'Xbox Game Bar Plugin'</c>
<c>Microsoft.XboxGamingOverlay 'Xbox Game Bar'</c>
<c>Microsoft.XboxSpeechToTextOverlay 'Xbox Game Speech Window'</c>
<c>Microsoft.YourPhone 'Your Phone'</c>
<c>Microsoft.ZuneMusic 'Groove Music'</c>
<c>Microsoft.ZuneVideo 'Movies &amp; TV'</c>
<c>midi 'Microsoft GS Wavetable SW Synth (MIDI)'</c>
<c>mixedreality 'Windows Mixed Reality'</c>
<c>netqos 'Quality of Service Packet Scheduler (QoS)'</c>
<c>nettopology 'Link-Layer Topology Discovery protocol (LLTD)'</c>
<c>nfc 'Near Field Communication (NFC)'</c>
<c>offlinefiles 'Offline Files'</c>
<c>onedrive</c>
<c>openssh</c>
<c>otherthemes 'Windows Personalization themes'</c>
<c>payments</c>
<c>pdfreader 'Windows Reader (PDF)'</c>
<c>phonesvc 'Phone Service'</c>
<c>pos 'Point of Service (POS)'</c>
<c>pushtoinstall 'Windows PushToInstall Service'</c>
<c>rasauto 'Remote Access Auto Connection Manager'</c>
<c>rascmd 'Remote Access Service Client Tools'</c>
<c>rasmans 'Remote Access Connection Manager'</c>
<c>rdc 'Remote Differential Compression (RDC)'</c>
<c>remoteaccessservice 'Routing and Remote Access Service'</c>
<c>remoteaccesssupport 'Routing and Remote Access support'</c>
<c>remoteassistance 'Remote Assistance'</c>
<c>remoteregistry 'Remote Registry'</c>
<c>retaildemo 'Retail Demo Content'</c>
<c>settingsync 'Setting Sync'</c>
<c>sharedaccess 'Internet Connection Sharing (ICS)'</c>
<c>sharehost32 'Share Host - 32 bit'</c>
<c>simpletcp 'Simple TCP/IP services'</c>
<c>skypeortc 'Skype ORTC'</c>
<c>smsrouter 'SMS Router Service'</c>
<c>soundsdefault 'Sounds (Default)'</c>
<c>soundthemes 'Sound Themes'</c>
<c>sourcessxsdir 'Manual feature repository'</c>
<c>speechapi 'Speech API'</c>
<c>speechcommon 'Speech Recognition'</c>
<c>speechtts 'Speech TTS'</c>
<c>staticfontcache 'Static Font Cache'</c>
<c>supportdir 'Support directory'</c>
<c>synccenter 'Sync Center'</c>
<c>tabletextservice 'Table Text Service'</c>
<c>telnetclient 'Telnet Client'</c>
<c>tempcache 'Cache and temp files'</c>
<c>tftpclient 'TFTP client'</c>
<c>trkwks 'Distributed Link Tracking Client'</c>
<c>vpn 'Virtual Private Network (VPN) support'</c>
<c>wallet 'Wallet Service'</c>
<c>wallpapers 'Wallpapers (Themes)'</c>
<c>webcamexperience 'Webcam Experience'</c>
<c>Windows.CBSPreview 'Windows Barcode Preview'</c>
<c>winocr 'Windows TIFF IFilter (OCR)'</c>
<c>wwanautoconfig 'WWAN AutoConfig'</c>
<c>xbox 'Xbox - Core'</c>
</RemoveComponents>
<Compatibility protectHidden="true">
<ComponentFeatures>
<Feature enabled="no">AppGuard</Feature>
<Feature enabled="no">YubiKey</Feature>
<Feature enabled="yes">Bluetooth</Feature>
<Feature enabled="no">CapFrameX</Feature>
<Feature enabled="no">Discord</Feature>
<Feature enabled="yes">FileSharing</Feature>
<Feature enabled="no">Hyper-V</Feature>
<Feature enabled="no">iCloud</Feature>
<Feature enabled="yes">ManualSetup</Feature>
<Feature enabled="no">OfficeSupport</Feature>
<Feature enabled="yes">AppxSupport</Feature>
<Feature enabled="no">Netflix</Feature>
<Feature enabled="no">NetworkDiscovery</Feature>
<Feature enabled="no">NightLight</Feature>
<Feature enabled="yes">NvidiaSetup</Feature>
<Feature enabled="yes">OOBE</Feature>
<Feature enabled="yes">Printing</Feature>
<Feature enabled="yes">Recommended-All</Feature>
<Feature enabled="no">SamsungSwitch</Feature>
<Feature enabled="no">Scanning</Feature>
<Feature enabled="yes">ServicingStack</Feature>
<Feature enabled="no">ShellSearchSupport</Feature>
<Feature enabled="no">Spotify</Feature>
<Feature enabled="yes">SFC</Feature>
<Feature enabled="yes">DefaultFonts</Feature>
<Feature enabled="no">SafeMode</Feature>
<Feature enabled="no">TeamViewer</Feature>
<Feature enabled="no">Recommended-Tablet</Feature>
<Feature enabled="no">USBModem</Feature>
<Feature enabled="yes">USB</Feature>
<Feature enabled="yes">VideoPlayback</Feature>
<Feature enabled="no">VPN</Feature>
<Feature enabled="no">VisualStudio</Feature>
<Feature enabled="no">VSS</Feature>
<Feature enabled="yes">ActivationKMS</Feature>
<Feature enabled="yes">Activation</Feature>
<Feature enabled="yes">WindowsStore</Feature>
<Feature enabled="yes">WindowsUpdate</Feature>
<Feature enabled="yes">WLAN</Feature>
</ComponentFeatures>
<MachineDrivers>
<Machine enabled="yes">HostMachine</Machine>
<Machine enabled="no">Hyper-V VM</Machine>
<Machine enabled="no">Parallels VM</Machine>
<Machine enabled="no">Virtual Box VM</Machine>
<Machine enabled="yes">VMware VM</Machine>
</MachineDrivers>
</Compatibility>
<Features></Features>
<Packages></Packages>
<Commands>
<PostUpdates>
<!--<Command>cmd /c echo Example from [MOUNTDIR]\Windows &amp; pause</Command>-->
<!--<Command>dism /image:[MOUNTDIR] /get-intl</Command>-->
</PostUpdates>
</Commands>
<Drivers showHidden="true"></Drivers>
<Unattended mode="0">
<OEMSetupComplete>false</OEMSetupComplete>
<AnswerFileLocationPanther>false</AnswerFileLocationPanther>
<AnswerFileLocationBoot>false</AnswerFileLocationBoot>
<SaveBothArch>false</SaveBothArch>
<EditionPrompt>false</EditionPrompt>
<settings pass="windowsPE">
<component name="Microsoft-Windows-Setup">
<DynamicUpdate>
<WillShowUI>OnError</WillShowUI>
</DynamicUpdate>
<ImageInstall>
<OSImage>
<WillShowUI>OnError</WillShowUI>
<InstallFrom>
<MetaData>
<Key>/IMAGE/INDEX</Key>
<Value>1</Value>
</MetaData>
</InstallFrom>
</OSImage>
</ImageInstall>
<UserData>
<ProductKey>
<Key></Key>
</ProductKey>
</UserData>
</component>
</settings>
</Unattended>
<Tweaks>
<Settings></Settings>
<Services></Services>
<ExtraServices></ExtraServices>
<ScheduledTasks></ScheduledTasks>
</Tweaks>
<ApplyOptions>
<ImageTasks>
<Task>imageSaveRebuild</Task>
<Task>imageFormatWim</Task>
</ImageTasks>
<AutoIsoFile>NTLite.iso</AutoIsoFile>
<AutoIsoLabel>NTLite</AutoIsoLabel>
<AutoSplitSize>4000</AutoSplitSize>
<CleanHotfixedLeftovers>0</CleanHotfixedLeftovers>
<OptimizeAppX>false</OptimizeAppX>
<ReuseDriverCache>false</ReuseDriverCache>
</ApplyOptions>
<Execution>
<Remove></Remove>
<Change></Change>
<Add></Add>
</Execution>
<Registry></Registry>
</Preset>

View File

@ -0,0 +1,831 @@
<?xml version="1.0" encoding="utf-8"?>
<Preset xmlns="urn:schemas-nliteos-com:pn.v1">
<Date>02/05/2023 18:57:07</Date>
<AppInfo>
<Version>2.3.9.9039</Version>
<Licensed>Yes</Licensed>
<Protections>Yes</Protections>
<Host>Windows 10 Pro (20H2) x64 - 10.0.19042.1706 (en-US)</Host>
</AppInfo>
<ImageInfo>
<Version mode="offline">Windows 10 Professional (20H2) x64 - 10.0.19042.508 (en-US)</Version>
<GUID>{30866280-89EC-4A84-8EB1-F663C7347564}</GUID>
</ImageInfo>
<RemoveComponents AppRemovalMode="DISM">
<c>aarsvc 'Agent Activation Runtime'</c>
<c>accessibility_narrator 'Narrator'</c>
<c>activedirectory 'Active Directory'</c>
<c>adamclient 'Active Directory Lightweight Directory Services (AD LDS)'</c>
<c>alg 'Application Layer Gateway Service'</c>
<c>alljoyn 'AllJoyn Router Service'</c>
<c>appv 'Application Virtualization (App-V)'</c>
<c>assignedaccess 'Assigned Access'</c>
<c>azuread 'Azure Active Directory'</c>
<c>backgroundtransfer 'Networking Background Transfer'</c>
<c>branchcacheclient 'BranchCache Client'</c>
<c>ceip 'CEIP (SQM)'</c>
<c>cloudfiles 'Cloud Files API'</c>
<c>datacenterbridging 'Data Center Bridging (DCB)'</c>
<c>desktopactivitymoderator 'Desktop Activity Moderator (DAM)'</c>
<c>desktopimgdownldr 'Desktop image downloader'</c>
<c>diskquota 'Disk Quota'</c>
<c>diskquota32 'Disk Quota - 32 bit'</c>
<c>driver_61883.inf</c>
<c>driver_c_61883.inf</c>
<c>driver_c_barcodescanner.inf</c>
<c>driver_c_biometric.inf</c>
<c>driver_c_cashdrawer.inf</c>
<c>driver_c_holographic.inf</c>
<c>driver_c_infrared.inf</c>
<c>driver_c_linedisplay.inf</c>
<c>driver_c_magneticstripereader.inf</c>
<c>driver_c_mcx.inf</c>
<c>driver_c_mediumchanger.inf</c>
<c>driver_c_pcmcia.inf</c>
<c>driver_c_receiptprinter.inf</c>
<c>driver_c_smartcardreader.inf</c>
<c>driver_c_tapedrive.inf</c>
<c>driver_cht4vx64.inf</c>
<c>driver_dc1-controller.inf</c>
<c>driver_fusionv2.inf</c>
<c>driver_hidir.inf</c>
<c>driver_hidirkbd.inf</c>
<c>driver_hidscanner.inf</c>
<c>driver_idtsec.inf</c>
<c>driver_iscsi.inf</c>
<c>driver_mchgr.inf</c>
<c>driver_mdm3com.inf</c>
<c>driver_mdm5674a.inf</c>
<c>driver_mdmadc.inf</c>
<c>driver_mdmagm64.inf</c>
<c>driver_mdmags64.inf</c>
<c>driver_mdmairte.inf</c>
<c>driver_mdmaiwa.inf</c>
<c>driver_mdmaiwa3.inf</c>
<c>driver_mdmaiwa4.inf</c>
<c>driver_mdmaiwa5.inf</c>
<c>driver_mdmaiwat.inf</c>
<c>driver_mdmar1.inf</c>
<c>driver_mdmarch.inf</c>
<c>driver_mdmarn.inf</c>
<c>driver_mdmati.inf</c>
<c>driver_mdmatm2k.inf</c>
<c>driver_mdmaus.inf</c>
<c>driver_mdmboca.inf</c>
<c>driver_mdmbsb.inf</c>
<c>driver_mdmbug3.inf</c>
<c>driver_mdmbw561.inf</c>
<c>driver_mdmc26a.inf</c>
<c>driver_mdmcdp.inf</c>
<c>driver_mdmcm28.inf</c>
<c>driver_mdmcodex.inf</c>
<c>driver_mdmcom1.inf</c>
<c>driver_mdmcommu.inf</c>
<c>driver_mdmcomp.inf</c>
<c>driver_mdmcpq.inf</c>
<c>driver_mdmcpq2.inf</c>
<c>driver_mdmcpv.inf</c>
<c>driver_mdmcrtix.inf</c>
<c>driver_mdmcxhv6.inf</c>
<c>driver_mdmcxpv6.inf</c>
<c>driver_mdmdcm5.inf</c>
<c>driver_mdmdcm6.inf</c>
<c>driver_mdmdf56f.inf</c>
<c>driver_mdmdgitn.inf</c>
<c>driver_mdmdp2.inf</c>
<c>driver_mdmdsi.inf</c>
<c>driver_mdmdyna.inf</c>
<c>driver_mdmeiger.inf</c>
<c>driver_mdmelsa.inf</c>
<c>driver_mdmeric.inf</c>
<c>driver_mdmeric2.inf</c>
<c>driver_mdmetech.inf</c>
<c>driver_mdmfj2.inf</c>
<c>driver_mdmgatew.inf</c>
<c>driver_mdmgcs.inf</c>
<c>driver_mdmgen.inf</c>
<c>driver_mdmgl001.inf</c>
<c>driver_mdmgl002.inf</c>
<c>driver_mdmgl003.inf</c>
<c>driver_mdmgl004.inf</c>
<c>driver_mdmgl005.inf</c>
<c>driver_mdmgl006.inf</c>
<c>driver_mdmgl007.inf</c>
<c>driver_mdmgl008.inf</c>
<c>driver_mdmgl009.inf</c>
<c>driver_mdmgl010.inf</c>
<c>driver_mdmgsm.inf</c>
<c>driver_mdmhaeu.inf</c>
<c>driver_mdmhandy.inf</c>
<c>driver_mdmhay2.inf</c>
<c>driver_mdmhayes.inf</c>
<c>driver_mdminfot.inf</c>
<c>driver_mdmiodat.inf</c>
<c>driver_mdmirmdm.inf</c>
<c>driver_mdmisdn.inf</c>
<c>driver_mdmjf56e.inf</c>
<c>driver_mdmke.inf</c>
<c>driver_mdmkortx.inf</c>
<c>driver_mdmlasat.inf</c>
<c>driver_mdmlasno.inf</c>
<c>driver_mdmlucnt.inf</c>
<c>driver_mdmmc288.inf</c>
<c>driver_mdmmcd.inf</c>
<c>driver_mdmmcom.inf</c>
<c>driver_mdmmct.inf</c>
<c>driver_mdmmega.inf</c>
<c>driver_mdmmetri.inf</c>
<c>driver_mdmmhrtz.inf</c>
<c>driver_mdmmhzel.inf</c>
<c>driver_mdmminij.inf</c>
<c>driver_mdmmod.inf</c>
<c>driver_mdmmot64.inf</c>
<c>driver_mdmmoto1.inf</c>
<c>driver_mdmmotou.inf</c>
<c>driver_mdmmts.inf</c>
<c>driver_mdmneuhs.inf</c>
<c>driver_mdmnis1u.inf</c>
<c>driver_mdmnis2u.inf</c>
<c>driver_mdmnis3t.inf</c>
<c>driver_mdmnis5t.inf</c>
<c>driver_mdmnokia.inf</c>
<c>driver_mdmnova.inf</c>
<c>driver_mdmntt1.inf</c>
<c>driver_mdmnttd2.inf</c>
<c>driver_mdmnttd6.inf</c>
<c>driver_mdmnttme.inf</c>
<c>driver_mdmnttp.inf</c>
<c>driver_mdmnttp2.inf</c>
<c>driver_mdmnttte.inf</c>
<c>driver_mdmolic.inf</c>
<c>driver_mdmomrn3.inf</c>
<c>driver_mdmoptn.inf</c>
<c>driver_mdmosi.inf</c>
<c>driver_mdmpace.inf</c>
<c>driver_mdmpenr.inf</c>
<c>driver_mdmpin.inf</c>
<c>driver_mdmpn1.inf</c>
<c>driver_mdmpp.inf</c>
<c>driver_mdmpsion.inf</c>
<c>driver_mdmracal.inf</c>
<c>driver_mdmrock.inf</c>
<c>driver_mdmrock3.inf</c>
<c>driver_mdmrock4.inf</c>
<c>driver_mdmrock5.inf</c>
<c>driver_mdmsier.inf</c>
<c>driver_mdmsii64.inf</c>
<c>driver_mdmsmart.inf</c>
<c>driver_mdmsonyu.inf</c>
<c>driver_mdmsun1.inf</c>
<c>driver_mdmsun2.inf</c>
<c>driver_mdmsupr3.inf</c>
<c>driver_mdmsupra.inf</c>
<c>driver_mdmsuprv.inf</c>
<c>driver_mdmtdk.inf</c>
<c>driver_mdmtdkj2.inf</c>
<c>driver_mdmtdkj3.inf</c>
<c>driver_mdmtdkj4.inf</c>
<c>driver_mdmtdkj5.inf</c>
<c>driver_mdmtdkj6.inf</c>
<c>driver_mdmtdkj7.inf</c>
<c>driver_mdmtexas.inf</c>
<c>driver_mdmti.inf</c>
<c>driver_mdmtkr.inf</c>
<c>driver_mdmtron.inf</c>
<c>driver_mdmusrf.inf</c>
<c>driver_mdmusrg.inf</c>
<c>driver_mdmusrgl.inf</c>
<c>driver_mdmusrk1.inf</c>
<c>driver_mdmusrsp.inf</c>
<c>driver_mdmvdot.inf</c>
<c>driver_mdmvv.inf</c>
<c>driver_mdmwhql0.inf</c>
<c>driver_mdmx5560.inf</c>
<c>driver_mdmzoom.inf</c>
<c>driver_mdmzyp.inf</c>
<c>driver_mdmzyxel.inf</c>
<c>driver_mdmzyxlg.inf</c>
<c>driver_mgtdyn.inf</c>
<c>driver_miradisp.inf</c>
<c>driver_msclmd.inf</c>
<c>driver_oposdrv.inf</c>
<c>driver_pcmcia.inf</c>
<c>driver_perceptionsimulationheadset.inf</c>
<c>driver_rdpbus.inf</c>
<c>driver_rdvgwddmdx11.inf</c>
<c>driver_remoteposdrv.inf</c>
<c>driver_sensorshidclassdriver.inf</c>
<c>driver_sensorsservicedriver.inf</c>
<c>driver_tape.inf</c>
<c>driver_termkbd.inf</c>
<c>driver_termmou.inf</c>
<c>driver_tpm.inf</c>
<c>driver_tpmvsc.inf</c>
<c>driver_ts_generic.inf</c>
<c>driver_tsgenericusbdriver.inf</c>
<c>driver_tsprint.inf</c>
<c>driver_tsusbhubfilter.inf</c>
<c>driver_usbcciddriver.inf</c>
<c>driver_usbcir.inf</c>
<c>driver_wdmvsc.inf</c>
<c>driver_wfcvsc.inf</c>
<c>driver_wgencounter.inf</c>
<c>driver_whvcrash.inf</c>
<c>driver_whyperkbd.inf</c>
<c>driver_wnetvsc.inf</c>
<c>driver_ws3cap.inf</c>
<c>driver_wstorflt.inf</c>
<c>driver_wstorvsc.inf</c>
<c>driver_wsynth3dvsc.inf</c>
<c>driver_wudfusbcciddriver.inf</c>
<c>driver_wvmbushid.inf</c>
<c>driver_wvmbusvideo.inf</c>
<c>driver_wvmgid.inf</c>
<c>driver_wvmic.inf</c>
<c>driver_wvmic_ext.inf</c>
<c>driver_wvpci.inf</c>
<c>driver_xboxgipsynthetic.inf</c>
<c>driver_xusb22.inf</c>
<c>E2A4F912-2574-4A75-9BB0-0D023378592B 'App Resolver'</c>
<c>embeddedmode 'Embedded Mode'</c>
<c>enterpriseclientsync 'Work Folders Client'</c>
<c>exchangeactivesync 'Exchange ActiveSync (EAS)'</c>
<c>F46D4000-FD22-4DB4-AC8E-4E1DDDE828FE 'Add Folder Suggestions dialog'</c>
<c>flashactivex 'Adobe Flash for Internet Explorer'</c>
<c>flashactivex32 'Adobe Flash for Internet Explorer - 32 bit'</c>
<c>folderredirection 'Folder Redirection'</c>
<c>font_arialblack 'Arial Black'</c>
<c>font_bahnschrift 'Bahnschrift'</c>
<c>font_cambria 'Cambria'</c>
<c>font_cambria_regular 'Cambria &amp; Cambria Math'</c>
<c>font_candara 'Candara'</c>
<c>font_comicsansms 'ComicSansMS'</c>
<c>font_constantia 'Constantia'</c>
<c>font_corbel 'Corbel'</c>
<c>font_courier 'Courier'</c>
<c>font_ebrima 'Ebrima'</c>
<c>font_ebrimabold 'Ebrima Bold'</c>
<c>font_franklingothic 'FranklinGothic'</c>
<c>font_gabriola 'Gabriola'</c>
<c>font_gadugi 'Gadugi'</c>
<c>font_gadugibold 'Gadugi Bold'</c>
<c>font_georgia 'Georgia'</c>
<c>font_holomd2 'Holo MDL2 Assets'</c>
<c>font_impact 'Impact'</c>
<c>font_inkfree 'Ink Free'</c>
<c>font_javanesetext 'Javanese Text'</c>
<c>font_leelawadeeui 'LeelawadeeUI'</c>
<c>font_leelawadeeui_regular 'Leelawadee UI'</c>
<c>font_lucidasans 'Lucida Sans Unicode'</c>
<c>font_malgungothicbold 'Malgun Gothic Bold'</c>
<c>font_malgungothicsemilight 'Malgun Gothic SemiLight'</c>
<c>font_microsofthimalaya 'Microsoft Himalaya'</c>
<c>font_microsoftjhenghei 'Microsoft JhengHei &amp; Microsoft JhengHei UI'</c>
<c>font_microsoftjhengheibold 'Microsoft JhengHei Bold &amp; Microsoft JhengHei UI Bold'</c>
<c>font_microsoftjhengheilight 'Microsoft JhengHei Light &amp; Microsoft JhengHei UI Light'</c>
<c>font_microsoftyahei 'Microsoft YaHei &amp; Microsoft YaHei UI'</c>
<c>font_microsoftyaheibold 'Microsoft YaHei Bold &amp; Microsoft YaHei UI Bold'</c>
<c>font_microsoftyaheilight 'Microsoft YaHei Light &amp; Microsoft YaHei UI Light'</c>
<c>font_mingliub 'MingLiU-ExtB &amp; PMingLiU-ExtB &amp; MingLiU_HKSCS-ExtB'</c>
<c>font_mongolianbaiti 'Mongolian Baiti'</c>
<c>font_msgothic 'MS Gothic &amp; MS UI Gothic &amp; MS PGothic'</c>
<c>font_mvboli 'MV Boli'</c>
<c>font_myanmartext 'Myanmar Text'</c>
<c>font_myanmartextbold 'Myanmar Text Bold'</c>
<c>font_newtailue 'Microsoft New Tai Lue'</c>
<c>font_newtailuebold 'Microsoft New Tai Lue Bold'</c>
<c>font_nirmalaui 'NirmalaUI'</c>
<c>font_nirmalaui_regular 'Nirmala UI'</c>
<c>font_palatinolinotype 'PalatinoLinotype'</c>
<c>font_phagspa 'Microsoft PhagsPa'</c>
<c>font_phagspabold 'Microsoft PhagsPa Bold'</c>
<c>font_segoeprint 'Segoe Print'</c>
<c>font_segoeprintbold 'Segoe Print Bold'</c>
<c>font_segoescript 'SegoeScript'</c>
<c>font_segoeui_italicssupplement 'SegoeUI ItalicsSupplement'</c>
<c>font_simsun 'SimSun &amp; NSimSun'</c>
<c>font_simsunb 'SimSun-ExtB'</c>
<c>font_sitka 'Sitka'</c>
<c>font_small 'Small'</c>
<c>font_sylfaen 'Sylfaen'</c>
<c>font_taile 'Microsoft Tai Le'</c>
<c>font_tailebold 'Microsoft Tai Le Bold'</c>
<c>font_trebuchetms 'TrebuchetMS'</c>
<c>font_vector 'Vector'</c>
<c>font_verdana 'Verdana'</c>
<c>font_yibaiti 'Microsoft Yi Baiti'</c>
<c>font_yugothic 'Yu Gothic Regular &amp; Yu Gothic UI Semilight'</c>
<c>font_yugothicbold 'Yu Gothic Bold &amp; Yu Gothic UI Semibold &amp; Yu Gothic UI Bold'</c>
<c>font_yugothiclight 'Yu Gothic Light &amp; Yu Gothic UI Light'</c>
<c>font_yugothicmedium 'Yu Gothic Medium &amp; Yu Gothic UI Regular'</c>
<c>gameexplorer 'Game Explorer'</c>
<c>hwsupport_fax 'Fax'</c>
<c>hwsupport_floppy 'Floppy disk'</c>
<c>hwsupport_infrared 'Infrared devices'</c>
<c>hwsupport_modemsettings 'Shared modem settings (mdmgl*.inf)'</c>
<c>hwsupport_scanner 'Scanner'</c>
<c>hwsupport_smartcard 'Smartcard'</c>
<c>hwsupport_telephony 'Telephony'</c>
<c>hypervguest 'Hyper-V Integration Services'</c>
<c>ias 'Internet Authentication Service (IAS)'</c>
<c>iis 'Internet Information Server (IIS)'</c>
<c>inputswitchtoasthandler 'Input Switch Toast Handler'</c>
<c>insiderhub 'Windows Insider Program'</c>
<c>ipt 'Identity Protection Technology (Intel IPT)'</c>
<c>ipxlatcfg 'IP Translation Configuration Service'</c>
<c>iscsi 'iSCSI Initiator'</c>
<c>isoburn 'Windows Disc Image Burning Tool'</c>
<c>kl-00000401 'Arabic (101)'</c>
<c>kl-00000402 'Bulgarian (Typewriter)'</c>
<c>kl-00000404 'Chinese (Traditional) - US'</c>
<c>kl-00000405 'Czech'</c>
<c>kl-00000406 'Danish'</c>
<c>kl-00000408 'Greek'</c>
<c>kl-0000040a 'Spanish'</c>
<c>kl-0000040b 'Finnish'</c>
<c>kl-0000040c 'French'</c>
<c>kl-0000040d 'Hebrew'</c>
<c>kl-0000040e 'Hungarian'</c>
<c>kl-0000040f 'Icelandic'</c>
<c>kl-00000410 'Italian'</c>
<c>kl-00000411 'Japanese'</c>
<c>kl-00000412 'Korean'</c>
<c>kl-00000413 'Dutch'</c>
<c>kl-00000414 'Norwegian'</c>
<c>kl-00000415 'Polish (Programmers)'</c>
<c>kl-00000416 'Portuguese (Brazil ABNT)'</c>
<c>kl-00000418 'Romanian (Legacy)'</c>
<c>kl-00000419 'Russian'</c>
<c>kl-0000041a 'Standard'</c>
<c>kl-0000041b 'Slovak'</c>
<c>kl-0000041c 'Albanian'</c>
<c>kl-0000041d 'Swedish'</c>
<c>kl-0000041e 'Thai Kedmanee'</c>
<c>kl-0000041f 'Turkish Q'</c>
<c>kl-00000420 'Urdu'</c>
<c>kl-00000422 'Ukrainian'</c>
<c>kl-00000423 'Belarusian'</c>
<c>kl-00000424 'Slovenian'</c>
<c>kl-00000425 'Estonian'</c>
<c>kl-00000426 'Latvian'</c>
<c>kl-00000427 'Lithuanian IBM'</c>
<c>kl-00000428 'Tajik'</c>
<c>kl-00000429 'Persian'</c>
<c>kl-0000042a 'Vietnamese'</c>
<c>kl-0000042b 'Armenian Eastern (Legacy)'</c>
<c>kl-0000042c 'Azerbaijani Latin'</c>
<c>kl-0000042e 'Sorbian Standard (Legacy)'</c>
<c>kl-0000042f 'Macedonian (North Macedonia)'</c>
<c>kl-00000432 'Setswana'</c>
<c>kl-00000437 'Georgian (Legacy)'</c>
<c>kl-00000438 'Faeroese'</c>
<c>kl-00000439 'Devanagari - INSCRIPT'</c>
<c>kl-0000043a 'Maltese 47-Key'</c>
<c>kl-0000043b 'Norwegian with Sami'</c>
<c>kl-0000043f 'Kazakh'</c>
<c>kl-00000440 'Kyrgyz Cyrillic'</c>
<c>kl-00000442 'Turkmen'</c>
<c>kl-00000444 'Tatar (Legacy)'</c>
<c>kl-00000445 'Bangla'</c>
<c>kl-00000446 'Punjabi'</c>
<c>kl-00000447 'Gujarati'</c>
<c>kl-00000448 'Odia'</c>
<c>kl-00000449 'Tamil'</c>
<c>kl-0000044a 'Telugu'</c>
<c>kl-0000044b 'Kannada'</c>
<c>kl-0000044c 'Malayalam'</c>
<c>kl-0000044d 'Assamese - INSCRIPT'</c>
<c>kl-0000044e 'Marathi'</c>
<c>kl-00000450 'Mongolian Cyrillic'</c>
<c>kl-00000451 'Tibetan (PRC)'</c>
<c>kl-00000452 'United Kingdom Extended'</c>
<c>kl-00000453 'Khmer'</c>
<c>kl-00000454 'Lao'</c>
<c>kl-0000045a 'Syriac'</c>
<c>kl-0000045b 'Sinhala'</c>
<c>kl-0000045c 'Cherokee Nation'</c>
<c>kl-00000461 'Nepali'</c>
<c>kl-00000463 'Pashto (Afghanistan)'</c>
<c>kl-00000465 'Divehi Phonetic'</c>
<c>kl-00000468 'Hausa'</c>
<c>kl-0000046a 'Yoruba'</c>
<c>kl-0000046c 'Sesotho sa Leboa'</c>
<c>kl-0000046d 'Bashkir'</c>
<c>kl-0000046e 'Luxembourgish'</c>
<c>kl-0000046f 'Greenlandic'</c>
<c>kl-00000470 'Igbo'</c>
<c>kl-00000474 'Guarani'</c>
<c>kl-00000475 'Hawaiian'</c>
<c>kl-00000480 'Uyghur (Legacy)'</c>
<c>kl-00000481 'Maori'</c>
<c>kl-00000485 'Sakha'</c>
<c>kl-00000488 'Wolof'</c>
<c>kl-00000492 'Central Kurdish'</c>
<c>kl-00000804 'Chinese (Simplified) - US'</c>
<c>kl-00000807 'Swiss German'</c>
<c>kl-00000809 'United Kingdom'</c>
<c>kl-0000080a 'Latin American'</c>
<c>kl-0000080c 'Belgian French'</c>
<c>kl-00000813 'Belgian (Period)'</c>
<c>kl-00000816 'Portuguese'</c>
<c>kl-0000081a 'Serbian (Latin)'</c>
<c>kl-0000082c 'Azerbaijani Cyrillic'</c>
<c>kl-0000083b 'Swedish with Sami'</c>
<c>kl-00000843 'Uzbek Cyrillic'</c>
<c>kl-00000850 'Mongolian (Mongolian Script)'</c>
<c>kl-0000085d 'Inuktitut - Latin'</c>
<c>kl-0000085f 'Central Atlas Tamazight'</c>
<c>kl-00000c04 'Chinese (Traditional, Hong Kong S.A.R.) - US'</c>
<c>kl-00000c0c 'Canadian French (Legacy)'</c>
<c>kl-00000c1a 'Serbian (Cyrillic)'</c>
<c>kl-00000c51 'Dzongkha'</c>
<c>kl-00001004 'Chinese (Simplified, Singapore) - US'</c>
<c>kl-00001009 'Canadian French'</c>
<c>kl-0000100c 'Swiss French'</c>
<c>kl-0000105f 'Tifinagh (Basic)'</c>
<c>kl-00001404 'Chinese (Traditional, Macao S.A.R.) - US'</c>
<c>kl-00001809 'Irish'</c>
<c>kl-0000201a 'Bosnian (Cyrillic)'</c>
<c>kl-00004009 'English (India)'</c>
<c>kl-00010401 'Arabic (102)'</c>
<c>kl-00010402 'Bulgarian (Latin)'</c>
<c>kl-00010405 'Czech (QWERTY)'</c>
<c>kl-00010407 'German (IBM)'</c>
<c>kl-00010408 'Greek (220)'</c>
<c>kl-00010409 'United States-Dvorak'</c>
<c>kl-0001040a 'Spanish Variation'</c>
<c>kl-0001040e 'Hungarian 101-key'</c>
<c>kl-00010410 'Italian (142)'</c>
<c>kl-00010415 'Polish (214)'</c>
<c>kl-00010416 'Portuguese (Brazil ABNT2)'</c>
<c>kl-00010418 'Romanian (Standard)'</c>
<c>kl-00010419 'Russian (Typewriter)'</c>
<c>kl-0001041b 'Slovak (QWERTY)'</c>
<c>kl-0001041e 'Thai Pattachote'</c>
<c>kl-0001041f 'Turkish F'</c>
<c>kl-00010426 'Latvian (QWERTY)'</c>
<c>kl-00010427 'Lithuanian'</c>
<c>kl-0001042b 'Armenian Western (Legacy)'</c>
<c>kl-0001042c 'Azerbaijani (Standard)'</c>
<c>kl-0001042e 'Sorbian Extended'</c>
<c>kl-0001042f 'Macedonian (North Macedonia) - Standard'</c>
<c>kl-00010437 'Georgian (QWERTY)'</c>
<c>kl-00010439 'Hindi Traditional'</c>
<c>kl-0001043a 'Maltese 48-Key'</c>
<c>kl-0001043b 'Sami Extended Norway'</c>
<c>kl-00010444 'Tatar'</c>
<c>kl-00010445 'Bangla - INSCRIPT (Legacy)'</c>
<c>kl-00010451 'Tibetan (PRC) - Updated'</c>
<c>kl-00010453 'Khmer (NIDA)'</c>
<c>kl-0001045a 'Syriac Phonetic'</c>
<c>kl-0001045b 'Sinhala - Wij 9'</c>
<c>kl-0001045c 'Cherokee Phonetic'</c>
<c>kl-0001045d 'Inuktitut - Naqittaut'</c>
<c>kl-00010465 'Divehi Typewriter'</c>
<c>kl-00010480 'Uyghur'</c>
<c>kl-0001080c 'Belgian (Comma)'</c>
<c>kl-0001083b 'Finnish with Sami'</c>
<c>kl-00010850 'Traditional Mongolian (Standard)'</c>
<c>kl-00010c00 'Myanmar (Phonetic order)'</c>
<c>kl-00011009 'Canadian Multilingual Standard'</c>
<c>kl-0001105f 'Tifinagh (Extended)'</c>
<c>kl-00011809 'Scottish Gaelic'</c>
<c>kl-00020401 'Arabic (102) AZERTY'</c>
<c>kl-00020402 'Bulgarian (Phonetic)'</c>
<c>kl-00020405 'Czech Programmers'</c>
<c>kl-00020408 'Greek (319)'</c>
<c>kl-00020409 'United States-International'</c>
<c>kl-0002040d 'Hebrew (Standard)'</c>
<c>kl-00020418 'Romanian (Programmers)'</c>
<c>kl-00020419 'Russian - Mnemonic'</c>
<c>kl-0002041e 'Thai Kedmanee (non-ShiftLock)'</c>
<c>kl-00020422 'Ukrainian (Enhanced)'</c>
<c>kl-00020426 'Latvian (Standard)'</c>
<c>kl-00020427 'Lithuanian Standard'</c>
<c>kl-0002042b 'Armenian Phonetic'</c>
<c>kl-0002042e 'Sorbian Standard'</c>
<c>kl-00020437 'Georgian (Ergonomic)'</c>
<c>kl-00020445 'Bangla - INSCRIPT'</c>
<c>kl-00020449 'Tamil 99'</c>
<c>kl-0002083b 'Sami Extended Finland-Sweden'</c>
<c>kl-00020c00 'New Tai Lue'</c>
<c>kl-00030402 'Bulgarian'</c>
<c>kl-00030408 'Greek (220) Latin'</c>
<c>kl-0003041e 'Thai Pattachote (non-ShiftLock)'</c>
<c>kl-0003042b 'Armenian Typewriter'</c>
<c>kl-00030437 'Georgian (MES)'</c>
<c>kl-00030c00 'Tai Le'</c>
<c>kl-00040402 'Bulgarian (Phonetic Traditional)'</c>
<c>kl-00040408 'Greek (319) Latin'</c>
<c>kl-00040437 'Georgian (Old Alphabets)'</c>
<c>kl-00040c00 'Ogham'</c>
<c>kl-00050408 'Greek Latin'</c>
<c>kl-00050409 'US English Table for IBM Arabic 238_L'</c>
<c>kl-00050429 'Persian (Standard)'</c>
<c>kl-00060408 'Greek Polytonic'</c>
<c>kl-00070c00 'Lisu (Basic)'</c>
<c>kl-00080c00 'Lisu (Standard)'</c>
<c>kl-00090c00 'N’Ko'</c>
<c>kl-000a0c00 'Phags-pa'</c>
<c>kl-000b0c00 'Buginese'</c>
<c>kl-000c0c00 'Gothic'</c>
<c>kl-000d0c00 'Ol Chiki'</c>
<c>kl-000e0c00 'Osmanya'</c>
<c>kl-000f0c00 'Old Italic'</c>
<c>kl-00100c00 'Sora'</c>
<c>kl-00110c00 'Javanese'</c>
<c>kl-00120c00 'Futhark'</c>
<c>kl-00130c00 'Myanmar (Visual order)'</c>
<c>kl-00140c00 'ADLaM'</c>
<c>kl-00150c00 'Osage'</c>
<c>langarabic 'Arabic'</c>
<c>langbulgarian 'Bulgarian'</c>
<c>langchineses 'Chinese Simplified'</c>
<c>langchineset 'Chinese Traditional'</c>
<c>langcroatian 'Croatian'</c>
<c>langczech 'Czech'</c>
<c>langdanish 'Danish'</c>
<c>langdutch 'Dutch'</c>
<c>langenglishgb 'English (GB)'</c>
<c>langestonian 'Estonian'</c>
<c>langfinnish 'Finnish'</c>
<c>langfrench 'French'</c>
<c>langfrenchcanadian 'French (Canadian)'</c>
<c>langgreek 'Greek'</c>
<c>langhebrew 'Hebrew'</c>
<c>langhungarian 'Hungarian'</c>
<c>langime 'Input Method Editor (IME)'</c>
<c>langimejp 'Japanese (IME)'</c>
<c>langimeko 'Korean (IME)'</c>
<c>langimetc 'Chinese Traditional (IME)'</c>
<c>langitalian 'Italian'</c>
<c>langjapanese 'Japanese'</c>
<c>langkorean 'Korean'</c>
<c>langlatvian 'Latvian'</c>
<c>langlithuanian 'Lithuanian'</c>
<c>langnorwegian 'Norwegian'</c>
<c>langpolish 'Polish'</c>
<c>langportuguesebr 'Portuguese (Brazilian)'</c>
<c>langportuguesept 'Portuguese'</c>
<c>langromanian 'Romanian'</c>
<c>langrussian 'Russian'</c>
<c>langserbian 'Serbian'</c>
<c>langslovak 'Slovak'</c>
<c>langslovenian 'Slovenian'</c>
<c>langspanish 'Spanish'</c>
<c>langswedish 'Swedish'</c>
<c>langtamil 'Tamil'</c>
<c>langthai 'Thai'</c>
<c>langturkish 'Turkish'</c>
<c>langukrainian 'Ukrainian'</c>
<c>lockscreens 'Lock Screen backgrounds'</c>
<c>lpasvc 'Local Profile Assistant Service'</c>
<c>mail 'Windows Mail'</c>
<c>mailcommdll 'Windows Mail Communications Library'</c>
<c>mapcontrol 'Map Control'</c>
<c>messagingsvc 'Messaging Service'</c>
<c>Microsoft.549981C3F5F10 'Cortana'</c>
<c>Microsoft.Advertising.Xaml 'Microsoft Advertising SDK for XAML'</c>
<c>Microsoft.AsyncTextService 'AsyncTextService'</c>
<c>Microsoft.BingWeather 'MSN Weather'</c>
<c>Microsoft.BioEnrollment 'Windows Hello Setup'</c>
<c>Microsoft.CredDialogHost 'Credential Dialog'</c>
<c>Microsoft.ECApp 'Eye Control'</c>
<c>Microsoft.GetHelp 'Get Help'</c>
<c>Microsoft.Getstarted 'Tips (Get Started)'</c>
<c>Microsoft.HEIFImageExtension 'HEIF-Bilderweiterungen'</c>
<c>Microsoft.Microsoft3DViewer '3D-Viewer'</c>
<c>Microsoft.MicrosoftEdge.Stable 'Microsoft Edge (Chromium)'</c>
<c>Microsoft.MicrosoftEdge 'Microsoft Edge (Legacy)'</c>
<c>Microsoft.MicrosoftEdgeDevToolsClient 'Microsoft Edge DevTools Client'</c>
<c>Microsoft.MicrosoftOfficeHub 'Office'</c>
<c>Microsoft.MicrosoftSolitaireCollection 'Microsoft Solitaire Collection'</c>
<c>Microsoft.MicrosoftStickyNotes 'Microsoft Sticky Notes'</c>
<c>Microsoft.MixedReality.Portal 'Mixed Reality Portal'</c>
<c>Microsoft.MSPaint 'Paint 3D'</c>
<c>Microsoft.Office.OneNote 'OneNote'</c>
<c>Microsoft.People 'Microsoft People'</c>
<c>Microsoft.ScreenSketch 'Snip &amp; Sketch'</c>
<c>Microsoft.Services.Store.Engagement 'Microsoft Engagement Framework'</c>
<c>Microsoft.SkypeApp 'Skype'</c>
<c>Microsoft.StorePurchaseApp 'Store Experience Host'</c>
<c>Microsoft.VP9VideoExtensions 'VP9-Videoerweiterungen'</c>
<c>Microsoft.Wallet 'Microsoft Pay'</c>
<c>Microsoft.WebMediaExtensions 'Web Media Extensions'</c>
<c>Microsoft.WebpImageExtension 'Webp-Bilderweiterungen'</c>
<c>Microsoft.Win32WebViewHost 'Desktop App Web Viewer'</c>
<c>Microsoft.Windows.Apprep.ChxApp 'SmartScreen'</c>
<c>Microsoft.Windows.AssignedAccessLockApp 'Assigned Access Lock app'</c>
<c>Microsoft.Windows.CallingShellApp 'Call'</c>
<c>Microsoft.Windows.CapturePicker 'Capture Picker'</c>
<c>Microsoft.Windows.ContentDeliveryManager 'Content Delivery Manager'</c>
<c>Microsoft.Windows.NarratorQuickStart 'Narrator'</c>
<c>Microsoft.Windows.OOBENetworkCaptivePortal 'Captive Portal Flow'</c>
<c>Microsoft.Windows.ParentalControls 'Microsoft family features'</c>
<c>Microsoft.Windows.Photos 'Microsoft Photos'</c>
<c>Microsoft.Windows.SecureAssessmentBrowser 'PrĂĽfung'</c>
<c>Microsoft.WindowsAlarms 'Windows Alarms &amp; Clock'</c>
<c>Microsoft.WindowsCalculator 'Windows Calculator'</c>
<c>Microsoft.WindowsCamera 'Windows Camera'</c>
<c>microsoft.windowscommunicationsapps 'Mail and Calendar'</c>
<c>Microsoft.WindowsFeedbackHub 'Feedback Hub'</c>
<c>Microsoft.WindowsMaps 'Windows Maps'</c>
<c>Microsoft.WindowsSoundRecorder 'Windows Voice Recorder'</c>
<c>Microsoft.Xbox.TCUI 'Xbox TCUI'</c>
<c>Microsoft.XboxApp 'Xbox'</c>
<c>Microsoft.XboxGameCallableUI 'Xbox Game UI'</c>
<c>Microsoft.XboxGameOverlay 'Xbox Game Bar Plugin'</c>
<c>Microsoft.XboxGamingOverlay 'Xbox Game Bar'</c>
<c>Microsoft.XboxSpeechToTextOverlay 'Xbox Game Speech Window'</c>
<c>Microsoft.YourPhone 'Your Phone'</c>
<c>Microsoft.ZuneMusic 'Groove Music'</c>
<c>Microsoft.ZuneVideo 'Movies &amp; TV'</c>
<c>midi 'Microsoft GS Wavetable SW Synth (MIDI)'</c>
<c>mixedreality 'Windows Mixed Reality'</c>
<c>mmga 'MMGA MAPI'</c>
<c>mobilepc</c>
<c>mobilepc_location 'Location notifications'</c>
<c>mobilepc_networkprojection 'Network Projection'</c>
<c>mobilepc_sensors 'Sensors'</c>
<c>msmq 'Microsoft Message Queue (MSMQ)'</c>
<c>netlogon</c>
<c>netqos 'Quality of Service Packet Scheduler (QoS)'</c>
<c>nettopology 'Link-Layer Topology Discovery protocol (LLTD)'</c>
<c>nfc 'Near Field Communication (NFC)'</c>
<c>nfsclient 'NFS Administrative Tools'</c>
<c>offlinefiles 'Offline Files'</c>
<c>onedrive</c>
<c>openssh</c>
<c>otherthemes 'Windows Personalization themes'</c>
<c>payments</c>
<c>pdfreader 'Windows Reader (PDF)'</c>
<c>peertopeer 'Peer Networking'</c>
<c>phonesvc 'Phone Service'</c>
<c>photoviewer 'Photo Viewer'</c>
<c>photoviewer32 'Photo Viewer - 32 bit'</c>
<c>picturepassword 'Picture password'</c>
<c>pos 'Point of Service (POS)'</c>
<c>pushtoinstall 'Windows PushToInstall Service'</c>
<c>rasauto 'Remote Access Auto Connection Manager'</c>
<c>rascmd 'Remote Access Service Client Tools'</c>
<c>rasmans 'Remote Access Connection Manager'</c>
<c>rdc 'Remote Differential Compression (RDC)'</c>
<c>rdpserver 'Remote Desktop Server'</c>
<c>rdpserverlic 'Remote Desktop Licensing'</c>
<c>remoteaccessservice 'Routing and Remote Access Service'</c>
<c>remoteaccesssupport 'Routing and Remote Access support'</c>
<c>remoteassistance 'Remote Assistance'</c>
<c>remotefx</c>
<c>remoteportredirector 'Remote Desktop Services Port Redirector'</c>
<c>remoteregistry 'Remote Registry'</c>
<c>retaildemo 'Retail Demo Content'</c>
<c>sendmail 'Send To Mail and Desktop'</c>
<c>settingsync 'Setting Sync'</c>
<c>sharedaccess 'Internet Connection Sharing (ICS)'</c>
<c>sharedpc 'Shared PC mode'</c>
<c>sharehost32 'Share Host - 32 bit'</c>
<c>sihclient 'Server-Initiated Healing Client'</c>
<c>simpletcp 'Simple TCP/IP services'</c>
<c>skypeortc 'Skype ORTC'</c>
<c>smsrouter 'SMS Router Service'</c>
<c>soundsdefault 'Sounds (Default)'</c>
<c>soundthemes 'Sound Themes'</c>
<c>sourcessxsdir 'Manual feature repository'</c>
<c>speechapi 'Speech API'</c>
<c>speechcommon 'Speech Recognition'</c>
<c>speechtts 'Speech TTS'</c>
<c>staticfontcache 'Static Font Cache'</c>
<c>stepsrecorder 'Steps Recorder'</c>
<c>supportdir 'Support directory'</c>
<c>synccenter 'Sync Center'</c>
<c>tabletextservice 'Table Text Service'</c>
<c>telnetclient 'Telnet Client'</c>
<c>tempcache 'Cache and temp files'</c>
<c>tftpclient 'TFTP client'</c>
<c>trkwks 'Distributed Link Tracking Client'</c>
<c>unp 'Universal Notification Platform (UNP)'</c>
<c>userdeviceregistration 'User Device Registration'</c>
<c>vpn 'Virtual Private Network (VPN) support'</c>
<c>wallet 'Wallet Service'</c>
<c>wallpapers 'Wallpapers (Themes)'</c>
<c>webcamexperience 'Webcam Experience'</c>
<c>winai 'Windows AI Machine Learning'</c>
<c>Windows.CBSPreview 'Windows Barcode Preview'</c>
<c>winocr 'Windows TIFF IFilter (OCR)'</c>
<c>wwanautoconfig 'WWAN AutoConfig'</c>
<c>xbox 'Xbox - Core'</c>
</RemoveComponents>
<Compatibility protectHidden="true">
<ComponentFeatures>
<Feature enabled="no">AppGuard</Feature>
<Feature enabled="no">YubiKey</Feature>
<Feature enabled="yes">Bluetooth</Feature>
<Feature enabled="no">CapFrameX</Feature>
<Feature enabled="no">Discord</Feature>
<Feature enabled="yes">FileSharing</Feature>
<Feature enabled="no">Hyper-V</Feature>
<Feature enabled="no">iCloud</Feature>
<Feature enabled="yes">ManualSetup</Feature>
<Feature enabled="no">OfficeSupport</Feature>
<Feature enabled="yes">AppxSupport</Feature>
<Feature enabled="no">Netflix</Feature>
<Feature enabled="no">NetworkDiscovery</Feature>
<Feature enabled="no">NightLight</Feature>
<Feature enabled="yes">NvidiaSetup</Feature>
<Feature enabled="yes">OOBE</Feature>
<Feature enabled="yes">Printing</Feature>
<Feature enabled="yes">Recommended-All</Feature>
<Feature enabled="no">SamsungSwitch</Feature>
<Feature enabled="no">Scanning</Feature>
<Feature enabled="yes">ServicingStack</Feature>
<Feature enabled="no">ShellSearchSupport</Feature>
<Feature enabled="no">Spotify</Feature>
<Feature enabled="yes">SFC</Feature>
<Feature enabled="yes">DefaultFonts</Feature>
<Feature enabled="no">SafeMode</Feature>
<Feature enabled="no">TeamViewer</Feature>
<Feature enabled="no">Recommended-Tablet</Feature>
<Feature enabled="no">USBModem</Feature>
<Feature enabled="yes">USB</Feature>
<Feature enabled="yes">VideoPlayback</Feature>
<Feature enabled="no">VPN</Feature>
<Feature enabled="no">VisualStudio</Feature>
<Feature enabled="no">VSS</Feature>
<Feature enabled="yes">ActivationKMS</Feature>
<Feature enabled="yes">Activation</Feature>
<Feature enabled="yes">WindowsStore</Feature>
<Feature enabled="yes">WindowsUpdate</Feature>
<Feature enabled="yes">WLAN</Feature>
</ComponentFeatures>
<MachineDrivers>
<Machine enabled="yes">HostMachine</Machine>
<Machine enabled="no">Hyper-V VM</Machine>
<Machine enabled="no">Parallels VM</Machine>
<Machine enabled="no">Virtual Box VM</Machine>
<Machine enabled="yes">VMware VM</Machine>
</MachineDrivers>
</Compatibility>
<Features></Features>
<Packages></Packages>
<Commands>
<PostUpdates>
<!--<Command>cmd /c echo Example from [MOUNTDIR]\Windows &amp; pause</Command>-->
<!--<Command>dism /image:[MOUNTDIR] /get-intl</Command>-->
</PostUpdates>
</Commands>
<Drivers showHidden="true"></Drivers>
<Unattended mode="0">
<OEMSetupComplete>false</OEMSetupComplete>
<AnswerFileLocationPanther>false</AnswerFileLocationPanther>
<AnswerFileLocationBoot>false</AnswerFileLocationBoot>
<SaveBothArch>false</SaveBothArch>
<EditionPrompt>false</EditionPrompt>
<settings pass="windowsPE">
<component name="Microsoft-Windows-Setup">
<DynamicUpdate>
<WillShowUI>OnError</WillShowUI>
</DynamicUpdate>
<ImageInstall>
<OSImage>
<WillShowUI>OnError</WillShowUI>
<InstallFrom>
<MetaData>
<Key>/IMAGE/INDEX</Key>
<Value>1</Value>
</MetaData>
</InstallFrom>
</OSImage>
</ImageInstall>
<UserData>
<ProductKey>
<Key></Key>
</ProductKey>
</UserData>
</component>
</settings>
</Unattended>
<Tweaks>
<Settings></Settings>
<Services></Services>
<ExtraServices></ExtraServices>
<ScheduledTasks></ScheduledTasks>
</Tweaks>
<ApplyOptions>
<ImageTasks>
<Task>imageSaveRebuild</Task>
<Task>imageFormatWim</Task>
</ImageTasks>
<AutoIsoFile>NTLite.iso</AutoIsoFile>
<AutoIsoLabel>NTLite</AutoIsoLabel>
<AutoSplitSize>4000</AutoSplitSize>
<CleanHotfixedLeftovers>0</CleanHotfixedLeftovers>
<OptimizeAppX>false</OptimizeAppX>
<ReuseDriverCache>false</ReuseDriverCache>
</ApplyOptions>
<Execution>
<Remove></Remove>
<Change></Change>
<Add></Add>
</Execution>
<Registry></Registry>
</Preset>

View File

@ -0,0 +1,832 @@
<?xml version="1.0" encoding="utf-8"?>
<Preset xmlns="urn:schemas-nliteos-com:pn.v1">
<Date>02/05/2023 20:22:59</Date>
<AppInfo>
<Version>2.3.9.9039</Version>
<Licensed>Yes</Licensed>
<Protections>Yes</Protections>
<Host>Windows 10 Pro (20H2) x64 - 10.0.19042.1706 (en-US)</Host>
</AppInfo>
<ImageInfo>
<Version mode="offline">Windows 10 Professional (20H2) x64 - 10.0.19042.508 (en-US)</Version>
<GUID>{10AF9B1C-2B41-4BD5-B09D-2461F9B2148A}</GUID>
</ImageInfo>
<RemoveComponents AppRemovalMode="DISM">
<c>aarsvc 'Agent Activation Runtime'</c>
<c>accessibility_narrator 'Narrator'</c>
<c>activedirectory 'Active Directory'</c>
<c>adamclient 'Active Directory Lightweight Directory Services (AD LDS)'</c>
<c>alg 'Application Layer Gateway Service'</c>
<c>alljoyn 'AllJoyn Router Service'</c>
<c>appv 'Application Virtualization (App-V)'</c>
<c>assignedaccess 'Assigned Access'</c>
<c>azuread 'Azure Active Directory'</c>
<c>backgroundtransfer 'Networking Background Transfer'</c>
<c>branchcacheclient 'BranchCache Client'</c>
<c>ceip 'CEIP (SQM)'</c>
<c>cloudfiles 'Cloud Files API'</c>
<c>datacenterbridging 'Data Center Bridging (DCB)'</c>
<c>desktopactivitymoderator 'Desktop Activity Moderator (DAM)'</c>
<c>desktopimgdownldr 'Desktop image downloader'</c>
<c>diskquota 'Disk Quota'</c>
<c>diskquota32 'Disk Quota - 32 bit'</c>
<c>driver_61883.inf</c>
<c>driver_c_61883.inf</c>
<c>driver_c_barcodescanner.inf</c>
<c>driver_c_biometric.inf</c>
<c>driver_c_cashdrawer.inf</c>
<c>driver_c_holographic.inf</c>
<c>driver_c_infrared.inf</c>
<c>driver_c_linedisplay.inf</c>
<c>driver_c_magneticstripereader.inf</c>
<c>driver_c_mcx.inf</c>
<c>driver_c_mediumchanger.inf</c>
<c>driver_c_pcmcia.inf</c>
<c>driver_c_receiptprinter.inf</c>
<c>driver_c_smartcardreader.inf</c>
<c>driver_c_tapedrive.inf</c>
<c>driver_cht4vx64.inf</c>
<c>driver_dc1-controller.inf</c>
<c>driver_fusionv2.inf</c>
<c>driver_hidir.inf</c>
<c>driver_hidirkbd.inf</c>
<c>driver_hidscanner.inf</c>
<c>driver_idtsec.inf</c>
<c>driver_iscsi.inf</c>
<c>driver_mchgr.inf</c>
<c>driver_mdm3com.inf</c>
<c>driver_mdm5674a.inf</c>
<c>driver_mdmadc.inf</c>
<c>driver_mdmagm64.inf</c>
<c>driver_mdmags64.inf</c>
<c>driver_mdmairte.inf</c>
<c>driver_mdmaiwa.inf</c>
<c>driver_mdmaiwa3.inf</c>
<c>driver_mdmaiwa4.inf</c>
<c>driver_mdmaiwa5.inf</c>
<c>driver_mdmaiwat.inf</c>
<c>driver_mdmar1.inf</c>
<c>driver_mdmarch.inf</c>
<c>driver_mdmarn.inf</c>
<c>driver_mdmati.inf</c>
<c>driver_mdmatm2k.inf</c>
<c>driver_mdmaus.inf</c>
<c>driver_mdmboca.inf</c>
<c>driver_mdmbsb.inf</c>
<c>driver_mdmbug3.inf</c>
<c>driver_mdmbw561.inf</c>
<c>driver_mdmc26a.inf</c>
<c>driver_mdmcdp.inf</c>
<c>driver_mdmcm28.inf</c>
<c>driver_mdmcodex.inf</c>
<c>driver_mdmcom1.inf</c>
<c>driver_mdmcommu.inf</c>
<c>driver_mdmcomp.inf</c>
<c>driver_mdmcpq.inf</c>
<c>driver_mdmcpq2.inf</c>
<c>driver_mdmcpv.inf</c>
<c>driver_mdmcrtix.inf</c>
<c>driver_mdmcxhv6.inf</c>
<c>driver_mdmcxpv6.inf</c>
<c>driver_mdmdcm5.inf</c>
<c>driver_mdmdcm6.inf</c>
<c>driver_mdmdf56f.inf</c>
<c>driver_mdmdgitn.inf</c>
<c>driver_mdmdp2.inf</c>
<c>driver_mdmdsi.inf</c>
<c>driver_mdmdyna.inf</c>
<c>driver_mdmeiger.inf</c>
<c>driver_mdmelsa.inf</c>
<c>driver_mdmeric.inf</c>
<c>driver_mdmeric2.inf</c>
<c>driver_mdmetech.inf</c>
<c>driver_mdmfj2.inf</c>
<c>driver_mdmgatew.inf</c>
<c>driver_mdmgcs.inf</c>
<c>driver_mdmgen.inf</c>
<c>driver_mdmgl001.inf</c>
<c>driver_mdmgl002.inf</c>
<c>driver_mdmgl003.inf</c>
<c>driver_mdmgl004.inf</c>
<c>driver_mdmgl005.inf</c>
<c>driver_mdmgl006.inf</c>
<c>driver_mdmgl007.inf</c>
<c>driver_mdmgl008.inf</c>
<c>driver_mdmgl009.inf</c>
<c>driver_mdmgl010.inf</c>
<c>driver_mdmgsm.inf</c>
<c>driver_mdmhaeu.inf</c>
<c>driver_mdmhandy.inf</c>
<c>driver_mdmhay2.inf</c>
<c>driver_mdmhayes.inf</c>
<c>driver_mdminfot.inf</c>
<c>driver_mdmiodat.inf</c>
<c>driver_mdmirmdm.inf</c>
<c>driver_mdmisdn.inf</c>
<c>driver_mdmjf56e.inf</c>
<c>driver_mdmke.inf</c>
<c>driver_mdmkortx.inf</c>
<c>driver_mdmlasat.inf</c>
<c>driver_mdmlasno.inf</c>
<c>driver_mdmlucnt.inf</c>
<c>driver_mdmmc288.inf</c>
<c>driver_mdmmcd.inf</c>
<c>driver_mdmmcom.inf</c>
<c>driver_mdmmct.inf</c>
<c>driver_mdmmega.inf</c>
<c>driver_mdmmetri.inf</c>
<c>driver_mdmmhrtz.inf</c>
<c>driver_mdmmhzel.inf</c>
<c>driver_mdmminij.inf</c>
<c>driver_mdmmod.inf</c>
<c>driver_mdmmot64.inf</c>
<c>driver_mdmmoto1.inf</c>
<c>driver_mdmmotou.inf</c>
<c>driver_mdmmts.inf</c>
<c>driver_mdmneuhs.inf</c>
<c>driver_mdmnis1u.inf</c>
<c>driver_mdmnis2u.inf</c>
<c>driver_mdmnis3t.inf</c>
<c>driver_mdmnis5t.inf</c>
<c>driver_mdmnokia.inf</c>
<c>driver_mdmnova.inf</c>
<c>driver_mdmntt1.inf</c>
<c>driver_mdmnttd2.inf</c>
<c>driver_mdmnttd6.inf</c>
<c>driver_mdmnttme.inf</c>
<c>driver_mdmnttp.inf</c>
<c>driver_mdmnttp2.inf</c>
<c>driver_mdmnttte.inf</c>
<c>driver_mdmolic.inf</c>
<c>driver_mdmomrn3.inf</c>
<c>driver_mdmoptn.inf</c>
<c>driver_mdmosi.inf</c>
<c>driver_mdmpace.inf</c>
<c>driver_mdmpenr.inf</c>
<c>driver_mdmpin.inf</c>
<c>driver_mdmpn1.inf</c>
<c>driver_mdmpp.inf</c>
<c>driver_mdmpsion.inf</c>
<c>driver_mdmracal.inf</c>
<c>driver_mdmrock.inf</c>
<c>driver_mdmrock3.inf</c>
<c>driver_mdmrock4.inf</c>
<c>driver_mdmrock5.inf</c>
<c>driver_mdmsier.inf</c>
<c>driver_mdmsii64.inf</c>
<c>driver_mdmsmart.inf</c>
<c>driver_mdmsonyu.inf</c>
<c>driver_mdmsun1.inf</c>
<c>driver_mdmsun2.inf</c>
<c>driver_mdmsupr3.inf</c>
<c>driver_mdmsupra.inf</c>
<c>driver_mdmsuprv.inf</c>
<c>driver_mdmtdk.inf</c>
<c>driver_mdmtdkj2.inf</c>
<c>driver_mdmtdkj3.inf</c>
<c>driver_mdmtdkj4.inf</c>
<c>driver_mdmtdkj5.inf</c>
<c>driver_mdmtdkj6.inf</c>
<c>driver_mdmtdkj7.inf</c>
<c>driver_mdmtexas.inf</c>
<c>driver_mdmti.inf</c>
<c>driver_mdmtkr.inf</c>
<c>driver_mdmtron.inf</c>
<c>driver_mdmusrf.inf</c>
<c>driver_mdmusrg.inf</c>
<c>driver_mdmusrgl.inf</c>
<c>driver_mdmusrk1.inf</c>
<c>driver_mdmusrsp.inf</c>
<c>driver_mdmvdot.inf</c>
<c>driver_mdmvv.inf</c>
<c>driver_mdmwhql0.inf</c>
<c>driver_mdmx5560.inf</c>
<c>driver_mdmzoom.inf</c>
<c>driver_mdmzyp.inf</c>
<c>driver_mdmzyxel.inf</c>
<c>driver_mdmzyxlg.inf</c>
<c>driver_mgtdyn.inf</c>
<c>driver_miradisp.inf</c>
<c>driver_msclmd.inf</c>
<c>driver_oposdrv.inf</c>
<c>driver_pcmcia.inf</c>
<c>driver_perceptionsimulationheadset.inf</c>
<c>driver_rdpbus.inf</c>
<c>driver_rdvgwddmdx11.inf</c>
<c>driver_remoteposdrv.inf</c>
<c>driver_sensorshidclassdriver.inf</c>
<c>driver_sensorsservicedriver.inf</c>
<c>driver_tape.inf</c>
<c>driver_termkbd.inf</c>
<c>driver_termmou.inf</c>
<c>driver_tpm.inf</c>
<c>driver_tpmvsc.inf</c>
<c>driver_ts_generic.inf</c>
<c>driver_tsgenericusbdriver.inf</c>
<c>driver_tsprint.inf</c>
<c>driver_tsusbhubfilter.inf</c>
<c>driver_usbcciddriver.inf</c>
<c>driver_usbcir.inf</c>
<c>driver_wdmvsc.inf</c>
<c>driver_wfcvsc.inf</c>
<c>driver_wgencounter.inf</c>
<c>driver_whvcrash.inf</c>
<c>driver_whyperkbd.inf</c>
<c>driver_wnetvsc.inf</c>
<c>driver_ws3cap.inf</c>
<c>driver_wstorflt.inf</c>
<c>driver_wstorvsc.inf</c>
<c>driver_wsynth3dvsc.inf</c>
<c>driver_wudfusbcciddriver.inf</c>
<c>driver_wvmbushid.inf</c>
<c>driver_wvmbusvideo.inf</c>
<c>driver_wvmgid.inf</c>
<c>driver_wvmic.inf</c>
<c>driver_wvmic_ext.inf</c>
<c>driver_wvpci.inf</c>
<c>driver_xboxgipsynthetic.inf</c>
<c>driver_xusb22.inf</c>
<c>E2A4F912-2574-4A75-9BB0-0D023378592B 'App Resolver'</c>
<c>edgeupdate 'Microsoft Edge Update'</c>
<c>embeddedmode 'Embedded Mode'</c>
<c>enterpriseclientsync 'Work Folders Client'</c>
<c>exchangeactivesync 'Exchange ActiveSync (EAS)'</c>
<c>F46D4000-FD22-4DB4-AC8E-4E1DDDE828FE 'Add Folder Suggestions dialog'</c>
<c>flashactivex 'Adobe Flash for Internet Explorer'</c>
<c>flashactivex32 'Adobe Flash for Internet Explorer - 32 bit'</c>
<c>folderredirection 'Folder Redirection'</c>
<c>font_arialblack 'Arial Black'</c>
<c>font_bahnschrift 'Bahnschrift'</c>
<c>font_cambria 'Cambria'</c>
<c>font_cambria_regular 'Cambria &amp; Cambria Math'</c>
<c>font_candara 'Candara'</c>
<c>font_comicsansms 'ComicSansMS'</c>
<c>font_constantia 'Constantia'</c>
<c>font_corbel 'Corbel'</c>
<c>font_courier 'Courier'</c>
<c>font_ebrima 'Ebrima'</c>
<c>font_ebrimabold 'Ebrima Bold'</c>
<c>font_franklingothic 'FranklinGothic'</c>
<c>font_gabriola 'Gabriola'</c>
<c>font_gadugi 'Gadugi'</c>
<c>font_gadugibold 'Gadugi Bold'</c>
<c>font_georgia 'Georgia'</c>
<c>font_holomd2 'Holo MDL2 Assets'</c>
<c>font_impact 'Impact'</c>
<c>font_inkfree 'Ink Free'</c>
<c>font_javanesetext 'Javanese Text'</c>
<c>font_leelawadeeui 'LeelawadeeUI'</c>
<c>font_leelawadeeui_regular 'Leelawadee UI'</c>
<c>font_lucidasans 'Lucida Sans Unicode'</c>
<c>font_malgungothicbold 'Malgun Gothic Bold'</c>
<c>font_malgungothicsemilight 'Malgun Gothic SemiLight'</c>
<c>font_microsofthimalaya 'Microsoft Himalaya'</c>
<c>font_microsoftjhenghei 'Microsoft JhengHei &amp; Microsoft JhengHei UI'</c>
<c>font_microsoftjhengheibold 'Microsoft JhengHei Bold &amp; Microsoft JhengHei UI Bold'</c>
<c>font_microsoftjhengheilight 'Microsoft JhengHei Light &amp; Microsoft JhengHei UI Light'</c>
<c>font_microsoftyahei 'Microsoft YaHei &amp; Microsoft YaHei UI'</c>
<c>font_microsoftyaheibold 'Microsoft YaHei Bold &amp; Microsoft YaHei UI Bold'</c>
<c>font_microsoftyaheilight 'Microsoft YaHei Light &amp; Microsoft YaHei UI Light'</c>
<c>font_mingliub 'MingLiU-ExtB &amp; PMingLiU-ExtB &amp; MingLiU_HKSCS-ExtB'</c>
<c>font_mongolianbaiti 'Mongolian Baiti'</c>
<c>font_msgothic 'MS Gothic &amp; MS UI Gothic &amp; MS PGothic'</c>
<c>font_mvboli 'MV Boli'</c>
<c>font_myanmartext 'Myanmar Text'</c>
<c>font_myanmartextbold 'Myanmar Text Bold'</c>
<c>font_newtailue 'Microsoft New Tai Lue'</c>
<c>font_newtailuebold 'Microsoft New Tai Lue Bold'</c>
<c>font_nirmalaui 'NirmalaUI'</c>
<c>font_nirmalaui_regular 'Nirmala UI'</c>
<c>font_palatinolinotype 'PalatinoLinotype'</c>
<c>font_phagspa 'Microsoft PhagsPa'</c>
<c>font_phagspabold 'Microsoft PhagsPa Bold'</c>
<c>font_segoeprint 'Segoe Print'</c>
<c>font_segoeprintbold 'Segoe Print Bold'</c>
<c>font_segoescript 'SegoeScript'</c>
<c>font_segoeui_italicssupplement 'SegoeUI ItalicsSupplement'</c>
<c>font_simsun 'SimSun &amp; NSimSun'</c>
<c>font_simsunb 'SimSun-ExtB'</c>
<c>font_sitka 'Sitka'</c>
<c>font_small 'Small'</c>
<c>font_sylfaen 'Sylfaen'</c>
<c>font_taile 'Microsoft Tai Le'</c>
<c>font_tailebold 'Microsoft Tai Le Bold'</c>
<c>font_trebuchetms 'TrebuchetMS'</c>
<c>font_vector 'Vector'</c>
<c>font_verdana 'Verdana'</c>
<c>font_yibaiti 'Microsoft Yi Baiti'</c>
<c>font_yugothic 'Yu Gothic Regular &amp; Yu Gothic UI Semilight'</c>
<c>font_yugothicbold 'Yu Gothic Bold &amp; Yu Gothic UI Semibold &amp; Yu Gothic UI Bold'</c>
<c>font_yugothiclight 'Yu Gothic Light &amp; Yu Gothic UI Light'</c>
<c>font_yugothicmedium 'Yu Gothic Medium &amp; Yu Gothic UI Regular'</c>
<c>gameexplorer 'Game Explorer'</c>
<c>hwsupport_fax 'Fax'</c>
<c>hwsupport_floppy 'Floppy disk'</c>
<c>hwsupport_infrared 'Infrared devices'</c>
<c>hwsupport_modemsettings 'Shared modem settings (mdmgl*.inf)'</c>
<c>hwsupport_scanner 'Scanner'</c>
<c>hwsupport_smartcard 'Smartcard'</c>
<c>hwsupport_telephony 'Telephony'</c>
<c>hypervguest 'Hyper-V Integration Services'</c>
<c>ias 'Internet Authentication Service (IAS)'</c>
<c>iis 'Internet Information Server (IIS)'</c>
<c>inputswitchtoasthandler 'Input Switch Toast Handler'</c>
<c>insiderhub 'Windows Insider Program'</c>
<c>ipt 'Identity Protection Technology (Intel IPT)'</c>
<c>ipxlatcfg 'IP Translation Configuration Service'</c>
<c>iscsi 'iSCSI Initiator'</c>
<c>isoburn 'Windows Disc Image Burning Tool'</c>
<c>kl-00000401 'Arabic (101)'</c>
<c>kl-00000402 'Bulgarian (Typewriter)'</c>
<c>kl-00000404 'Chinese (Traditional) - US'</c>
<c>kl-00000405 'Czech'</c>
<c>kl-00000406 'Danish'</c>
<c>kl-00000408 'Greek'</c>
<c>kl-0000040a 'Spanish'</c>
<c>kl-0000040b 'Finnish'</c>
<c>kl-0000040c 'French'</c>
<c>kl-0000040d 'Hebrew'</c>
<c>kl-0000040e 'Hungarian'</c>
<c>kl-0000040f 'Icelandic'</c>
<c>kl-00000410 'Italian'</c>
<c>kl-00000411 'Japanese'</c>
<c>kl-00000412 'Korean'</c>
<c>kl-00000413 'Dutch'</c>
<c>kl-00000414 'Norwegian'</c>
<c>kl-00000415 'Polish (Programmers)'</c>
<c>kl-00000416 'Portuguese (Brazil ABNT)'</c>
<c>kl-00000418 'Romanian (Legacy)'</c>
<c>kl-00000419 'Russian'</c>
<c>kl-0000041a 'Standard'</c>
<c>kl-0000041b 'Slovak'</c>
<c>kl-0000041c 'Albanian'</c>
<c>kl-0000041d 'Swedish'</c>
<c>kl-0000041e 'Thai Kedmanee'</c>
<c>kl-0000041f 'Turkish Q'</c>
<c>kl-00000420 'Urdu'</c>
<c>kl-00000422 'Ukrainian'</c>
<c>kl-00000423 'Belarusian'</c>
<c>kl-00000424 'Slovenian'</c>
<c>kl-00000425 'Estonian'</c>
<c>kl-00000426 'Latvian'</c>
<c>kl-00000427 'Lithuanian IBM'</c>
<c>kl-00000428 'Tajik'</c>
<c>kl-00000429 'Persian'</c>
<c>kl-0000042a 'Vietnamese'</c>
<c>kl-0000042b 'Armenian Eastern (Legacy)'</c>
<c>kl-0000042c 'Azerbaijani Latin'</c>
<c>kl-0000042e 'Sorbian Standard (Legacy)'</c>
<c>kl-0000042f 'Macedonian (North Macedonia)'</c>
<c>kl-00000432 'Setswana'</c>
<c>kl-00000437 'Georgian (Legacy)'</c>
<c>kl-00000438 'Faeroese'</c>
<c>kl-00000439 'Devanagari - INSCRIPT'</c>
<c>kl-0000043a 'Maltese 47-Key'</c>
<c>kl-0000043b 'Norwegian with Sami'</c>
<c>kl-0000043f 'Kazakh'</c>
<c>kl-00000440 'Kyrgyz Cyrillic'</c>
<c>kl-00000442 'Turkmen'</c>
<c>kl-00000444 'Tatar (Legacy)'</c>
<c>kl-00000445 'Bangla'</c>
<c>kl-00000446 'Punjabi'</c>
<c>kl-00000447 'Gujarati'</c>
<c>kl-00000448 'Odia'</c>
<c>kl-00000449 'Tamil'</c>
<c>kl-0000044a 'Telugu'</c>
<c>kl-0000044b 'Kannada'</c>
<c>kl-0000044c 'Malayalam'</c>
<c>kl-0000044d 'Assamese - INSCRIPT'</c>
<c>kl-0000044e 'Marathi'</c>
<c>kl-00000450 'Mongolian Cyrillic'</c>
<c>kl-00000451 'Tibetan (PRC)'</c>
<c>kl-00000452 'United Kingdom Extended'</c>
<c>kl-00000453 'Khmer'</c>
<c>kl-00000454 'Lao'</c>
<c>kl-0000045a 'Syriac'</c>
<c>kl-0000045b 'Sinhala'</c>
<c>kl-0000045c 'Cherokee Nation'</c>
<c>kl-00000461 'Nepali'</c>
<c>kl-00000463 'Pashto (Afghanistan)'</c>
<c>kl-00000465 'Divehi Phonetic'</c>
<c>kl-00000468 'Hausa'</c>
<c>kl-0000046a 'Yoruba'</c>
<c>kl-0000046c 'Sesotho sa Leboa'</c>
<c>kl-0000046d 'Bashkir'</c>
<c>kl-0000046e 'Luxembourgish'</c>
<c>kl-0000046f 'Greenlandic'</c>
<c>kl-00000470 'Igbo'</c>
<c>kl-00000474 'Guarani'</c>
<c>kl-00000475 'Hawaiian'</c>
<c>kl-00000480 'Uyghur (Legacy)'</c>
<c>kl-00000481 'Maori'</c>
<c>kl-00000485 'Sakha'</c>
<c>kl-00000488 'Wolof'</c>
<c>kl-00000492 'Central Kurdish'</c>
<c>kl-00000804 'Chinese (Simplified) - US'</c>
<c>kl-00000807 'Swiss German'</c>
<c>kl-00000809 'United Kingdom'</c>
<c>kl-0000080a 'Latin American'</c>
<c>kl-0000080c 'Belgian French'</c>
<c>kl-00000813 'Belgian (Period)'</c>
<c>kl-00000816 'Portuguese'</c>
<c>kl-0000081a 'Serbian (Latin)'</c>
<c>kl-0000082c 'Azerbaijani Cyrillic'</c>
<c>kl-0000083b 'Swedish with Sami'</c>
<c>kl-00000843 'Uzbek Cyrillic'</c>
<c>kl-00000850 'Mongolian (Mongolian Script)'</c>
<c>kl-0000085d 'Inuktitut - Latin'</c>
<c>kl-0000085f 'Central Atlas Tamazight'</c>
<c>kl-00000c04 'Chinese (Traditional, Hong Kong S.A.R.) - US'</c>
<c>kl-00000c0c 'Canadian French (Legacy)'</c>
<c>kl-00000c1a 'Serbian (Cyrillic)'</c>
<c>kl-00000c51 'Dzongkha'</c>
<c>kl-00001004 'Chinese (Simplified, Singapore) - US'</c>
<c>kl-00001009 'Canadian French'</c>
<c>kl-0000100c 'Swiss French'</c>
<c>kl-0000105f 'Tifinagh (Basic)'</c>
<c>kl-00001404 'Chinese (Traditional, Macao S.A.R.) - US'</c>
<c>kl-00001809 'Irish'</c>
<c>kl-0000201a 'Bosnian (Cyrillic)'</c>
<c>kl-00004009 'English (India)'</c>
<c>kl-00010401 'Arabic (102)'</c>
<c>kl-00010402 'Bulgarian (Latin)'</c>
<c>kl-00010405 'Czech (QWERTY)'</c>
<c>kl-00010407 'German (IBM)'</c>
<c>kl-00010408 'Greek (220)'</c>
<c>kl-00010409 'United States-Dvorak'</c>
<c>kl-0001040a 'Spanish Variation'</c>
<c>kl-0001040e 'Hungarian 101-key'</c>
<c>kl-00010410 'Italian (142)'</c>
<c>kl-00010415 'Polish (214)'</c>
<c>kl-00010416 'Portuguese (Brazil ABNT2)'</c>
<c>kl-00010418 'Romanian (Standard)'</c>
<c>kl-00010419 'Russian (Typewriter)'</c>
<c>kl-0001041b 'Slovak (QWERTY)'</c>
<c>kl-0001041e 'Thai Pattachote'</c>
<c>kl-0001041f 'Turkish F'</c>
<c>kl-00010426 'Latvian (QWERTY)'</c>
<c>kl-00010427 'Lithuanian'</c>
<c>kl-0001042b 'Armenian Western (Legacy)'</c>
<c>kl-0001042c 'Azerbaijani (Standard)'</c>
<c>kl-0001042e 'Sorbian Extended'</c>
<c>kl-0001042f 'Macedonian (North Macedonia) - Standard'</c>
<c>kl-00010437 'Georgian (QWERTY)'</c>
<c>kl-00010439 'Hindi Traditional'</c>
<c>kl-0001043a 'Maltese 48-Key'</c>
<c>kl-0001043b 'Sami Extended Norway'</c>
<c>kl-00010444 'Tatar'</c>
<c>kl-00010445 'Bangla - INSCRIPT (Legacy)'</c>
<c>kl-00010451 'Tibetan (PRC) - Updated'</c>
<c>kl-00010453 'Khmer (NIDA)'</c>
<c>kl-0001045a 'Syriac Phonetic'</c>
<c>kl-0001045b 'Sinhala - Wij 9'</c>
<c>kl-0001045c 'Cherokee Phonetic'</c>
<c>kl-0001045d 'Inuktitut - Naqittaut'</c>
<c>kl-00010465 'Divehi Typewriter'</c>
<c>kl-00010480 'Uyghur'</c>
<c>kl-0001080c 'Belgian (Comma)'</c>
<c>kl-0001083b 'Finnish with Sami'</c>
<c>kl-00010850 'Traditional Mongolian (Standard)'</c>
<c>kl-00010c00 'Myanmar (Phonetic order)'</c>
<c>kl-00011009 'Canadian Multilingual Standard'</c>
<c>kl-0001105f 'Tifinagh (Extended)'</c>
<c>kl-00011809 'Scottish Gaelic'</c>
<c>kl-00020401 'Arabic (102) AZERTY'</c>
<c>kl-00020402 'Bulgarian (Phonetic)'</c>
<c>kl-00020405 'Czech Programmers'</c>
<c>kl-00020408 'Greek (319)'</c>
<c>kl-00020409 'United States-International'</c>
<c>kl-0002040d 'Hebrew (Standard)'</c>
<c>kl-00020418 'Romanian (Programmers)'</c>
<c>kl-00020419 'Russian - Mnemonic'</c>
<c>kl-0002041e 'Thai Kedmanee (non-ShiftLock)'</c>
<c>kl-00020422 'Ukrainian (Enhanced)'</c>
<c>kl-00020426 'Latvian (Standard)'</c>
<c>kl-00020427 'Lithuanian Standard'</c>
<c>kl-0002042b 'Armenian Phonetic'</c>
<c>kl-0002042e 'Sorbian Standard'</c>
<c>kl-00020437 'Georgian (Ergonomic)'</c>
<c>kl-00020445 'Bangla - INSCRIPT'</c>
<c>kl-00020449 'Tamil 99'</c>
<c>kl-0002083b 'Sami Extended Finland-Sweden'</c>
<c>kl-00020c00 'New Tai Lue'</c>
<c>kl-00030402 'Bulgarian'</c>
<c>kl-00030408 'Greek (220) Latin'</c>
<c>kl-0003041e 'Thai Pattachote (non-ShiftLock)'</c>
<c>kl-0003042b 'Armenian Typewriter'</c>
<c>kl-00030437 'Georgian (MES)'</c>
<c>kl-00030c00 'Tai Le'</c>
<c>kl-00040402 'Bulgarian (Phonetic Traditional)'</c>
<c>kl-00040408 'Greek (319) Latin'</c>
<c>kl-00040437 'Georgian (Old Alphabets)'</c>
<c>kl-00040c00 'Ogham'</c>
<c>kl-00050408 'Greek Latin'</c>
<c>kl-00050409 'US English Table for IBM Arabic 238_L'</c>
<c>kl-00050429 'Persian (Standard)'</c>
<c>kl-00060408 'Greek Polytonic'</c>
<c>kl-00070c00 'Lisu (Basic)'</c>
<c>kl-00080c00 'Lisu (Standard)'</c>
<c>kl-00090c00 'N’Ko'</c>
<c>kl-000a0c00 'Phags-pa'</c>
<c>kl-000b0c00 'Buginese'</c>
<c>kl-000c0c00 'Gothic'</c>
<c>kl-000d0c00 'Ol Chiki'</c>
<c>kl-000e0c00 'Osmanya'</c>
<c>kl-000f0c00 'Old Italic'</c>
<c>kl-00100c00 'Sora'</c>
<c>kl-00110c00 'Javanese'</c>
<c>kl-00120c00 'Futhark'</c>
<c>kl-00130c00 'Myanmar (Visual order)'</c>
<c>kl-00140c00 'ADLaM'</c>
<c>kl-00150c00 'Osage'</c>
<c>langarabic 'Arabic'</c>
<c>langbulgarian 'Bulgarian'</c>
<c>langchineses 'Chinese Simplified'</c>
<c>langchineset 'Chinese Traditional'</c>
<c>langcroatian 'Croatian'</c>
<c>langczech 'Czech'</c>
<c>langdanish 'Danish'</c>
<c>langdutch 'Dutch'</c>
<c>langenglishgb 'English (GB)'</c>
<c>langestonian 'Estonian'</c>
<c>langfinnish 'Finnish'</c>
<c>langfrench 'French'</c>
<c>langfrenchcanadian 'French (Canadian)'</c>
<c>langgreek 'Greek'</c>
<c>langhebrew 'Hebrew'</c>
<c>langhungarian 'Hungarian'</c>
<c>langime 'Input Method Editor (IME)'</c>
<c>langimejp 'Japanese (IME)'</c>
<c>langimeko 'Korean (IME)'</c>
<c>langimetc 'Chinese Traditional (IME)'</c>
<c>langitalian 'Italian'</c>
<c>langjapanese 'Japanese'</c>
<c>langkorean 'Korean'</c>
<c>langlatvian 'Latvian'</c>
<c>langlithuanian 'Lithuanian'</c>
<c>langnorwegian 'Norwegian'</c>
<c>langpolish 'Polish'</c>
<c>langportuguesebr 'Portuguese (Brazilian)'</c>
<c>langportuguesept 'Portuguese'</c>
<c>langromanian 'Romanian'</c>
<c>langrussian 'Russian'</c>
<c>langserbian 'Serbian'</c>
<c>langslovak 'Slovak'</c>
<c>langslovenian 'Slovenian'</c>
<c>langspanish 'Spanish'</c>
<c>langswedish 'Swedish'</c>
<c>langtamil 'Tamil'</c>
<c>langthai 'Thai'</c>
<c>langturkish 'Turkish'</c>
<c>langukrainian 'Ukrainian'</c>
<c>lockscreens 'Lock Screen backgrounds'</c>
<c>lpasvc 'Local Profile Assistant Service'</c>
<c>mail 'Windows Mail'</c>
<c>mailcommdll 'Windows Mail Communications Library'</c>
<c>mapcontrol 'Map Control'</c>
<c>messagingsvc 'Messaging Service'</c>
<c>Microsoft.549981C3F5F10 'Cortana'</c>
<c>Microsoft.Advertising.Xaml 'Microsoft Advertising SDK for XAML'</c>
<c>Microsoft.AsyncTextService 'AsyncTextService'</c>
<c>Microsoft.BingWeather 'MSN Weather'</c>
<c>Microsoft.BioEnrollment 'Windows Hello Setup'</c>
<c>Microsoft.CredDialogHost 'Credential Dialog'</c>
<c>Microsoft.ECApp 'Eye Control'</c>
<c>Microsoft.GetHelp 'Get Help'</c>
<c>Microsoft.Getstarted 'Tips (Get Started)'</c>
<c>Microsoft.HEIFImageExtension 'HEIF-Bilderweiterungen'</c>
<c>Microsoft.Microsoft3DViewer '3D-Viewer'</c>
<c>Microsoft.MicrosoftEdge.Stable 'Microsoft Edge (Chromium)'</c>
<c>Microsoft.MicrosoftEdge 'Microsoft Edge (Legacy)'</c>
<c>Microsoft.MicrosoftEdgeDevToolsClient 'Microsoft Edge DevTools Client'</c>
<c>Microsoft.MicrosoftOfficeHub 'Office'</c>
<c>Microsoft.MicrosoftSolitaireCollection 'Microsoft Solitaire Collection'</c>
<c>Microsoft.MicrosoftStickyNotes 'Microsoft Sticky Notes'</c>
<c>Microsoft.MixedReality.Portal 'Mixed Reality Portal'</c>
<c>Microsoft.MSPaint 'Paint 3D'</c>
<c>Microsoft.Office.OneNote 'OneNote'</c>
<c>Microsoft.People 'Microsoft People'</c>
<c>Microsoft.ScreenSketch 'Snip &amp; Sketch'</c>
<c>Microsoft.Services.Store.Engagement 'Microsoft Engagement Framework'</c>
<c>Microsoft.SkypeApp 'Skype'</c>
<c>Microsoft.StorePurchaseApp 'Store Experience Host'</c>
<c>Microsoft.VP9VideoExtensions 'VP9-Videoerweiterungen'</c>
<c>Microsoft.Wallet 'Microsoft Pay'</c>
<c>Microsoft.WebMediaExtensions 'Web Media Extensions'</c>
<c>Microsoft.WebpImageExtension 'Webp-Bilderweiterungen'</c>
<c>Microsoft.Win32WebViewHost 'Desktop App Web Viewer'</c>
<c>Microsoft.Windows.Apprep.ChxApp 'SmartScreen'</c>
<c>Microsoft.Windows.AssignedAccessLockApp 'Assigned Access Lock app'</c>
<c>Microsoft.Windows.CallingShellApp 'Call'</c>
<c>Microsoft.Windows.CapturePicker 'Capture Picker'</c>
<c>Microsoft.Windows.ContentDeliveryManager 'Content Delivery Manager'</c>
<c>Microsoft.Windows.NarratorQuickStart 'Narrator'</c>
<c>Microsoft.Windows.OOBENetworkCaptivePortal 'Captive Portal Flow'</c>
<c>Microsoft.Windows.ParentalControls 'Microsoft family features'</c>
<c>Microsoft.Windows.Photos 'Microsoft Photos'</c>
<c>Microsoft.Windows.SecureAssessmentBrowser 'PrĂĽfung'</c>
<c>Microsoft.WindowsAlarms 'Windows Alarms &amp; Clock'</c>
<c>Microsoft.WindowsCalculator 'Windows Calculator'</c>
<c>Microsoft.WindowsCamera 'Windows Camera'</c>
<c>microsoft.windowscommunicationsapps 'Mail and Calendar'</c>
<c>Microsoft.WindowsFeedbackHub 'Feedback Hub'</c>
<c>Microsoft.WindowsMaps 'Windows Maps'</c>
<c>Microsoft.WindowsSoundRecorder 'Windows Voice Recorder'</c>
<c>Microsoft.Xbox.TCUI 'Xbox TCUI'</c>
<c>Microsoft.XboxApp 'Xbox'</c>
<c>Microsoft.XboxGameCallableUI 'Xbox Game UI'</c>
<c>Microsoft.XboxGameOverlay 'Xbox Game Bar Plugin'</c>
<c>Microsoft.XboxGamingOverlay 'Xbox Game Bar'</c>
<c>Microsoft.XboxSpeechToTextOverlay 'Xbox Game Speech Window'</c>
<c>Microsoft.YourPhone 'Your Phone'</c>
<c>Microsoft.ZuneMusic 'Groove Music'</c>
<c>Microsoft.ZuneVideo 'Movies &amp; TV'</c>
<c>midi 'Microsoft GS Wavetable SW Synth (MIDI)'</c>
<c>mixedreality 'Windows Mixed Reality'</c>
<c>mmga 'MMGA MAPI'</c>
<c>mobilepc</c>
<c>mobilepc_location 'Location notifications'</c>
<c>mobilepc_networkprojection 'Network Projection'</c>
<c>mobilepc_sensors 'Sensors'</c>
<c>msmq 'Microsoft Message Queue (MSMQ)'</c>
<c>netlogon</c>
<c>netqos 'Quality of Service Packet Scheduler (QoS)'</c>
<c>nettopology 'Link-Layer Topology Discovery protocol (LLTD)'</c>
<c>nfc 'Near Field Communication (NFC)'</c>
<c>nfsclient 'NFS Administrative Tools'</c>
<c>offlinefiles 'Offline Files'</c>
<c>onedrive</c>
<c>openssh</c>
<c>otherthemes 'Windows Personalization themes'</c>
<c>payments</c>
<c>pdfreader 'Windows Reader (PDF)'</c>
<c>peertopeer 'Peer Networking'</c>
<c>phonesvc 'Phone Service'</c>
<c>photoviewer 'Photo Viewer'</c>
<c>photoviewer32 'Photo Viewer - 32 bit'</c>
<c>picturepassword 'Picture password'</c>
<c>pos 'Point of Service (POS)'</c>
<c>pushtoinstall 'Windows PushToInstall Service'</c>
<c>rasauto 'Remote Access Auto Connection Manager'</c>
<c>rascmd 'Remote Access Service Client Tools'</c>
<c>rasmans 'Remote Access Connection Manager'</c>
<c>rdc 'Remote Differential Compression (RDC)'</c>
<c>rdpserver 'Remote Desktop Server'</c>
<c>rdpserverlic 'Remote Desktop Licensing'</c>
<c>remoteaccessservice 'Routing and Remote Access Service'</c>
<c>remoteaccesssupport 'Routing and Remote Access support'</c>
<c>remoteassistance 'Remote Assistance'</c>
<c>remotefx</c>
<c>remoteportredirector 'Remote Desktop Services Port Redirector'</c>
<c>remoteregistry 'Remote Registry'</c>
<c>retaildemo 'Retail Demo Content'</c>
<c>sendmail 'Send To Mail and Desktop'</c>
<c>settingsync 'Setting Sync'</c>
<c>sharedaccess 'Internet Connection Sharing (ICS)'</c>
<c>sharedpc 'Shared PC mode'</c>
<c>sharehost32 'Share Host - 32 bit'</c>
<c>sihclient 'Server-Initiated Healing Client'</c>
<c>simpletcp 'Simple TCP/IP services'</c>
<c>skypeortc 'Skype ORTC'</c>
<c>smsrouter 'SMS Router Service'</c>
<c>soundsdefault 'Sounds (Default)'</c>
<c>soundthemes 'Sound Themes'</c>
<c>sourcessxsdir 'Manual feature repository'</c>
<c>speechapi 'Speech API'</c>
<c>speechcommon 'Speech Recognition'</c>
<c>speechtts 'Speech TTS'</c>
<c>staticfontcache 'Static Font Cache'</c>
<c>stepsrecorder 'Steps Recorder'</c>
<c>supportdir 'Support directory'</c>
<c>synccenter 'Sync Center'</c>
<c>tabletextservice 'Table Text Service'</c>
<c>telnetclient 'Telnet Client'</c>
<c>tempcache 'Cache and temp files'</c>
<c>tftpclient 'TFTP client'</c>
<c>trkwks 'Distributed Link Tracking Client'</c>
<c>unp 'Universal Notification Platform (UNP)'</c>
<c>userdeviceregistration 'User Device Registration'</c>
<c>vpn 'Virtual Private Network (VPN) support'</c>
<c>wallet 'Wallet Service'</c>
<c>wallpapers 'Wallpapers (Themes)'</c>
<c>webcamexperience 'Webcam Experience'</c>
<c>winai 'Windows AI Machine Learning'</c>
<c>Windows.CBSPreview 'Windows Barcode Preview'</c>
<c>winocr 'Windows TIFF IFilter (OCR)'</c>
<c>wwanautoconfig 'WWAN AutoConfig'</c>
<c>xbox 'Xbox - Core'</c>
</RemoveComponents>
<Compatibility protectHidden="true">
<ComponentFeatures>
<Feature enabled="no">AppGuard</Feature>
<Feature enabled="no">YubiKey</Feature>
<Feature enabled="no">Bluetooth</Feature>
<Feature enabled="no">CapFrameX</Feature>
<Feature enabled="no">Discord</Feature>
<Feature enabled="no">FileSharing</Feature>
<Feature enabled="no">Hyper-V</Feature>
<Feature enabled="no">iCloud</Feature>
<Feature enabled="no">ManualSetup</Feature>
<Feature enabled="no">OfficeSupport</Feature>
<Feature enabled="no">AppxSupport</Feature>
<Feature enabled="no">Netflix</Feature>
<Feature enabled="no">NetworkDiscovery</Feature>
<Feature enabled="no">NightLight</Feature>
<Feature enabled="no">NvidiaSetup</Feature>
<Feature enabled="no">OOBE</Feature>
<Feature enabled="no">Printing</Feature>
<Feature enabled="no">Recommended-All</Feature>
<Feature enabled="no">SamsungSwitch</Feature>
<Feature enabled="no">Scanning</Feature>
<Feature enabled="no">ServicingStack</Feature>
<Feature enabled="no">ShellSearchSupport</Feature>
<Feature enabled="no">Spotify</Feature>
<Feature enabled="no">SFC</Feature>
<Feature enabled="no">DefaultFonts</Feature>
<Feature enabled="no">SafeMode</Feature>
<Feature enabled="no">TeamViewer</Feature>
<Feature enabled="no">Recommended-Tablet</Feature>
<Feature enabled="no">USBModem</Feature>
<Feature enabled="no">USB</Feature>
<Feature enabled="no">VideoPlayback</Feature>
<Feature enabled="no">VPN</Feature>
<Feature enabled="no">VisualStudio</Feature>
<Feature enabled="no">VSS</Feature>
<Feature enabled="no">ActivationKMS</Feature>
<Feature enabled="no">Activation</Feature>
<Feature enabled="no">WindowsStore</Feature>
<Feature enabled="no">WindowsUpdate</Feature>
<Feature enabled="no">WLAN</Feature>
</ComponentFeatures>
<MachineDrivers>
<Machine enabled="no">HostMachine</Machine>
<Machine enabled="no">Hyper-V VM</Machine>
<Machine enabled="no">Parallels VM</Machine>
<Machine enabled="no">Virtual Box VM</Machine>
<Machine enabled="no">VMware VM</Machine>
</MachineDrivers>
</Compatibility>
<Features></Features>
<Packages></Packages>
<Commands>
<PostUpdates>
<!--<Command>cmd /c echo Example from [MOUNTDIR]\Windows &amp; pause</Command>-->
<!--<Command>dism /image:[MOUNTDIR] /get-intl</Command>-->
</PostUpdates>
</Commands>
<Drivers showHidden="true"></Drivers>
<Unattended mode="0">
<OEMSetupComplete>false</OEMSetupComplete>
<AnswerFileLocationPanther>false</AnswerFileLocationPanther>
<AnswerFileLocationBoot>false</AnswerFileLocationBoot>
<SaveBothArch>false</SaveBothArch>
<EditionPrompt>false</EditionPrompt>
<settings pass="windowsPE">
<component name="Microsoft-Windows-Setup">
<DynamicUpdate>
<WillShowUI>OnError</WillShowUI>
</DynamicUpdate>
<ImageInstall>
<OSImage>
<WillShowUI>OnError</WillShowUI>
<InstallFrom>
<MetaData>
<Key>/IMAGE/INDEX</Key>
<Value>1</Value>
</MetaData>
</InstallFrom>
</OSImage>
</ImageInstall>
<UserData>
<ProductKey>
<Key></Key>
</ProductKey>
</UserData>
</component>
</settings>
</Unattended>
<Tweaks>
<Settings></Settings>
<Services></Services>
<ExtraServices></ExtraServices>
<ScheduledTasks></ScheduledTasks>
</Tweaks>
<ApplyOptions>
<ImageTasks>
<Task>imageSaveRebuild</Task>
<Task>imageFormatWim</Task>
</ImageTasks>
<AutoIsoFile>NTLite.iso</AutoIsoFile>
<AutoIsoLabel>NTLite</AutoIsoLabel>
<AutoSplitSize>4000</AutoSplitSize>
<CleanHotfixedLeftovers>0</CleanHotfixedLeftovers>
<OptimizeAppX>false</OptimizeAppX>
<ReuseDriverCache>false</ReuseDriverCache>
</ApplyOptions>
<Execution>
<Remove></Remove>
<Change></Change>
<Add></Add>
</Execution>
<Registry></Registry>
</Preset>

View File

@ -0,0 +1,833 @@
<?xml version="1.0" encoding="utf-8"?>
<Preset xmlns="urn:schemas-nliteos-com:pn.v1">
<Date>02/05/2023 21:51:19</Date>
<AppInfo>
<Version>2.3.9.9039</Version>
<Licensed>Yes</Licensed>
<Protections>Yes</Protections>
<Host>Windows 10 Pro (20H2) x64 - 10.0.19042.1706 (en-US)</Host>
</AppInfo>
<ImageInfo>
<Version mode="offline">Windows 10 Professional (20H2) x64 - 10.0.19042.508 (en-US)</Version>
<GUID>{5EC0F9E5-D253-44DE-A996-2A717E2BF016}</GUID>
</ImageInfo>
<RemoveComponents AppRemovalMode="DISM">
<c>aarsvc 'Agent Activation Runtime'</c>
<c>accessibility_narrator 'Narrator'</c>
<c>activedirectory 'Active Directory'</c>
<c>adamclient 'Active Directory Lightweight Directory Services (AD LDS)'</c>
<c>alg 'Application Layer Gateway Service'</c>
<c>alljoyn 'AllJoyn Router Service'</c>
<c>appv 'Application Virtualization (App-V)'</c>
<c>assignedaccess 'Assigned Access'</c>
<c>azuread 'Azure Active Directory'</c>
<c>backgroundtransfer 'Networking Background Transfer'</c>
<c>branchcacheclient 'BranchCache Client'</c>
<c>ceip 'CEIP (SQM)'</c>
<c>cloudfiles 'Cloud Files API'</c>
<c>datacenterbridging 'Data Center Bridging (DCB)'</c>
<c>desktopactivitymoderator 'Desktop Activity Moderator (DAM)'</c>
<c>desktopimgdownldr 'Desktop image downloader'</c>
<c>diskquota 'Disk Quota'</c>
<c>diskquota32 'Disk Quota - 32 bit'</c>
<c>driver_61883.inf</c>
<c>driver_c_61883.inf</c>
<c>driver_c_barcodescanner.inf</c>
<c>driver_c_biometric.inf</c>
<c>driver_c_cashdrawer.inf</c>
<c>driver_c_holographic.inf</c>
<c>driver_c_infrared.inf</c>
<c>driver_c_linedisplay.inf</c>
<c>driver_c_magneticstripereader.inf</c>
<c>driver_c_mcx.inf</c>
<c>driver_c_mediumchanger.inf</c>
<c>driver_c_pcmcia.inf</c>
<c>driver_c_receiptprinter.inf</c>
<c>driver_c_smartcardreader.inf</c>
<c>driver_c_tapedrive.inf</c>
<c>driver_cht4vx64.inf</c>
<c>driver_dc1-controller.inf</c>
<c>driver_fusionv2.inf</c>
<c>driver_hidir.inf</c>
<c>driver_hidirkbd.inf</c>
<c>driver_hidscanner.inf</c>
<c>driver_idtsec.inf</c>
<c>driver_iscsi.inf</c>
<c>driver_mchgr.inf</c>
<c>driver_mdm3com.inf</c>
<c>driver_mdm5674a.inf</c>
<c>driver_mdmadc.inf</c>
<c>driver_mdmagm64.inf</c>
<c>driver_mdmags64.inf</c>
<c>driver_mdmairte.inf</c>
<c>driver_mdmaiwa.inf</c>
<c>driver_mdmaiwa3.inf</c>
<c>driver_mdmaiwa4.inf</c>
<c>driver_mdmaiwa5.inf</c>
<c>driver_mdmaiwat.inf</c>
<c>driver_mdmar1.inf</c>
<c>driver_mdmarch.inf</c>
<c>driver_mdmarn.inf</c>
<c>driver_mdmati.inf</c>
<c>driver_mdmatm2k.inf</c>
<c>driver_mdmaus.inf</c>
<c>driver_mdmboca.inf</c>
<c>driver_mdmbsb.inf</c>
<c>driver_mdmbug3.inf</c>
<c>driver_mdmbw561.inf</c>
<c>driver_mdmc26a.inf</c>
<c>driver_mdmcdp.inf</c>
<c>driver_mdmcm28.inf</c>
<c>driver_mdmcodex.inf</c>
<c>driver_mdmcom1.inf</c>
<c>driver_mdmcommu.inf</c>
<c>driver_mdmcomp.inf</c>
<c>driver_mdmcpq.inf</c>
<c>driver_mdmcpq2.inf</c>
<c>driver_mdmcpv.inf</c>
<c>driver_mdmcrtix.inf</c>
<c>driver_mdmcxhv6.inf</c>
<c>driver_mdmcxpv6.inf</c>
<c>driver_mdmdcm5.inf</c>
<c>driver_mdmdcm6.inf</c>
<c>driver_mdmdf56f.inf</c>
<c>driver_mdmdgitn.inf</c>
<c>driver_mdmdp2.inf</c>
<c>driver_mdmdsi.inf</c>
<c>driver_mdmdyna.inf</c>
<c>driver_mdmeiger.inf</c>
<c>driver_mdmelsa.inf</c>
<c>driver_mdmeric.inf</c>
<c>driver_mdmeric2.inf</c>
<c>driver_mdmetech.inf</c>
<c>driver_mdmfj2.inf</c>
<c>driver_mdmgatew.inf</c>
<c>driver_mdmgcs.inf</c>
<c>driver_mdmgen.inf</c>
<c>driver_mdmgl001.inf</c>
<c>driver_mdmgl002.inf</c>
<c>driver_mdmgl003.inf</c>
<c>driver_mdmgl004.inf</c>
<c>driver_mdmgl005.inf</c>
<c>driver_mdmgl006.inf</c>
<c>driver_mdmgl007.inf</c>
<c>driver_mdmgl008.inf</c>
<c>driver_mdmgl009.inf</c>
<c>driver_mdmgl010.inf</c>
<c>driver_mdmgsm.inf</c>
<c>driver_mdmhaeu.inf</c>
<c>driver_mdmhandy.inf</c>
<c>driver_mdmhay2.inf</c>
<c>driver_mdmhayes.inf</c>
<c>driver_mdminfot.inf</c>
<c>driver_mdmiodat.inf</c>
<c>driver_mdmirmdm.inf</c>
<c>driver_mdmisdn.inf</c>
<c>driver_mdmjf56e.inf</c>
<c>driver_mdmke.inf</c>
<c>driver_mdmkortx.inf</c>
<c>driver_mdmlasat.inf</c>
<c>driver_mdmlasno.inf</c>
<c>driver_mdmlucnt.inf</c>
<c>driver_mdmmc288.inf</c>
<c>driver_mdmmcd.inf</c>
<c>driver_mdmmcom.inf</c>
<c>driver_mdmmct.inf</c>
<c>driver_mdmmega.inf</c>
<c>driver_mdmmetri.inf</c>
<c>driver_mdmmhrtz.inf</c>
<c>driver_mdmmhzel.inf</c>
<c>driver_mdmminij.inf</c>
<c>driver_mdmmod.inf</c>
<c>driver_mdmmot64.inf</c>
<c>driver_mdmmoto1.inf</c>
<c>driver_mdmmotou.inf</c>
<c>driver_mdmmts.inf</c>
<c>driver_mdmneuhs.inf</c>
<c>driver_mdmnis1u.inf</c>
<c>driver_mdmnis2u.inf</c>
<c>driver_mdmnis3t.inf</c>
<c>driver_mdmnis5t.inf</c>
<c>driver_mdmnokia.inf</c>
<c>driver_mdmnova.inf</c>
<c>driver_mdmntt1.inf</c>
<c>driver_mdmnttd2.inf</c>
<c>driver_mdmnttd6.inf</c>
<c>driver_mdmnttme.inf</c>
<c>driver_mdmnttp.inf</c>
<c>driver_mdmnttp2.inf</c>
<c>driver_mdmnttte.inf</c>
<c>driver_mdmolic.inf</c>
<c>driver_mdmomrn3.inf</c>
<c>driver_mdmoptn.inf</c>
<c>driver_mdmosi.inf</c>
<c>driver_mdmpace.inf</c>
<c>driver_mdmpenr.inf</c>
<c>driver_mdmpin.inf</c>
<c>driver_mdmpn1.inf</c>
<c>driver_mdmpp.inf</c>
<c>driver_mdmpsion.inf</c>
<c>driver_mdmracal.inf</c>
<c>driver_mdmrock.inf</c>
<c>driver_mdmrock3.inf</c>
<c>driver_mdmrock4.inf</c>
<c>driver_mdmrock5.inf</c>
<c>driver_mdmsier.inf</c>
<c>driver_mdmsii64.inf</c>
<c>driver_mdmsmart.inf</c>
<c>driver_mdmsonyu.inf</c>
<c>driver_mdmsun1.inf</c>
<c>driver_mdmsun2.inf</c>
<c>driver_mdmsupr3.inf</c>
<c>driver_mdmsupra.inf</c>
<c>driver_mdmsuprv.inf</c>
<c>driver_mdmtdk.inf</c>
<c>driver_mdmtdkj2.inf</c>
<c>driver_mdmtdkj3.inf</c>
<c>driver_mdmtdkj4.inf</c>
<c>driver_mdmtdkj5.inf</c>
<c>driver_mdmtdkj6.inf</c>
<c>driver_mdmtdkj7.inf</c>
<c>driver_mdmtexas.inf</c>
<c>driver_mdmti.inf</c>
<c>driver_mdmtkr.inf</c>
<c>driver_mdmtron.inf</c>
<c>driver_mdmusrf.inf</c>
<c>driver_mdmusrg.inf</c>
<c>driver_mdmusrgl.inf</c>
<c>driver_mdmusrk1.inf</c>
<c>driver_mdmusrsp.inf</c>
<c>driver_mdmvdot.inf</c>
<c>driver_mdmvv.inf</c>
<c>driver_mdmwhql0.inf</c>
<c>driver_mdmx5560.inf</c>
<c>driver_mdmzoom.inf</c>
<c>driver_mdmzyp.inf</c>
<c>driver_mdmzyxel.inf</c>
<c>driver_mdmzyxlg.inf</c>
<c>driver_mgtdyn.inf</c>
<c>driver_miradisp.inf</c>
<c>driver_msclmd.inf</c>
<c>driver_oposdrv.inf</c>
<c>driver_pcmcia.inf</c>
<c>driver_perceptionsimulationheadset.inf</c>
<c>driver_rdpbus.inf</c>
<c>driver_rdvgwddmdx11.inf</c>
<c>driver_remoteposdrv.inf</c>
<c>driver_sensorshidclassdriver.inf</c>
<c>driver_sensorsservicedriver.inf</c>
<c>driver_tape.inf</c>
<c>driver_termkbd.inf</c>
<c>driver_termmou.inf</c>
<c>driver_tpm.inf</c>
<c>driver_tpmvsc.inf</c>
<c>driver_ts_generic.inf</c>
<c>driver_tsgenericusbdriver.inf</c>
<c>driver_tsprint.inf</c>
<c>driver_tsusbhubfilter.inf</c>
<c>driver_usbcciddriver.inf</c>
<c>driver_usbcir.inf</c>
<c>driver_wdmvsc.inf</c>
<c>driver_wfcvsc.inf</c>
<c>driver_wgencounter.inf</c>
<c>driver_whvcrash.inf</c>
<c>driver_whyperkbd.inf</c>
<c>driver_wnetvsc.inf</c>
<c>driver_ws3cap.inf</c>
<c>driver_wstorflt.inf</c>
<c>driver_wstorvsc.inf</c>
<c>driver_wsynth3dvsc.inf</c>
<c>driver_wudfusbcciddriver.inf</c>
<c>driver_wvmbushid.inf</c>
<c>driver_wvmbusvideo.inf</c>
<c>driver_wvmgid.inf</c>
<c>driver_wvmic.inf</c>
<c>driver_wvmic_ext.inf</c>
<c>driver_wvpci.inf</c>
<c>driver_xboxgipsynthetic.inf</c>
<c>driver_xusb22.inf</c>
<c>E2A4F912-2574-4A75-9BB0-0D023378592B 'App Resolver'</c>
<c>edgeupdate 'Microsoft Edge Update'</c>
<c>embeddedmode 'Embedded Mode'</c>
<c>enterpriseclientsync 'Work Folders Client'</c>
<c>exchangeactivesync 'Exchange ActiveSync (EAS)'</c>
<c>F46D4000-FD22-4DB4-AC8E-4E1DDDE828FE 'Add Folder Suggestions dialog'</c>
<c>flashactivex 'Adobe Flash for Internet Explorer'</c>
<c>flashactivex32 'Adobe Flash for Internet Explorer - 32 bit'</c>
<c>folderredirection 'Folder Redirection'</c>
<c>font_arialblack 'Arial Black'</c>
<c>font_bahnschrift 'Bahnschrift'</c>
<c>font_cambria 'Cambria'</c>
<c>font_cambria_regular 'Cambria &amp; Cambria Math'</c>
<c>font_candara 'Candara'</c>
<c>font_comicsansms 'ComicSansMS'</c>
<c>font_constantia 'Constantia'</c>
<c>font_corbel 'Corbel'</c>
<c>font_courier 'Courier'</c>
<c>font_ebrima 'Ebrima'</c>
<c>font_ebrimabold 'Ebrima Bold'</c>
<c>font_franklingothic 'FranklinGothic'</c>
<c>font_gabriola 'Gabriola'</c>
<c>font_gadugi 'Gadugi'</c>
<c>font_gadugibold 'Gadugi Bold'</c>
<c>font_georgia 'Georgia'</c>
<c>font_holomd2 'Holo MDL2 Assets'</c>
<c>font_impact 'Impact'</c>
<c>font_inkfree 'Ink Free'</c>
<c>font_javanesetext 'Javanese Text'</c>
<c>font_leelawadeeui 'LeelawadeeUI'</c>
<c>font_leelawadeeui_regular 'Leelawadee UI'</c>
<c>font_lucidasans 'Lucida Sans Unicode'</c>
<c>font_malgungothicbold 'Malgun Gothic Bold'</c>
<c>font_malgungothicsemilight 'Malgun Gothic SemiLight'</c>
<c>font_microsofthimalaya 'Microsoft Himalaya'</c>
<c>font_microsoftjhenghei 'Microsoft JhengHei &amp; Microsoft JhengHei UI'</c>
<c>font_microsoftjhengheibold 'Microsoft JhengHei Bold &amp; Microsoft JhengHei UI Bold'</c>
<c>font_microsoftjhengheilight 'Microsoft JhengHei Light &amp; Microsoft JhengHei UI Light'</c>
<c>font_microsoftyahei 'Microsoft YaHei &amp; Microsoft YaHei UI'</c>
<c>font_microsoftyaheibold 'Microsoft YaHei Bold &amp; Microsoft YaHei UI Bold'</c>
<c>font_microsoftyaheilight 'Microsoft YaHei Light &amp; Microsoft YaHei UI Light'</c>
<c>font_mingliub 'MingLiU-ExtB &amp; PMingLiU-ExtB &amp; MingLiU_HKSCS-ExtB'</c>
<c>font_mongolianbaiti 'Mongolian Baiti'</c>
<c>font_msgothic 'MS Gothic &amp; MS UI Gothic &amp; MS PGothic'</c>
<c>font_mvboli 'MV Boli'</c>
<c>font_myanmartext 'Myanmar Text'</c>
<c>font_myanmartextbold 'Myanmar Text Bold'</c>
<c>font_newtailue 'Microsoft New Tai Lue'</c>
<c>font_newtailuebold 'Microsoft New Tai Lue Bold'</c>
<c>font_nirmalaui 'NirmalaUI'</c>
<c>font_nirmalaui_regular 'Nirmala UI'</c>
<c>font_palatinolinotype 'PalatinoLinotype'</c>
<c>font_phagspa 'Microsoft PhagsPa'</c>
<c>font_phagspabold 'Microsoft PhagsPa Bold'</c>
<c>font_segoeprint 'Segoe Print'</c>
<c>font_segoeprintbold 'Segoe Print Bold'</c>
<c>font_segoescript 'SegoeScript'</c>
<c>font_segoeui_italicssupplement 'SegoeUI ItalicsSupplement'</c>
<c>font_simsun 'SimSun &amp; NSimSun'</c>
<c>font_simsunb 'SimSun-ExtB'</c>
<c>font_sitka 'Sitka'</c>
<c>font_small 'Small'</c>
<c>font_sylfaen 'Sylfaen'</c>
<c>font_taile 'Microsoft Tai Le'</c>
<c>font_tailebold 'Microsoft Tai Le Bold'</c>
<c>font_trebuchetms 'TrebuchetMS'</c>
<c>font_vector 'Vector'</c>
<c>font_verdana 'Verdana'</c>
<c>font_yibaiti 'Microsoft Yi Baiti'</c>
<c>font_yugothic 'Yu Gothic Regular &amp; Yu Gothic UI Semilight'</c>
<c>font_yugothicbold 'Yu Gothic Bold &amp; Yu Gothic UI Semibold &amp; Yu Gothic UI Bold'</c>
<c>font_yugothiclight 'Yu Gothic Light &amp; Yu Gothic UI Light'</c>
<c>font_yugothicmedium 'Yu Gothic Medium &amp; Yu Gothic UI Regular'</c>
<c>gameexplorer 'Game Explorer'</c>
<c>hwsupport_fax 'Fax'</c>
<c>hwsupport_floppy 'Floppy disk'</c>
<c>hwsupport_infrared 'Infrared devices'</c>
<c>hwsupport_modemsettings 'Shared modem settings (mdmgl*.inf)'</c>
<c>hwsupport_scanner 'Scanner'</c>
<c>hwsupport_smartcard 'Smartcard'</c>
<c>hwsupport_telephony 'Telephony'</c>
<c>hypervguest 'Hyper-V Integration Services'</c>
<c>ias 'Internet Authentication Service (IAS)'</c>
<c>iis 'Internet Information Server (IIS)'</c>
<c>inputswitchtoasthandler 'Input Switch Toast Handler'</c>
<c>insiderhub 'Windows Insider Program'</c>
<c>ipt 'Identity Protection Technology (Intel IPT)'</c>
<c>ipxlatcfg 'IP Translation Configuration Service'</c>
<c>iscsi 'iSCSI Initiator'</c>
<c>isoburn 'Windows Disc Image Burning Tool'</c>
<c>kl-00000401 'Arabic (101)'</c>
<c>kl-00000402 'Bulgarian (Typewriter)'</c>
<c>kl-00000404 'Chinese (Traditional) - US'</c>
<c>kl-00000405 'Czech'</c>
<c>kl-00000406 'Danish'</c>
<c>kl-00000408 'Greek'</c>
<c>kl-0000040a 'Spanish'</c>
<c>kl-0000040b 'Finnish'</c>
<c>kl-0000040c 'French'</c>
<c>kl-0000040d 'Hebrew'</c>
<c>kl-0000040e 'Hungarian'</c>
<c>kl-0000040f 'Icelandic'</c>
<c>kl-00000410 'Italian'</c>
<c>kl-00000411 'Japanese'</c>
<c>kl-00000412 'Korean'</c>
<c>kl-00000413 'Dutch'</c>
<c>kl-00000414 'Norwegian'</c>
<c>kl-00000415 'Polish (Programmers)'</c>
<c>kl-00000416 'Portuguese (Brazil ABNT)'</c>
<c>kl-00000418 'Romanian (Legacy)'</c>
<c>kl-00000419 'Russian'</c>
<c>kl-0000041a 'Standard'</c>
<c>kl-0000041b 'Slovak'</c>
<c>kl-0000041c 'Albanian'</c>
<c>kl-0000041d 'Swedish'</c>
<c>kl-0000041e 'Thai Kedmanee'</c>
<c>kl-0000041f 'Turkish Q'</c>
<c>kl-00000420 'Urdu'</c>
<c>kl-00000422 'Ukrainian'</c>
<c>kl-00000423 'Belarusian'</c>
<c>kl-00000424 'Slovenian'</c>
<c>kl-00000425 'Estonian'</c>
<c>kl-00000426 'Latvian'</c>
<c>kl-00000427 'Lithuanian IBM'</c>
<c>kl-00000428 'Tajik'</c>
<c>kl-00000429 'Persian'</c>
<c>kl-0000042a 'Vietnamese'</c>
<c>kl-0000042b 'Armenian Eastern (Legacy)'</c>
<c>kl-0000042c 'Azerbaijani Latin'</c>
<c>kl-0000042e 'Sorbian Standard (Legacy)'</c>
<c>kl-0000042f 'Macedonian (North Macedonia)'</c>
<c>kl-00000432 'Setswana'</c>
<c>kl-00000437 'Georgian (Legacy)'</c>
<c>kl-00000438 'Faeroese'</c>
<c>kl-00000439 'Devanagari - INSCRIPT'</c>
<c>kl-0000043a 'Maltese 47-Key'</c>
<c>kl-0000043b 'Norwegian with Sami'</c>
<c>kl-0000043f 'Kazakh'</c>
<c>kl-00000440 'Kyrgyz Cyrillic'</c>
<c>kl-00000442 'Turkmen'</c>
<c>kl-00000444 'Tatar (Legacy)'</c>
<c>kl-00000445 'Bangla'</c>
<c>kl-00000446 'Punjabi'</c>
<c>kl-00000447 'Gujarati'</c>
<c>kl-00000448 'Odia'</c>
<c>kl-00000449 'Tamil'</c>
<c>kl-0000044a 'Telugu'</c>
<c>kl-0000044b 'Kannada'</c>
<c>kl-0000044c 'Malayalam'</c>
<c>kl-0000044d 'Assamese - INSCRIPT'</c>
<c>kl-0000044e 'Marathi'</c>
<c>kl-00000450 'Mongolian Cyrillic'</c>
<c>kl-00000451 'Tibetan (PRC)'</c>
<c>kl-00000452 'United Kingdom Extended'</c>
<c>kl-00000453 'Khmer'</c>
<c>kl-00000454 'Lao'</c>
<c>kl-0000045a 'Syriac'</c>
<c>kl-0000045b 'Sinhala'</c>
<c>kl-0000045c 'Cherokee Nation'</c>
<c>kl-00000461 'Nepali'</c>
<c>kl-00000463 'Pashto (Afghanistan)'</c>
<c>kl-00000465 'Divehi Phonetic'</c>
<c>kl-00000468 'Hausa'</c>
<c>kl-0000046a 'Yoruba'</c>
<c>kl-0000046c 'Sesotho sa Leboa'</c>
<c>kl-0000046d 'Bashkir'</c>
<c>kl-0000046e 'Luxembourgish'</c>
<c>kl-0000046f 'Greenlandic'</c>
<c>kl-00000470 'Igbo'</c>
<c>kl-00000474 'Guarani'</c>
<c>kl-00000475 'Hawaiian'</c>
<c>kl-00000480 'Uyghur (Legacy)'</c>
<c>kl-00000481 'Maori'</c>
<c>kl-00000485 'Sakha'</c>
<c>kl-00000488 'Wolof'</c>
<c>kl-00000492 'Central Kurdish'</c>
<c>kl-00000804 'Chinese (Simplified) - US'</c>
<c>kl-00000807 'Swiss German'</c>
<c>kl-00000809 'United Kingdom'</c>
<c>kl-0000080a 'Latin American'</c>
<c>kl-0000080c 'Belgian French'</c>
<c>kl-00000813 'Belgian (Period)'</c>
<c>kl-00000816 'Portuguese'</c>
<c>kl-0000081a 'Serbian (Latin)'</c>
<c>kl-0000082c 'Azerbaijani Cyrillic'</c>
<c>kl-0000083b 'Swedish with Sami'</c>
<c>kl-00000843 'Uzbek Cyrillic'</c>
<c>kl-00000850 'Mongolian (Mongolian Script)'</c>
<c>kl-0000085d 'Inuktitut - Latin'</c>
<c>kl-0000085f 'Central Atlas Tamazight'</c>
<c>kl-00000c04 'Chinese (Traditional, Hong Kong S.A.R.) - US'</c>
<c>kl-00000c0c 'Canadian French (Legacy)'</c>
<c>kl-00000c1a 'Serbian (Cyrillic)'</c>
<c>kl-00000c51 'Dzongkha'</c>
<c>kl-00001004 'Chinese (Simplified, Singapore) - US'</c>
<c>kl-00001009 'Canadian French'</c>
<c>kl-0000100c 'Swiss French'</c>
<c>kl-0000105f 'Tifinagh (Basic)'</c>
<c>kl-00001404 'Chinese (Traditional, Macao S.A.R.) - US'</c>
<c>kl-00001809 'Irish'</c>
<c>kl-0000201a 'Bosnian (Cyrillic)'</c>
<c>kl-00004009 'English (India)'</c>
<c>kl-00010401 'Arabic (102)'</c>
<c>kl-00010402 'Bulgarian (Latin)'</c>
<c>kl-00010405 'Czech (QWERTY)'</c>
<c>kl-00010407 'German (IBM)'</c>
<c>kl-00010408 'Greek (220)'</c>
<c>kl-00010409 'United States-Dvorak'</c>
<c>kl-0001040a 'Spanish Variation'</c>
<c>kl-0001040e 'Hungarian 101-key'</c>
<c>kl-00010410 'Italian (142)'</c>
<c>kl-00010415 'Polish (214)'</c>
<c>kl-00010416 'Portuguese (Brazil ABNT2)'</c>
<c>kl-00010418 'Romanian (Standard)'</c>
<c>kl-00010419 'Russian (Typewriter)'</c>
<c>kl-0001041b 'Slovak (QWERTY)'</c>
<c>kl-0001041e 'Thai Pattachote'</c>
<c>kl-0001041f 'Turkish F'</c>
<c>kl-00010426 'Latvian (QWERTY)'</c>
<c>kl-00010427 'Lithuanian'</c>
<c>kl-0001042b 'Armenian Western (Legacy)'</c>
<c>kl-0001042c 'Azerbaijani (Standard)'</c>
<c>kl-0001042e 'Sorbian Extended'</c>
<c>kl-0001042f 'Macedonian (North Macedonia) - Standard'</c>
<c>kl-00010437 'Georgian (QWERTY)'</c>
<c>kl-00010439 'Hindi Traditional'</c>
<c>kl-0001043a 'Maltese 48-Key'</c>
<c>kl-0001043b 'Sami Extended Norway'</c>
<c>kl-00010444 'Tatar'</c>
<c>kl-00010445 'Bangla - INSCRIPT (Legacy)'</c>
<c>kl-00010451 'Tibetan (PRC) - Updated'</c>
<c>kl-00010453 'Khmer (NIDA)'</c>
<c>kl-0001045a 'Syriac Phonetic'</c>
<c>kl-0001045b 'Sinhala - Wij 9'</c>
<c>kl-0001045c 'Cherokee Phonetic'</c>
<c>kl-0001045d 'Inuktitut - Naqittaut'</c>
<c>kl-00010465 'Divehi Typewriter'</c>
<c>kl-00010480 'Uyghur'</c>
<c>kl-0001080c 'Belgian (Comma)'</c>
<c>kl-0001083b 'Finnish with Sami'</c>
<c>kl-00010850 'Traditional Mongolian (Standard)'</c>
<c>kl-00010c00 'Myanmar (Phonetic order)'</c>
<c>kl-00011009 'Canadian Multilingual Standard'</c>
<c>kl-0001105f 'Tifinagh (Extended)'</c>
<c>kl-00011809 'Scottish Gaelic'</c>
<c>kl-00020401 'Arabic (102) AZERTY'</c>
<c>kl-00020402 'Bulgarian (Phonetic)'</c>
<c>kl-00020405 'Czech Programmers'</c>
<c>kl-00020408 'Greek (319)'</c>
<c>kl-00020409 'United States-International'</c>
<c>kl-0002040d 'Hebrew (Standard)'</c>
<c>kl-00020418 'Romanian (Programmers)'</c>
<c>kl-00020419 'Russian - Mnemonic'</c>
<c>kl-0002041e 'Thai Kedmanee (non-ShiftLock)'</c>
<c>kl-00020422 'Ukrainian (Enhanced)'</c>
<c>kl-00020426 'Latvian (Standard)'</c>
<c>kl-00020427 'Lithuanian Standard'</c>
<c>kl-0002042b 'Armenian Phonetic'</c>
<c>kl-0002042e 'Sorbian Standard'</c>
<c>kl-00020437 'Georgian (Ergonomic)'</c>
<c>kl-00020445 'Bangla - INSCRIPT'</c>
<c>kl-00020449 'Tamil 99'</c>
<c>kl-0002083b 'Sami Extended Finland-Sweden'</c>
<c>kl-00020c00 'New Tai Lue'</c>
<c>kl-00030402 'Bulgarian'</c>
<c>kl-00030408 'Greek (220) Latin'</c>
<c>kl-0003041e 'Thai Pattachote (non-ShiftLock)'</c>
<c>kl-0003042b 'Armenian Typewriter'</c>
<c>kl-00030437 'Georgian (MES)'</c>
<c>kl-00030c00 'Tai Le'</c>
<c>kl-00040402 'Bulgarian (Phonetic Traditional)'</c>
<c>kl-00040408 'Greek (319) Latin'</c>
<c>kl-00040437 'Georgian (Old Alphabets)'</c>
<c>kl-00040c00 'Ogham'</c>
<c>kl-00050408 'Greek Latin'</c>
<c>kl-00050409 'US English Table for IBM Arabic 238_L'</c>
<c>kl-00050429 'Persian (Standard)'</c>
<c>kl-00060408 'Greek Polytonic'</c>
<c>kl-00070c00 'Lisu (Basic)'</c>
<c>kl-00080c00 'Lisu (Standard)'</c>
<c>kl-00090c00 'N’Ko'</c>
<c>kl-000a0c00 'Phags-pa'</c>
<c>kl-000b0c00 'Buginese'</c>
<c>kl-000c0c00 'Gothic'</c>
<c>kl-000d0c00 'Ol Chiki'</c>
<c>kl-000e0c00 'Osmanya'</c>
<c>kl-000f0c00 'Old Italic'</c>
<c>kl-00100c00 'Sora'</c>
<c>kl-00110c00 'Javanese'</c>
<c>kl-00120c00 'Futhark'</c>
<c>kl-00130c00 'Myanmar (Visual order)'</c>
<c>kl-00140c00 'ADLaM'</c>
<c>kl-00150c00 'Osage'</c>
<c>langarabic 'Arabic'</c>
<c>langbulgarian 'Bulgarian'</c>
<c>langchineses 'Chinese Simplified'</c>
<c>langchineset 'Chinese Traditional'</c>
<c>langcroatian 'Croatian'</c>
<c>langczech 'Czech'</c>
<c>langdanish 'Danish'</c>
<c>langdutch 'Dutch'</c>
<c>langenglishgb 'English (GB)'</c>
<c>langestonian 'Estonian'</c>
<c>langfinnish 'Finnish'</c>
<c>langfrench 'French'</c>
<c>langfrenchcanadian 'French (Canadian)'</c>
<c>langgreek 'Greek'</c>
<c>langhebrew 'Hebrew'</c>
<c>langhungarian 'Hungarian'</c>
<c>langime 'Input Method Editor (IME)'</c>
<c>langimejp 'Japanese (IME)'</c>
<c>langimeko 'Korean (IME)'</c>
<c>langimetc 'Chinese Traditional (IME)'</c>
<c>langitalian 'Italian'</c>
<c>langjapanese 'Japanese'</c>
<c>langkorean 'Korean'</c>
<c>langlatvian 'Latvian'</c>
<c>langlithuanian 'Lithuanian'</c>
<c>langnorwegian 'Norwegian'</c>
<c>langpolish 'Polish'</c>
<c>langportuguesebr 'Portuguese (Brazilian)'</c>
<c>langportuguesept 'Portuguese'</c>
<c>langromanian 'Romanian'</c>
<c>langrussian 'Russian'</c>
<c>langserbian 'Serbian'</c>
<c>langslovak 'Slovak'</c>
<c>langslovenian 'Slovenian'</c>
<c>langspanish 'Spanish'</c>
<c>langswedish 'Swedish'</c>
<c>langtamil 'Tamil'</c>
<c>langthai 'Thai'</c>
<c>langturkish 'Turkish'</c>
<c>langukrainian 'Ukrainian'</c>
<c>lockscreens 'Lock Screen backgrounds'</c>
<c>lpasvc 'Local Profile Assistant Service'</c>
<c>mail 'Windows Mail'</c>
<c>mailcommdll 'Windows Mail Communications Library'</c>
<c>manualsetup 'Manual Setup'</c>
<c>mapcontrol 'Map Control'</c>
<c>messagingsvc 'Messaging Service'</c>
<c>Microsoft.549981C3F5F10 'Cortana'</c>
<c>Microsoft.Advertising.Xaml 'Microsoft Advertising SDK for XAML'</c>
<c>Microsoft.AsyncTextService 'AsyncTextService'</c>
<c>Microsoft.BingWeather 'MSN Weather'</c>
<c>Microsoft.BioEnrollment 'Windows Hello Setup'</c>
<c>Microsoft.CredDialogHost 'Credential Dialog'</c>
<c>Microsoft.ECApp 'Eye Control'</c>
<c>Microsoft.GetHelp 'Get Help'</c>
<c>Microsoft.Getstarted 'Tips (Get Started)'</c>
<c>Microsoft.HEIFImageExtension 'HEIF-Bilderweiterungen'</c>
<c>Microsoft.Microsoft3DViewer '3D-Viewer'</c>
<c>Microsoft.MicrosoftEdge.Stable 'Microsoft Edge (Chromium)'</c>
<c>Microsoft.MicrosoftEdge 'Microsoft Edge (Legacy)'</c>
<c>Microsoft.MicrosoftEdgeDevToolsClient 'Microsoft Edge DevTools Client'</c>
<c>Microsoft.MicrosoftOfficeHub 'Office'</c>
<c>Microsoft.MicrosoftSolitaireCollection 'Microsoft Solitaire Collection'</c>
<c>Microsoft.MicrosoftStickyNotes 'Microsoft Sticky Notes'</c>
<c>Microsoft.MixedReality.Portal 'Mixed Reality Portal'</c>
<c>Microsoft.MSPaint 'Paint 3D'</c>
<c>Microsoft.Office.OneNote 'OneNote'</c>
<c>Microsoft.People 'Microsoft People'</c>
<c>Microsoft.ScreenSketch 'Snip &amp; Sketch'</c>
<c>Microsoft.Services.Store.Engagement 'Microsoft Engagement Framework'</c>
<c>Microsoft.SkypeApp 'Skype'</c>
<c>Microsoft.StorePurchaseApp 'Store Experience Host'</c>
<c>Microsoft.VP9VideoExtensions 'VP9-Videoerweiterungen'</c>
<c>Microsoft.Wallet 'Microsoft Pay'</c>
<c>Microsoft.WebMediaExtensions 'Web Media Extensions'</c>
<c>Microsoft.WebpImageExtension 'Webp-Bilderweiterungen'</c>
<c>Microsoft.Win32WebViewHost 'Desktop App Web Viewer'</c>
<c>Microsoft.Windows.Apprep.ChxApp 'SmartScreen'</c>
<c>Microsoft.Windows.AssignedAccessLockApp 'Assigned Access Lock app'</c>
<c>Microsoft.Windows.CallingShellApp 'Call'</c>
<c>Microsoft.Windows.CapturePicker 'Capture Picker'</c>
<c>Microsoft.Windows.ContentDeliveryManager 'Content Delivery Manager'</c>
<c>Microsoft.Windows.NarratorQuickStart 'Narrator'</c>
<c>Microsoft.Windows.OOBENetworkCaptivePortal 'Captive Portal Flow'</c>
<c>Microsoft.Windows.ParentalControls 'Microsoft family features'</c>
<c>Microsoft.Windows.Photos 'Microsoft Photos'</c>
<c>Microsoft.Windows.SecureAssessmentBrowser 'PrĂĽfung'</c>
<c>Microsoft.WindowsAlarms 'Windows Alarms &amp; Clock'</c>
<c>Microsoft.WindowsCalculator 'Windows Calculator'</c>
<c>Microsoft.WindowsCamera 'Windows Camera'</c>
<c>microsoft.windowscommunicationsapps 'Mail and Calendar'</c>
<c>Microsoft.WindowsFeedbackHub 'Feedback Hub'</c>
<c>Microsoft.WindowsMaps 'Windows Maps'</c>
<c>Microsoft.WindowsSoundRecorder 'Windows Voice Recorder'</c>
<c>Microsoft.Xbox.TCUI 'Xbox TCUI'</c>
<c>Microsoft.XboxApp 'Xbox'</c>
<c>Microsoft.XboxGameCallableUI 'Xbox Game UI'</c>
<c>Microsoft.XboxGameOverlay 'Xbox Game Bar Plugin'</c>
<c>Microsoft.XboxGamingOverlay 'Xbox Game Bar'</c>
<c>Microsoft.XboxSpeechToTextOverlay 'Xbox Game Speech Window'</c>
<c>Microsoft.YourPhone 'Your Phone'</c>
<c>Microsoft.ZuneMusic 'Groove Music'</c>
<c>Microsoft.ZuneVideo 'Movies &amp; TV'</c>
<c>midi 'Microsoft GS Wavetable SW Synth (MIDI)'</c>
<c>mixedreality 'Windows Mixed Reality'</c>
<c>mmga 'MMGA MAPI'</c>
<c>mobilepc</c>
<c>mobilepc_location 'Location notifications'</c>
<c>mobilepc_networkprojection 'Network Projection'</c>
<c>mobilepc_sensors 'Sensors'</c>
<c>msmq 'Microsoft Message Queue (MSMQ)'</c>
<c>netlogon</c>
<c>netqos 'Quality of Service Packet Scheduler (QoS)'</c>
<c>nettopology 'Link-Layer Topology Discovery protocol (LLTD)'</c>
<c>nfc 'Near Field Communication (NFC)'</c>
<c>nfsclient 'NFS Administrative Tools'</c>
<c>offlinefiles 'Offline Files'</c>
<c>onedrive</c>
<c>openssh</c>
<c>otherthemes 'Windows Personalization themes'</c>
<c>payments</c>
<c>pdfreader 'Windows Reader (PDF)'</c>
<c>peertopeer 'Peer Networking'</c>
<c>phonesvc 'Phone Service'</c>
<c>photoviewer 'Photo Viewer'</c>
<c>photoviewer32 'Photo Viewer - 32 bit'</c>
<c>picturepassword 'Picture password'</c>
<c>pos 'Point of Service (POS)'</c>
<c>pushtoinstall 'Windows PushToInstall Service'</c>
<c>rasauto 'Remote Access Auto Connection Manager'</c>
<c>rascmd 'Remote Access Service Client Tools'</c>
<c>rasmans 'Remote Access Connection Manager'</c>
<c>rdc 'Remote Differential Compression (RDC)'</c>
<c>rdpserver 'Remote Desktop Server'</c>
<c>rdpserverlic 'Remote Desktop Licensing'</c>
<c>remoteaccessservice 'Routing and Remote Access Service'</c>
<c>remoteaccesssupport 'Routing and Remote Access support'</c>
<c>remoteassistance 'Remote Assistance'</c>
<c>remotefx</c>
<c>remoteportredirector 'Remote Desktop Services Port Redirector'</c>
<c>remoteregistry 'Remote Registry'</c>
<c>retaildemo 'Retail Demo Content'</c>
<c>sendmail 'Send To Mail and Desktop'</c>
<c>settingsync 'Setting Sync'</c>
<c>sharedaccess 'Internet Connection Sharing (ICS)'</c>
<c>sharedpc 'Shared PC mode'</c>
<c>sharehost32 'Share Host - 32 bit'</c>
<c>sihclient 'Server-Initiated Healing Client'</c>
<c>simpletcp 'Simple TCP/IP services'</c>
<c>skypeortc 'Skype ORTC'</c>
<c>smsrouter 'SMS Router Service'</c>
<c>soundsdefault 'Sounds (Default)'</c>
<c>soundthemes 'Sound Themes'</c>
<c>sourcessxsdir 'Manual feature repository'</c>
<c>speechapi 'Speech API'</c>
<c>speechcommon 'Speech Recognition'</c>
<c>speechtts 'Speech TTS'</c>
<c>staticfontcache 'Static Font Cache'</c>
<c>stepsrecorder 'Steps Recorder'</c>
<c>supportdir 'Support directory'</c>
<c>synccenter 'Sync Center'</c>
<c>tabletextservice 'Table Text Service'</c>
<c>telnetclient 'Telnet Client'</c>
<c>tempcache 'Cache and temp files'</c>
<c>tftpclient 'TFTP client'</c>
<c>trkwks 'Distributed Link Tracking Client'</c>
<c>unp 'Universal Notification Platform (UNP)'</c>
<c>userdeviceregistration 'User Device Registration'</c>
<c>vpn 'Virtual Private Network (VPN) support'</c>
<c>wallet 'Wallet Service'</c>
<c>wallpapers 'Wallpapers (Themes)'</c>
<c>webcamexperience 'Webcam Experience'</c>
<c>winai 'Windows AI Machine Learning'</c>
<c>Windows.CBSPreview 'Windows Barcode Preview'</c>
<c>winocr 'Windows TIFF IFilter (OCR)'</c>
<c>wwanautoconfig 'WWAN AutoConfig'</c>
<c>xbox 'Xbox - Core'</c>
</RemoveComponents>
<Compatibility protectHidden="true">
<ComponentFeatures>
<Feature enabled="no">AppGuard</Feature>
<Feature enabled="no">YubiKey</Feature>
<Feature enabled="no">Bluetooth</Feature>
<Feature enabled="no">CapFrameX</Feature>
<Feature enabled="no">Discord</Feature>
<Feature enabled="no">FileSharing</Feature>
<Feature enabled="no">Hyper-V</Feature>
<Feature enabled="no">iCloud</Feature>
<Feature enabled="no">ManualSetup</Feature>
<Feature enabled="no">OfficeSupport</Feature>
<Feature enabled="no">AppxSupport</Feature>
<Feature enabled="no">Netflix</Feature>
<Feature enabled="no">NetworkDiscovery</Feature>
<Feature enabled="no">NightLight</Feature>
<Feature enabled="no">NvidiaSetup</Feature>
<Feature enabled="no">OOBE</Feature>
<Feature enabled="no">Printing</Feature>
<Feature enabled="no">Recommended-All</Feature>
<Feature enabled="no">SamsungSwitch</Feature>
<Feature enabled="no">Scanning</Feature>
<Feature enabled="no">ServicingStack</Feature>
<Feature enabled="no">ShellSearchSupport</Feature>
<Feature enabled="no">Spotify</Feature>
<Feature enabled="no">SFC</Feature>
<Feature enabled="no">DefaultFonts</Feature>
<Feature enabled="no">SafeMode</Feature>
<Feature enabled="no">TeamViewer</Feature>
<Feature enabled="no">Recommended-Tablet</Feature>
<Feature enabled="no">USBModem</Feature>
<Feature enabled="no">USB</Feature>
<Feature enabled="no">VideoPlayback</Feature>
<Feature enabled="no">VPN</Feature>
<Feature enabled="no">VisualStudio</Feature>
<Feature enabled="no">VSS</Feature>
<Feature enabled="no">ActivationKMS</Feature>
<Feature enabled="no">Activation</Feature>
<Feature enabled="no">WindowsStore</Feature>
<Feature enabled="no">WindowsUpdate</Feature>
<Feature enabled="no">WLAN</Feature>
</ComponentFeatures>
<MachineDrivers>
<Machine enabled="no">HostMachine</Machine>
<Machine enabled="no">Hyper-V VM</Machine>
<Machine enabled="no">Parallels VM</Machine>
<Machine enabled="no">Virtual Box VM</Machine>
<Machine enabled="no">VMware VM</Machine>
</MachineDrivers>
</Compatibility>
<Features></Features>
<Packages></Packages>
<Commands>
<PostUpdates>
<!--<Command>cmd /c echo Example from [MOUNTDIR]\Windows &amp; pause</Command>-->
<!--<Command>dism /image:[MOUNTDIR] /get-intl</Command>-->
</PostUpdates>
</Commands>
<Drivers showHidden="true"></Drivers>
<Unattended mode="0">
<OEMSetupComplete>false</OEMSetupComplete>
<AnswerFileLocationPanther>false</AnswerFileLocationPanther>
<AnswerFileLocationBoot>false</AnswerFileLocationBoot>
<SaveBothArch>false</SaveBothArch>
<EditionPrompt>false</EditionPrompt>
<settings pass="windowsPE">
<component name="Microsoft-Windows-Setup">
<DynamicUpdate>
<WillShowUI>OnError</WillShowUI>
</DynamicUpdate>
<ImageInstall>
<OSImage>
<WillShowUI>OnError</WillShowUI>
<InstallFrom>
<MetaData>
<Key>/IMAGE/INDEX</Key>
<Value>1</Value>
</MetaData>
</InstallFrom>
</OSImage>
</ImageInstall>
<UserData>
<ProductKey>
<Key></Key>
</ProductKey>
</UserData>
</component>
</settings>
</Unattended>
<Tweaks>
<Settings></Settings>
<Services></Services>
<ExtraServices></ExtraServices>
<ScheduledTasks></ScheduledTasks>
</Tweaks>
<ApplyOptions>
<ImageTasks>
<Task>imageSaveRebuild</Task>
<Task>imageFormatWim</Task>
</ImageTasks>
<AutoIsoFile>NTLite.iso</AutoIsoFile>
<AutoIsoLabel>NTLite</AutoIsoLabel>
<AutoSplitSize>4000</AutoSplitSize>
<CleanHotfixedLeftovers>0</CleanHotfixedLeftovers>
<OptimizeAppX>false</OptimizeAppX>
<ReuseDriverCache>false</ReuseDriverCache>
</ApplyOptions>
<Execution>
<Remove></Remove>
<Change></Change>
<Add></Add>
</Execution>
<Registry></Registry>
</Preset>

View File

@ -0,0 +1,837 @@
<?xml version="1.0" encoding="utf-8"?>
<Preset xmlns="urn:schemas-nliteos-com:pn.v1">
<Date>02/05/2023 22:43:24</Date>
<AppInfo>
<Version>2.3.9.9039</Version>
<Licensed>Yes</Licensed>
<Protections>Yes</Protections>
<Host>Windows 10 Pro (20H2) x64 - 10.0.19042.1706 (en-US)</Host>
</AppInfo>
<ImageInfo>
<Version mode="offline">Windows 10 Professional (20H2) x64 - 10.0.19042.508 (en-US)</Version>
<GUID>{528A137B-C611-4081-A327-B9783CE43D98}</GUID>
</ImageInfo>
<RemoveComponents AppRemovalMode="DISM">
<c>aarsvc 'Agent Activation Runtime'</c>
<c>accessibility_narrator 'Narrator'</c>
<c>activedirectory 'Active Directory'</c>
<c>adamclient 'Active Directory Lightweight Directory Services (AD LDS)'</c>
<c>alg 'Application Layer Gateway Service'</c>
<c>alljoyn 'AllJoyn Router Service'</c>
<c>appv 'Application Virtualization (App-V)'</c>
<c>assignedaccess 'Assigned Access'</c>
<c>azuread 'Azure Active Directory'</c>
<c>backgroundtransfer 'Networking Background Transfer'</c>
<c>branchcacheclient 'BranchCache Client'</c>
<c>ceip 'CEIP (SQM)'</c>
<c>cloudfiles 'Cloud Files API'</c>
<c>datacenterbridging 'Data Center Bridging (DCB)'</c>
<c>desktopactivitymoderator 'Desktop Activity Moderator (DAM)'</c>
<c>desktopimgdownldr 'Desktop image downloader'</c>
<c>diskquota 'Disk Quota'</c>
<c>diskquota32 'Disk Quota - 32 bit'</c>
<c>driver_61883.inf</c>
<c>driver_c_61883.inf</c>
<c>driver_c_barcodescanner.inf</c>
<c>driver_c_biometric.inf</c>
<c>driver_c_cashdrawer.inf</c>
<c>driver_c_holographic.inf</c>
<c>driver_c_infrared.inf</c>
<c>driver_c_linedisplay.inf</c>
<c>driver_c_magneticstripereader.inf</c>
<c>driver_c_mcx.inf</c>
<c>driver_c_mediumchanger.inf</c>
<c>driver_c_pcmcia.inf</c>
<c>driver_c_receiptprinter.inf</c>
<c>driver_c_smartcardreader.inf</c>
<c>driver_c_tapedrive.inf</c>
<c>driver_cht4vx64.inf</c>
<c>driver_dc1-controller.inf</c>
<c>driver_fusionv2.inf</c>
<c>driver_hidir.inf</c>
<c>driver_hidirkbd.inf</c>
<c>driver_hidscanner.inf</c>
<c>driver_idtsec.inf</c>
<c>driver_iscsi.inf</c>
<c>driver_mchgr.inf</c>
<c>driver_mdm3com.inf</c>
<c>driver_mdm5674a.inf</c>
<c>driver_mdmadc.inf</c>
<c>driver_mdmagm64.inf</c>
<c>driver_mdmags64.inf</c>
<c>driver_mdmairte.inf</c>
<c>driver_mdmaiwa.inf</c>
<c>driver_mdmaiwa3.inf</c>
<c>driver_mdmaiwa4.inf</c>
<c>driver_mdmaiwa5.inf</c>
<c>driver_mdmaiwat.inf</c>
<c>driver_mdmar1.inf</c>
<c>driver_mdmarch.inf</c>
<c>driver_mdmarn.inf</c>
<c>driver_mdmati.inf</c>
<c>driver_mdmatm2k.inf</c>
<c>driver_mdmaus.inf</c>
<c>driver_mdmboca.inf</c>
<c>driver_mdmbsb.inf</c>
<c>driver_mdmbug3.inf</c>
<c>driver_mdmbw561.inf</c>
<c>driver_mdmc26a.inf</c>
<c>driver_mdmcdp.inf</c>
<c>driver_mdmcm28.inf</c>
<c>driver_mdmcodex.inf</c>
<c>driver_mdmcom1.inf</c>
<c>driver_mdmcommu.inf</c>
<c>driver_mdmcomp.inf</c>
<c>driver_mdmcpq.inf</c>
<c>driver_mdmcpq2.inf</c>
<c>driver_mdmcpv.inf</c>
<c>driver_mdmcrtix.inf</c>
<c>driver_mdmcxhv6.inf</c>
<c>driver_mdmcxpv6.inf</c>
<c>driver_mdmdcm5.inf</c>
<c>driver_mdmdcm6.inf</c>
<c>driver_mdmdf56f.inf</c>
<c>driver_mdmdgitn.inf</c>
<c>driver_mdmdp2.inf</c>
<c>driver_mdmdsi.inf</c>
<c>driver_mdmdyna.inf</c>
<c>driver_mdmeiger.inf</c>
<c>driver_mdmelsa.inf</c>
<c>driver_mdmeric.inf</c>
<c>driver_mdmeric2.inf</c>
<c>driver_mdmetech.inf</c>
<c>driver_mdmfj2.inf</c>
<c>driver_mdmgatew.inf</c>
<c>driver_mdmgcs.inf</c>
<c>driver_mdmgen.inf</c>
<c>driver_mdmgl001.inf</c>
<c>driver_mdmgl002.inf</c>
<c>driver_mdmgl003.inf</c>
<c>driver_mdmgl004.inf</c>
<c>driver_mdmgl005.inf</c>
<c>driver_mdmgl006.inf</c>
<c>driver_mdmgl007.inf</c>
<c>driver_mdmgl008.inf</c>
<c>driver_mdmgl009.inf</c>
<c>driver_mdmgl010.inf</c>
<c>driver_mdmgsm.inf</c>
<c>driver_mdmhaeu.inf</c>
<c>driver_mdmhandy.inf</c>
<c>driver_mdmhay2.inf</c>
<c>driver_mdmhayes.inf</c>
<c>driver_mdminfot.inf</c>
<c>driver_mdmiodat.inf</c>
<c>driver_mdmirmdm.inf</c>
<c>driver_mdmisdn.inf</c>
<c>driver_mdmjf56e.inf</c>
<c>driver_mdmke.inf</c>
<c>driver_mdmkortx.inf</c>
<c>driver_mdmlasat.inf</c>
<c>driver_mdmlasno.inf</c>
<c>driver_mdmlucnt.inf</c>
<c>driver_mdmmc288.inf</c>
<c>driver_mdmmcd.inf</c>
<c>driver_mdmmcom.inf</c>
<c>driver_mdmmct.inf</c>
<c>driver_mdmmega.inf</c>
<c>driver_mdmmetri.inf</c>
<c>driver_mdmmhrtz.inf</c>
<c>driver_mdmmhzel.inf</c>
<c>driver_mdmminij.inf</c>
<c>driver_mdmmod.inf</c>
<c>driver_mdmmot64.inf</c>
<c>driver_mdmmoto1.inf</c>
<c>driver_mdmmotou.inf</c>
<c>driver_mdmmts.inf</c>
<c>driver_mdmneuhs.inf</c>
<c>driver_mdmnis1u.inf</c>
<c>driver_mdmnis2u.inf</c>
<c>driver_mdmnis3t.inf</c>
<c>driver_mdmnis5t.inf</c>
<c>driver_mdmnokia.inf</c>
<c>driver_mdmnova.inf</c>
<c>driver_mdmntt1.inf</c>
<c>driver_mdmnttd2.inf</c>
<c>driver_mdmnttd6.inf</c>
<c>driver_mdmnttme.inf</c>
<c>driver_mdmnttp.inf</c>
<c>driver_mdmnttp2.inf</c>
<c>driver_mdmnttte.inf</c>
<c>driver_mdmolic.inf</c>
<c>driver_mdmomrn3.inf</c>
<c>driver_mdmoptn.inf</c>
<c>driver_mdmosi.inf</c>
<c>driver_mdmpace.inf</c>
<c>driver_mdmpenr.inf</c>
<c>driver_mdmpin.inf</c>
<c>driver_mdmpn1.inf</c>
<c>driver_mdmpp.inf</c>
<c>driver_mdmpsion.inf</c>
<c>driver_mdmracal.inf</c>
<c>driver_mdmrock.inf</c>
<c>driver_mdmrock3.inf</c>
<c>driver_mdmrock4.inf</c>
<c>driver_mdmrock5.inf</c>
<c>driver_mdmsier.inf</c>
<c>driver_mdmsii64.inf</c>
<c>driver_mdmsmart.inf</c>
<c>driver_mdmsonyu.inf</c>
<c>driver_mdmsun1.inf</c>
<c>driver_mdmsun2.inf</c>
<c>driver_mdmsupr3.inf</c>
<c>driver_mdmsupra.inf</c>
<c>driver_mdmsuprv.inf</c>
<c>driver_mdmtdk.inf</c>
<c>driver_mdmtdkj2.inf</c>
<c>driver_mdmtdkj3.inf</c>
<c>driver_mdmtdkj4.inf</c>
<c>driver_mdmtdkj5.inf</c>
<c>driver_mdmtdkj6.inf</c>
<c>driver_mdmtdkj7.inf</c>
<c>driver_mdmtexas.inf</c>
<c>driver_mdmti.inf</c>
<c>driver_mdmtkr.inf</c>
<c>driver_mdmtron.inf</c>
<c>driver_mdmusrf.inf</c>
<c>driver_mdmusrg.inf</c>
<c>driver_mdmusrgl.inf</c>
<c>driver_mdmusrk1.inf</c>
<c>driver_mdmusrsp.inf</c>
<c>driver_mdmvdot.inf</c>
<c>driver_mdmvv.inf</c>
<c>driver_mdmwhql0.inf</c>
<c>driver_mdmx5560.inf</c>
<c>driver_mdmzoom.inf</c>
<c>driver_mdmzyp.inf</c>
<c>driver_mdmzyxel.inf</c>
<c>driver_mdmzyxlg.inf</c>
<c>driver_mgtdyn.inf</c>
<c>driver_miradisp.inf</c>
<c>driver_msclmd.inf</c>
<c>driver_oposdrv.inf</c>
<c>driver_pcmcia.inf</c>
<c>driver_perceptionsimulationheadset.inf</c>
<c>driver_rdpbus.inf</c>
<c>driver_rdvgwddmdx11.inf</c>
<c>driver_remoteposdrv.inf</c>
<c>driver_sensorshidclassdriver.inf</c>
<c>driver_sensorsservicedriver.inf</c>
<c>driver_tape.inf</c>
<c>driver_termkbd.inf</c>
<c>driver_termmou.inf</c>
<c>driver_tpm.inf</c>
<c>driver_tpmvsc.inf</c>
<c>driver_ts_generic.inf</c>
<c>driver_tsgenericusbdriver.inf</c>
<c>driver_tsprint.inf</c>
<c>driver_tsusbhubfilter.inf</c>
<c>driver_usbcciddriver.inf</c>
<c>driver_usbcir.inf</c>
<c>driver_wdmvsc.inf</c>
<c>driver_wfcvsc.inf</c>
<c>driver_wgencounter.inf</c>
<c>driver_whvcrash.inf</c>
<c>driver_whyperkbd.inf</c>
<c>driver_wnetvsc.inf</c>
<c>driver_ws3cap.inf</c>
<c>driver_wstorflt.inf</c>
<c>driver_wstorvsc.inf</c>
<c>driver_wsynth3dvsc.inf</c>
<c>driver_wudfusbcciddriver.inf</c>
<c>driver_wvmbushid.inf</c>
<c>driver_wvmbusvideo.inf</c>
<c>driver_wvmgid.inf</c>
<c>driver_wvmic.inf</c>
<c>driver_wvmic_ext.inf</c>
<c>driver_wvpci.inf</c>
<c>driver_xboxgipsynthetic.inf</c>
<c>driver_xusb22.inf</c>
<c>E2A4F912-2574-4A75-9BB0-0D023378592B 'App Resolver'</c>
<c>edgeupdate 'Microsoft Edge Update'</c>
<c>embeddedmode 'Embedded Mode'</c>
<c>enterpriseclientsync 'Work Folders Client'</c>
<c>exchangeactivesync 'Exchange ActiveSync (EAS)'</c>
<c>F46D4000-FD22-4DB4-AC8E-4E1DDDE828FE 'Add Folder Suggestions dialog'</c>
<c>flashactivex 'Adobe Flash for Internet Explorer'</c>
<c>flashactivex32 'Adobe Flash for Internet Explorer - 32 bit'</c>
<c>folderredirection 'Folder Redirection'</c>
<c>font_arialblack 'Arial Black'</c>
<c>font_bahnschrift 'Bahnschrift'</c>
<c>font_cambria 'Cambria'</c>
<c>font_cambria_regular 'Cambria &amp; Cambria Math'</c>
<c>font_candara 'Candara'</c>
<c>font_comicsansms 'ComicSansMS'</c>
<c>font_constantia 'Constantia'</c>
<c>font_corbel 'Corbel'</c>
<c>font_courier 'Courier'</c>
<c>font_ebrima 'Ebrima'</c>
<c>font_ebrimabold 'Ebrima Bold'</c>
<c>font_franklingothic 'FranklinGothic'</c>
<c>font_gabriola 'Gabriola'</c>
<c>font_gadugi 'Gadugi'</c>
<c>font_gadugibold 'Gadugi Bold'</c>
<c>font_georgia 'Georgia'</c>
<c>font_holomd2 'Holo MDL2 Assets'</c>
<c>font_impact 'Impact'</c>
<c>font_inkfree 'Ink Free'</c>
<c>font_javanesetext 'Javanese Text'</c>
<c>font_leelawadeeui 'LeelawadeeUI'</c>
<c>font_leelawadeeui_regular 'Leelawadee UI'</c>
<c>font_lucidasans 'Lucida Sans Unicode'</c>
<c>font_malgungothicbold 'Malgun Gothic Bold'</c>
<c>font_malgungothicsemilight 'Malgun Gothic SemiLight'</c>
<c>font_microsofthimalaya 'Microsoft Himalaya'</c>
<c>font_microsoftjhenghei 'Microsoft JhengHei &amp; Microsoft JhengHei UI'</c>
<c>font_microsoftjhengheibold 'Microsoft JhengHei Bold &amp; Microsoft JhengHei UI Bold'</c>
<c>font_microsoftjhengheilight 'Microsoft JhengHei Light &amp; Microsoft JhengHei UI Light'</c>
<c>font_microsoftyahei 'Microsoft YaHei &amp; Microsoft YaHei UI'</c>
<c>font_microsoftyaheibold 'Microsoft YaHei Bold &amp; Microsoft YaHei UI Bold'</c>
<c>font_microsoftyaheilight 'Microsoft YaHei Light &amp; Microsoft YaHei UI Light'</c>
<c>font_mingliub 'MingLiU-ExtB &amp; PMingLiU-ExtB &amp; MingLiU_HKSCS-ExtB'</c>
<c>font_mongolianbaiti 'Mongolian Baiti'</c>
<c>font_msgothic 'MS Gothic &amp; MS UI Gothic &amp; MS PGothic'</c>
<c>font_mvboli 'MV Boli'</c>
<c>font_myanmartext 'Myanmar Text'</c>
<c>font_myanmartextbold 'Myanmar Text Bold'</c>
<c>font_newtailue 'Microsoft New Tai Lue'</c>
<c>font_newtailuebold 'Microsoft New Tai Lue Bold'</c>
<c>font_nirmalaui 'NirmalaUI'</c>
<c>font_nirmalaui_regular 'Nirmala UI'</c>
<c>font_palatinolinotype 'PalatinoLinotype'</c>
<c>font_phagspa 'Microsoft PhagsPa'</c>
<c>font_phagspabold 'Microsoft PhagsPa Bold'</c>
<c>font_segoeprint 'Segoe Print'</c>
<c>font_segoeprintbold 'Segoe Print Bold'</c>
<c>font_segoescript 'SegoeScript'</c>
<c>font_segoeui_italicssupplement 'SegoeUI ItalicsSupplement'</c>
<c>font_simsun 'SimSun &amp; NSimSun'</c>
<c>font_simsunb 'SimSun-ExtB'</c>
<c>font_sitka 'Sitka'</c>
<c>font_small 'Small'</c>
<c>font_sylfaen 'Sylfaen'</c>
<c>font_taile 'Microsoft Tai Le'</c>
<c>font_tailebold 'Microsoft Tai Le Bold'</c>
<c>font_trebuchetms 'TrebuchetMS'</c>
<c>font_vector 'Vector'</c>
<c>font_verdana 'Verdana'</c>
<c>font_yibaiti 'Microsoft Yi Baiti'</c>
<c>font_yugothic 'Yu Gothic Regular &amp; Yu Gothic UI Semilight'</c>
<c>font_yugothicbold 'Yu Gothic Bold &amp; Yu Gothic UI Semibold &amp; Yu Gothic UI Bold'</c>
<c>font_yugothiclight 'Yu Gothic Light &amp; Yu Gothic UI Light'</c>
<c>font_yugothicmedium 'Yu Gothic Medium &amp; Yu Gothic UI Regular'</c>
<c>gameexplorer 'Game Explorer'</c>
<c>hwsupport_fax 'Fax'</c>
<c>hwsupport_floppy 'Floppy disk'</c>
<c>hwsupport_infrared 'Infrared devices'</c>
<c>hwsupport_modemsettings 'Shared modem settings (mdmgl*.inf)'</c>
<c>hwsupport_scanner 'Scanner'</c>
<c>hwsupport_smartcard 'Smartcard'</c>
<c>hwsupport_telephony 'Telephony'</c>
<c>hypervguest 'Hyper-V Integration Services'</c>
<c>ias 'Internet Authentication Service (IAS)'</c>
<c>iis 'Internet Information Server (IIS)'</c>
<c>inputswitchtoasthandler 'Input Switch Toast Handler'</c>
<c>insiderhub 'Windows Insider Program'</c>
<c>ipt 'Identity Protection Technology (Intel IPT)'</c>
<c>ipxlatcfg 'IP Translation Configuration Service'</c>
<c>iscsi 'iSCSI Initiator'</c>
<c>isoburn 'Windows Disc Image Burning Tool'</c>
<c>kl-00000401 'Arabic (101)'</c>
<c>kl-00000402 'Bulgarian (Typewriter)'</c>
<c>kl-00000404 'Chinese (Traditional) - US'</c>
<c>kl-00000405 'Czech'</c>
<c>kl-00000406 'Danish'</c>
<c>kl-00000408 'Greek'</c>
<c>kl-0000040a 'Spanish'</c>
<c>kl-0000040b 'Finnish'</c>
<c>kl-0000040c 'French'</c>
<c>kl-0000040d 'Hebrew'</c>
<c>kl-0000040e 'Hungarian'</c>
<c>kl-0000040f 'Icelandic'</c>
<c>kl-00000410 'Italian'</c>
<c>kl-00000411 'Japanese'</c>
<c>kl-00000412 'Korean'</c>
<c>kl-00000413 'Dutch'</c>
<c>kl-00000414 'Norwegian'</c>
<c>kl-00000415 'Polish (Programmers)'</c>
<c>kl-00000416 'Portuguese (Brazil ABNT)'</c>
<c>kl-00000418 'Romanian (Legacy)'</c>
<c>kl-00000419 'Russian'</c>
<c>kl-0000041a 'Standard'</c>
<c>kl-0000041b 'Slovak'</c>
<c>kl-0000041c 'Albanian'</c>
<c>kl-0000041d 'Swedish'</c>
<c>kl-0000041e 'Thai Kedmanee'</c>
<c>kl-0000041f 'Turkish Q'</c>
<c>kl-00000420 'Urdu'</c>
<c>kl-00000422 'Ukrainian'</c>
<c>kl-00000423 'Belarusian'</c>
<c>kl-00000424 'Slovenian'</c>
<c>kl-00000425 'Estonian'</c>
<c>kl-00000426 'Latvian'</c>
<c>kl-00000427 'Lithuanian IBM'</c>
<c>kl-00000428 'Tajik'</c>
<c>kl-00000429 'Persian'</c>
<c>kl-0000042a 'Vietnamese'</c>
<c>kl-0000042b 'Armenian Eastern (Legacy)'</c>
<c>kl-0000042c 'Azerbaijani Latin'</c>
<c>kl-0000042e 'Sorbian Standard (Legacy)'</c>
<c>kl-0000042f 'Macedonian (North Macedonia)'</c>
<c>kl-00000432 'Setswana'</c>
<c>kl-00000437 'Georgian (Legacy)'</c>
<c>kl-00000438 'Faeroese'</c>
<c>kl-00000439 'Devanagari - INSCRIPT'</c>
<c>kl-0000043a 'Maltese 47-Key'</c>
<c>kl-0000043b 'Norwegian with Sami'</c>
<c>kl-0000043f 'Kazakh'</c>
<c>kl-00000440 'Kyrgyz Cyrillic'</c>
<c>kl-00000442 'Turkmen'</c>
<c>kl-00000444 'Tatar (Legacy)'</c>
<c>kl-00000445 'Bangla'</c>
<c>kl-00000446 'Punjabi'</c>
<c>kl-00000447 'Gujarati'</c>
<c>kl-00000448 'Odia'</c>
<c>kl-00000449 'Tamil'</c>
<c>kl-0000044a 'Telugu'</c>
<c>kl-0000044b 'Kannada'</c>
<c>kl-0000044c 'Malayalam'</c>
<c>kl-0000044d 'Assamese - INSCRIPT'</c>
<c>kl-0000044e 'Marathi'</c>
<c>kl-00000450 'Mongolian Cyrillic'</c>
<c>kl-00000451 'Tibetan (PRC)'</c>
<c>kl-00000452 'United Kingdom Extended'</c>
<c>kl-00000453 'Khmer'</c>
<c>kl-00000454 'Lao'</c>
<c>kl-0000045a 'Syriac'</c>
<c>kl-0000045b 'Sinhala'</c>
<c>kl-0000045c 'Cherokee Nation'</c>
<c>kl-00000461 'Nepali'</c>
<c>kl-00000463 'Pashto (Afghanistan)'</c>
<c>kl-00000465 'Divehi Phonetic'</c>
<c>kl-00000468 'Hausa'</c>
<c>kl-0000046a 'Yoruba'</c>
<c>kl-0000046c 'Sesotho sa Leboa'</c>
<c>kl-0000046d 'Bashkir'</c>
<c>kl-0000046e 'Luxembourgish'</c>
<c>kl-0000046f 'Greenlandic'</c>
<c>kl-00000470 'Igbo'</c>
<c>kl-00000474 'Guarani'</c>
<c>kl-00000475 'Hawaiian'</c>
<c>kl-00000480 'Uyghur (Legacy)'</c>
<c>kl-00000481 'Maori'</c>
<c>kl-00000485 'Sakha'</c>
<c>kl-00000488 'Wolof'</c>
<c>kl-00000492 'Central Kurdish'</c>
<c>kl-00000804 'Chinese (Simplified) - US'</c>
<c>kl-00000807 'Swiss German'</c>
<c>kl-00000809 'United Kingdom'</c>
<c>kl-0000080a 'Latin American'</c>
<c>kl-0000080c 'Belgian French'</c>
<c>kl-00000813 'Belgian (Period)'</c>
<c>kl-00000816 'Portuguese'</c>
<c>kl-0000081a 'Serbian (Latin)'</c>
<c>kl-0000082c 'Azerbaijani Cyrillic'</c>
<c>kl-0000083b 'Swedish with Sami'</c>
<c>kl-00000843 'Uzbek Cyrillic'</c>
<c>kl-00000850 'Mongolian (Mongolian Script)'</c>
<c>kl-0000085d 'Inuktitut - Latin'</c>
<c>kl-0000085f 'Central Atlas Tamazight'</c>
<c>kl-00000c04 'Chinese (Traditional, Hong Kong S.A.R.) - US'</c>
<c>kl-00000c0c 'Canadian French (Legacy)'</c>
<c>kl-00000c1a 'Serbian (Cyrillic)'</c>
<c>kl-00000c51 'Dzongkha'</c>
<c>kl-00001004 'Chinese (Simplified, Singapore) - US'</c>
<c>kl-00001009 'Canadian French'</c>
<c>kl-0000100c 'Swiss French'</c>
<c>kl-0000105f 'Tifinagh (Basic)'</c>
<c>kl-00001404 'Chinese (Traditional, Macao S.A.R.) - US'</c>
<c>kl-00001809 'Irish'</c>
<c>kl-0000201a 'Bosnian (Cyrillic)'</c>
<c>kl-00004009 'English (India)'</c>
<c>kl-00010401 'Arabic (102)'</c>
<c>kl-00010402 'Bulgarian (Latin)'</c>
<c>kl-00010405 'Czech (QWERTY)'</c>
<c>kl-00010407 'German (IBM)'</c>
<c>kl-00010408 'Greek (220)'</c>
<c>kl-00010409 'United States-Dvorak'</c>
<c>kl-0001040a 'Spanish Variation'</c>
<c>kl-0001040e 'Hungarian 101-key'</c>
<c>kl-00010410 'Italian (142)'</c>
<c>kl-00010415 'Polish (214)'</c>
<c>kl-00010416 'Portuguese (Brazil ABNT2)'</c>
<c>kl-00010418 'Romanian (Standard)'</c>
<c>kl-00010419 'Russian (Typewriter)'</c>
<c>kl-0001041b 'Slovak (QWERTY)'</c>
<c>kl-0001041e 'Thai Pattachote'</c>
<c>kl-0001041f 'Turkish F'</c>
<c>kl-00010426 'Latvian (QWERTY)'</c>
<c>kl-00010427 'Lithuanian'</c>
<c>kl-0001042b 'Armenian Western (Legacy)'</c>
<c>kl-0001042c 'Azerbaijani (Standard)'</c>
<c>kl-0001042e 'Sorbian Extended'</c>
<c>kl-0001042f 'Macedonian (North Macedonia) - Standard'</c>
<c>kl-00010437 'Georgian (QWERTY)'</c>
<c>kl-00010439 'Hindi Traditional'</c>
<c>kl-0001043a 'Maltese 48-Key'</c>
<c>kl-0001043b 'Sami Extended Norway'</c>
<c>kl-00010444 'Tatar'</c>
<c>kl-00010445 'Bangla - INSCRIPT (Legacy)'</c>
<c>kl-00010451 'Tibetan (PRC) - Updated'</c>
<c>kl-00010453 'Khmer (NIDA)'</c>
<c>kl-0001045a 'Syriac Phonetic'</c>
<c>kl-0001045b 'Sinhala - Wij 9'</c>
<c>kl-0001045c 'Cherokee Phonetic'</c>
<c>kl-0001045d 'Inuktitut - Naqittaut'</c>
<c>kl-00010465 'Divehi Typewriter'</c>
<c>kl-00010480 'Uyghur'</c>
<c>kl-0001080c 'Belgian (Comma)'</c>
<c>kl-0001083b 'Finnish with Sami'</c>
<c>kl-00010850 'Traditional Mongolian (Standard)'</c>
<c>kl-00010c00 'Myanmar (Phonetic order)'</c>
<c>kl-00011009 'Canadian Multilingual Standard'</c>
<c>kl-0001105f 'Tifinagh (Extended)'</c>
<c>kl-00011809 'Scottish Gaelic'</c>
<c>kl-00020401 'Arabic (102) AZERTY'</c>
<c>kl-00020402 'Bulgarian (Phonetic)'</c>
<c>kl-00020405 'Czech Programmers'</c>
<c>kl-00020408 'Greek (319)'</c>
<c>kl-00020409 'United States-International'</c>
<c>kl-0002040d 'Hebrew (Standard)'</c>
<c>kl-00020418 'Romanian (Programmers)'</c>
<c>kl-00020419 'Russian - Mnemonic'</c>
<c>kl-0002041e 'Thai Kedmanee (non-ShiftLock)'</c>
<c>kl-00020422 'Ukrainian (Enhanced)'</c>
<c>kl-00020426 'Latvian (Standard)'</c>
<c>kl-00020427 'Lithuanian Standard'</c>
<c>kl-0002042b 'Armenian Phonetic'</c>
<c>kl-0002042e 'Sorbian Standard'</c>
<c>kl-00020437 'Georgian (Ergonomic)'</c>
<c>kl-00020445 'Bangla - INSCRIPT'</c>
<c>kl-00020449 'Tamil 99'</c>
<c>kl-0002083b 'Sami Extended Finland-Sweden'</c>
<c>kl-00020c00 'New Tai Lue'</c>
<c>kl-00030402 'Bulgarian'</c>
<c>kl-00030408 'Greek (220) Latin'</c>
<c>kl-0003041e 'Thai Pattachote (non-ShiftLock)'</c>
<c>kl-0003042b 'Armenian Typewriter'</c>
<c>kl-00030437 'Georgian (MES)'</c>
<c>kl-00030c00 'Tai Le'</c>
<c>kl-00040402 'Bulgarian (Phonetic Traditional)'</c>
<c>kl-00040408 'Greek (319) Latin'</c>
<c>kl-00040437 'Georgian (Old Alphabets)'</c>
<c>kl-00040c00 'Ogham'</c>
<c>kl-00050408 'Greek Latin'</c>
<c>kl-00050409 'US English Table for IBM Arabic 238_L'</c>
<c>kl-00050429 'Persian (Standard)'</c>
<c>kl-00060408 'Greek Polytonic'</c>
<c>kl-00070c00 'Lisu (Basic)'</c>
<c>kl-00080c00 'Lisu (Standard)'</c>
<c>kl-00090c00 'N’Ko'</c>
<c>kl-000a0c00 'Phags-pa'</c>
<c>kl-000b0c00 'Buginese'</c>
<c>kl-000c0c00 'Gothic'</c>
<c>kl-000d0c00 'Ol Chiki'</c>
<c>kl-000e0c00 'Osmanya'</c>
<c>kl-000f0c00 'Old Italic'</c>
<c>kl-00100c00 'Sora'</c>
<c>kl-00110c00 'Javanese'</c>
<c>kl-00120c00 'Futhark'</c>
<c>kl-00130c00 'Myanmar (Visual order)'</c>
<c>kl-00140c00 'ADLaM'</c>
<c>kl-00150c00 'Osage'</c>
<c>langarabic 'Arabic'</c>
<c>langbulgarian 'Bulgarian'</c>
<c>langchineses 'Chinese Simplified'</c>
<c>langchineset 'Chinese Traditional'</c>
<c>langcroatian 'Croatian'</c>
<c>langczech 'Czech'</c>
<c>langdanish 'Danish'</c>
<c>langdutch 'Dutch'</c>
<c>langenglishgb 'English (GB)'</c>
<c>langestonian 'Estonian'</c>
<c>langfinnish 'Finnish'</c>
<c>langfrench 'French'</c>
<c>langfrenchcanadian 'French (Canadian)'</c>
<c>langgreek 'Greek'</c>
<c>langhebrew 'Hebrew'</c>
<c>langhungarian 'Hungarian'</c>
<c>langime 'Input Method Editor (IME)'</c>
<c>langimejp 'Japanese (IME)'</c>
<c>langimeko 'Korean (IME)'</c>
<c>langimetc 'Chinese Traditional (IME)'</c>
<c>langitalian 'Italian'</c>
<c>langjapanese 'Japanese'</c>
<c>langkorean 'Korean'</c>
<c>langlatvian 'Latvian'</c>
<c>langlithuanian 'Lithuanian'</c>
<c>langnorwegian 'Norwegian'</c>
<c>langpolish 'Polish'</c>
<c>langportuguesebr 'Portuguese (Brazilian)'</c>
<c>langportuguesept 'Portuguese'</c>
<c>langromanian 'Romanian'</c>
<c>langrussian 'Russian'</c>
<c>langserbian 'Serbian'</c>
<c>langslovak 'Slovak'</c>
<c>langslovenian 'Slovenian'</c>
<c>langspanish 'Spanish'</c>
<c>langswedish 'Swedish'</c>
<c>langtamil 'Tamil'</c>
<c>langthai 'Thai'</c>
<c>langturkish 'Turkish'</c>
<c>langukrainian 'Ukrainian'</c>
<c>lockscreens 'Lock Screen backgrounds'</c>
<c>lpasvc 'Local Profile Assistant Service'</c>
<c>mail 'Windows Mail'</c>
<c>mailcommdll 'Windows Mail Communications Library'</c>
<c>manualsetup 'Manual Setup'</c>
<c>mapcontrol 'Map Control'</c>
<c>mediaplayer 'Windows Media Player'</c>
<c>mediaplayer32 'Windows Media Player - 32 bit'</c>
<c>mediaplayernetworksharing 'WMP Network Sharing Service'</c>
<c>mediaplayernetworksharing32 'WMP Network Sharing Service - 32 bit'</c>
<c>messagingsvc 'Messaging Service'</c>
<c>Microsoft.549981C3F5F10 'Cortana'</c>
<c>Microsoft.Advertising.Xaml 'Microsoft Advertising SDK for XAML'</c>
<c>Microsoft.AsyncTextService 'AsyncTextService'</c>
<c>Microsoft.BingWeather 'MSN Weather'</c>
<c>Microsoft.BioEnrollment 'Windows Hello Setup'</c>
<c>Microsoft.CredDialogHost 'Credential Dialog'</c>
<c>Microsoft.ECApp 'Eye Control'</c>
<c>Microsoft.GetHelp 'Get Help'</c>
<c>Microsoft.Getstarted 'Tips (Get Started)'</c>
<c>Microsoft.HEIFImageExtension 'HEIF-Bilderweiterungen'</c>
<c>Microsoft.Microsoft3DViewer '3D-Viewer'</c>
<c>Microsoft.MicrosoftEdge.Stable 'Microsoft Edge (Chromium)'</c>
<c>Microsoft.MicrosoftEdge 'Microsoft Edge (Legacy)'</c>
<c>Microsoft.MicrosoftEdgeDevToolsClient 'Microsoft Edge DevTools Client'</c>
<c>Microsoft.MicrosoftOfficeHub 'Office'</c>
<c>Microsoft.MicrosoftSolitaireCollection 'Microsoft Solitaire Collection'</c>
<c>Microsoft.MicrosoftStickyNotes 'Microsoft Sticky Notes'</c>
<c>Microsoft.MixedReality.Portal 'Mixed Reality Portal'</c>
<c>Microsoft.MSPaint 'Paint 3D'</c>
<c>Microsoft.Office.OneNote 'OneNote'</c>
<c>Microsoft.People 'Microsoft People'</c>
<c>Microsoft.ScreenSketch 'Snip &amp; Sketch'</c>
<c>Microsoft.Services.Store.Engagement 'Microsoft Engagement Framework'</c>
<c>Microsoft.SkypeApp 'Skype'</c>
<c>Microsoft.StorePurchaseApp 'Store Experience Host'</c>
<c>Microsoft.VP9VideoExtensions 'VP9-Videoerweiterungen'</c>
<c>Microsoft.Wallet 'Microsoft Pay'</c>
<c>Microsoft.WebMediaExtensions 'Web Media Extensions'</c>
<c>Microsoft.WebpImageExtension 'Webp-Bilderweiterungen'</c>
<c>Microsoft.Win32WebViewHost 'Desktop App Web Viewer'</c>
<c>Microsoft.Windows.Apprep.ChxApp 'SmartScreen'</c>
<c>Microsoft.Windows.AssignedAccessLockApp 'Assigned Access Lock app'</c>
<c>Microsoft.Windows.CallingShellApp 'Call'</c>
<c>Microsoft.Windows.CapturePicker 'Capture Picker'</c>
<c>Microsoft.Windows.ContentDeliveryManager 'Content Delivery Manager'</c>
<c>Microsoft.Windows.NarratorQuickStart 'Narrator'</c>
<c>Microsoft.Windows.OOBENetworkCaptivePortal 'Captive Portal Flow'</c>
<c>Microsoft.Windows.ParentalControls 'Microsoft family features'</c>
<c>Microsoft.Windows.Photos 'Microsoft Photos'</c>
<c>Microsoft.Windows.SecureAssessmentBrowser 'PrĂĽfung'</c>
<c>Microsoft.WindowsAlarms 'Windows Alarms &amp; Clock'</c>
<c>Microsoft.WindowsCalculator 'Windows Calculator'</c>
<c>Microsoft.WindowsCamera 'Windows Camera'</c>
<c>microsoft.windowscommunicationsapps 'Mail and Calendar'</c>
<c>Microsoft.WindowsFeedbackHub 'Feedback Hub'</c>
<c>Microsoft.WindowsMaps 'Windows Maps'</c>
<c>Microsoft.WindowsSoundRecorder 'Windows Voice Recorder'</c>
<c>Microsoft.Xbox.TCUI 'Xbox TCUI'</c>
<c>Microsoft.XboxApp 'Xbox'</c>
<c>Microsoft.XboxGameCallableUI 'Xbox Game UI'</c>
<c>Microsoft.XboxGameOverlay 'Xbox Game Bar Plugin'</c>
<c>Microsoft.XboxGamingOverlay 'Xbox Game Bar'</c>
<c>Microsoft.XboxSpeechToTextOverlay 'Xbox Game Speech Window'</c>
<c>Microsoft.YourPhone 'Your Phone'</c>
<c>Microsoft.ZuneMusic 'Groove Music'</c>
<c>Microsoft.ZuneVideo 'Movies &amp; TV'</c>
<c>midi 'Microsoft GS Wavetable SW Synth (MIDI)'</c>
<c>mixedreality 'Windows Mixed Reality'</c>
<c>mmga 'MMGA MAPI'</c>
<c>mobilepc</c>
<c>mobilepc_location 'Location notifications'</c>
<c>mobilepc_networkprojection 'Network Projection'</c>
<c>mobilepc_sensors 'Sensors'</c>
<c>msmq 'Microsoft Message Queue (MSMQ)'</c>
<c>netlogon</c>
<c>netqos 'Quality of Service Packet Scheduler (QoS)'</c>
<c>nettopology 'Link-Layer Topology Discovery protocol (LLTD)'</c>
<c>nfc 'Near Field Communication (NFC)'</c>
<c>nfsclient 'NFS Administrative Tools'</c>
<c>offlinefiles 'Offline Files'</c>
<c>onedrive</c>
<c>openssh</c>
<c>otherthemes 'Windows Personalization themes'</c>
<c>payments</c>
<c>pdfreader 'Windows Reader (PDF)'</c>
<c>peertopeer 'Peer Networking'</c>
<c>phonesvc 'Phone Service'</c>
<c>photoviewer 'Photo Viewer'</c>
<c>photoviewer32 'Photo Viewer - 32 bit'</c>
<c>picturepassword 'Picture password'</c>
<c>pos 'Point of Service (POS)'</c>
<c>pushtoinstall 'Windows PushToInstall Service'</c>
<c>rasauto 'Remote Access Auto Connection Manager'</c>
<c>rascmd 'Remote Access Service Client Tools'</c>
<c>rasmans 'Remote Access Connection Manager'</c>
<c>rdc 'Remote Differential Compression (RDC)'</c>
<c>rdpserver 'Remote Desktop Server'</c>
<c>rdpserverlic 'Remote Desktop Licensing'</c>
<c>remoteaccessservice 'Routing and Remote Access Service'</c>
<c>remoteaccesssupport 'Routing and Remote Access support'</c>
<c>remoteassistance 'Remote Assistance'</c>
<c>remotefx</c>
<c>remoteportredirector 'Remote Desktop Services Port Redirector'</c>
<c>remoteregistry 'Remote Registry'</c>
<c>retaildemo 'Retail Demo Content'</c>
<c>sendmail 'Send To Mail and Desktop'</c>
<c>settingsync 'Setting Sync'</c>
<c>sharedaccess 'Internet Connection Sharing (ICS)'</c>
<c>sharedpc 'Shared PC mode'</c>
<c>sharehost32 'Share Host - 32 bit'</c>
<c>sihclient 'Server-Initiated Healing Client'</c>
<c>simpletcp 'Simple TCP/IP services'</c>
<c>skypeortc 'Skype ORTC'</c>
<c>smsrouter 'SMS Router Service'</c>
<c>soundsdefault 'Sounds (Default)'</c>
<c>soundthemes 'Sound Themes'</c>
<c>sourcessxsdir 'Manual feature repository'</c>
<c>speechapi 'Speech API'</c>
<c>speechcommon 'Speech Recognition'</c>
<c>speechtts 'Speech TTS'</c>
<c>staticfontcache 'Static Font Cache'</c>
<c>stepsrecorder 'Steps Recorder'</c>
<c>supportdir 'Support directory'</c>
<c>synccenter 'Sync Center'</c>
<c>tabletextservice 'Table Text Service'</c>
<c>telnetclient 'Telnet Client'</c>
<c>tempcache 'Cache and temp files'</c>
<c>tftpclient 'TFTP client'</c>
<c>trkwks 'Distributed Link Tracking Client'</c>
<c>unp 'Universal Notification Platform (UNP)'</c>
<c>userdeviceregistration 'User Device Registration'</c>
<c>vpn 'Virtual Private Network (VPN) support'</c>
<c>wallet 'Wallet Service'</c>
<c>wallpapers 'Wallpapers (Themes)'</c>
<c>webcamexperience 'Webcam Experience'</c>
<c>winai 'Windows AI Machine Learning'</c>
<c>Windows.CBSPreview 'Windows Barcode Preview'</c>
<c>winocr 'Windows TIFF IFilter (OCR)'</c>
<c>wwanautoconfig 'WWAN AutoConfig'</c>
<c>xbox 'Xbox - Core'</c>
</RemoveComponents>
<Compatibility protectHidden="true">
<ComponentFeatures>
<Feature enabled="no">AppGuard</Feature>
<Feature enabled="no">YubiKey</Feature>
<Feature enabled="no">Bluetooth</Feature>
<Feature enabled="no">CapFrameX</Feature>
<Feature enabled="no">Discord</Feature>
<Feature enabled="no">FileSharing</Feature>
<Feature enabled="no">Hyper-V</Feature>
<Feature enabled="no">iCloud</Feature>
<Feature enabled="no">ManualSetup</Feature>
<Feature enabled="no">OfficeSupport</Feature>
<Feature enabled="no">AppxSupport</Feature>
<Feature enabled="no">Netflix</Feature>
<Feature enabled="no">NetworkDiscovery</Feature>
<Feature enabled="no">NightLight</Feature>
<Feature enabled="no">NvidiaSetup</Feature>
<Feature enabled="no">OOBE</Feature>
<Feature enabled="no">Printing</Feature>
<Feature enabled="no">Recommended-All</Feature>
<Feature enabled="no">SamsungSwitch</Feature>
<Feature enabled="no">Scanning</Feature>
<Feature enabled="no">ServicingStack</Feature>
<Feature enabled="no">ShellSearchSupport</Feature>
<Feature enabled="no">Spotify</Feature>
<Feature enabled="no">SFC</Feature>
<Feature enabled="no">DefaultFonts</Feature>
<Feature enabled="no">SafeMode</Feature>
<Feature enabled="no">TeamViewer</Feature>
<Feature enabled="no">Recommended-Tablet</Feature>
<Feature enabled="no">USBModem</Feature>
<Feature enabled="no">USB</Feature>
<Feature enabled="no">VideoPlayback</Feature>
<Feature enabled="no">VPN</Feature>
<Feature enabled="no">VisualStudio</Feature>
<Feature enabled="no">VSS</Feature>
<Feature enabled="no">ActivationKMS</Feature>
<Feature enabled="no">Activation</Feature>
<Feature enabled="no">WindowsStore</Feature>
<Feature enabled="no">WindowsUpdate</Feature>
<Feature enabled="no">WLAN</Feature>
</ComponentFeatures>
<MachineDrivers>
<Machine enabled="no">HostMachine</Machine>
<Machine enabled="no">Hyper-V VM</Machine>
<Machine enabled="no">Parallels VM</Machine>
<Machine enabled="no">Virtual Box VM</Machine>
<Machine enabled="no">VMware VM</Machine>
</MachineDrivers>
</Compatibility>
<Features></Features>
<Packages></Packages>
<Commands>
<PostUpdates>
<!--<Command>cmd /c echo Example from [MOUNTDIR]\Windows &amp; pause</Command>-->
<!--<Command>dism /image:[MOUNTDIR] /get-intl</Command>-->
</PostUpdates>
</Commands>
<Drivers showHidden="true"></Drivers>
<Unattended mode="0">
<OEMSetupComplete>false</OEMSetupComplete>
<AnswerFileLocationPanther>false</AnswerFileLocationPanther>
<AnswerFileLocationBoot>false</AnswerFileLocationBoot>
<SaveBothArch>false</SaveBothArch>
<EditionPrompt>false</EditionPrompt>
<settings pass="windowsPE">
<component name="Microsoft-Windows-Setup">
<DynamicUpdate>
<WillShowUI>OnError</WillShowUI>
</DynamicUpdate>
<ImageInstall>
<OSImage>
<WillShowUI>OnError</WillShowUI>
<InstallFrom>
<MetaData>
<Key>/IMAGE/INDEX</Key>
<Value>1</Value>
</MetaData>
</InstallFrom>
</OSImage>
</ImageInstall>
<UserData>
<ProductKey>
<Key></Key>
</ProductKey>
</UserData>
</component>
</settings>
</Unattended>
<Tweaks>
<Settings></Settings>
<Services></Services>
<ExtraServices></ExtraServices>
<ScheduledTasks></ScheduledTasks>
</Tweaks>
<ApplyOptions>
<ImageTasks>
<Task>imageSaveRebuild</Task>
<Task>imageFormatWim</Task>
</ImageTasks>
<AutoIsoFile>NTLite.iso</AutoIsoFile>
<AutoIsoLabel>NTLite</AutoIsoLabel>
<AutoSplitSize>4000</AutoSplitSize>
<CleanHotfixedLeftovers>0</CleanHotfixedLeftovers>
<OptimizeAppX>false</OptimizeAppX>
<ReuseDriverCache>false</ReuseDriverCache>
</ApplyOptions>
<Execution>
<Remove></Remove>
<Change></Change>
<Add></Add>
</Execution>
<Registry></Registry>
</Preset>

View File

@ -0,0 +1,841 @@
<?xml version="1.0" encoding="utf-8"?>
<Preset xmlns="urn:schemas-nliteos-com:pn.v1">
<Date>02/07/2023 16:44:17</Date>
<AppInfo>
<Version>2.3.9.9020</Version>
<Licensed>Yes</Licensed>
<Protections>Yes</Protections>
<Host>Windows 10 Pro (20H2) x64 - 10.0.19042.1706 (en-US)</Host>
</AppInfo>
<ImageInfo>
<Version mode="offline">Windows 10 Professional (20H2) x64 - 10.0.19042.508 (en-US)</Version>
<GUID>{51440991-EBCC-4F7E-B386-B9F6CCD00195}</GUID>
</ImageInfo>
<RemoveComponents AppRemovalMode="DISM">
<c>aarsvc 'Agent Activation Runtime'</c>
<c>accessibility_magnifier 'Screen Magnifier'</c>
<c>accessibility_narrator 'Narrator'</c>
<c>activedirectory 'Active Directory'</c>
<c>adamclient 'Active Directory Lightweight Directory Services (AD LDS)'</c>
<c>alg 'Application Layer Gateway Service'</c>
<c>alljoyn 'AllJoyn Router Service'</c>
<c>appv 'Application Virtualization (App-V)'</c>
<c>assignedaccess 'Assigned Access'</c>
<c>azuread 'Azure Active Directory'</c>
<c>backgroundtransfer 'Networking Background Transfer'</c>
<c>branchcacheclient 'BranchCache Client'</c>
<c>ceip 'CEIP (SQM)'</c>
<c>cloudfiles 'Cloud Files API'</c>
<c>datacenterbridging 'Data Center Bridging (DCB)'</c>
<c>desktopactivitymoderator 'Desktop Activity Moderator (DAM)'</c>
<c>desktopimgdownldr 'Desktop image downloader'</c>
<c>diskquota 'Disk Quota'</c>
<c>diskquota32 'Disk Quota - 32 bit'</c>
<c>driver_61883.inf</c>
<c>driver_c_61883.inf</c>
<c>driver_c_barcodescanner.inf</c>
<c>driver_c_biometric.inf</c>
<c>driver_c_cashdrawer.inf</c>
<c>driver_c_holographic.inf</c>
<c>driver_c_infrared.inf</c>
<c>driver_c_linedisplay.inf</c>
<c>driver_c_magneticstripereader.inf</c>
<c>driver_c_mcx.inf</c>
<c>driver_c_mediumchanger.inf</c>
<c>driver_c_pcmcia.inf</c>
<c>driver_c_receiptprinter.inf</c>
<c>driver_c_smartcardreader.inf</c>
<c>driver_c_tapedrive.inf</c>
<c>driver_cht4vx64.inf</c>
<c>driver_dc1-controller.inf</c>
<c>driver_fusionv2.inf</c>
<c>driver_hidir.inf</c>
<c>driver_hidirkbd.inf</c>
<c>driver_hidscanner.inf</c>
<c>driver_idtsec.inf</c>
<c>driver_iscsi.inf</c>
<c>driver_mchgr.inf</c>
<c>driver_mdm3com.inf</c>
<c>driver_mdm5674a.inf</c>
<c>driver_mdmadc.inf</c>
<c>driver_mdmagm64.inf</c>
<c>driver_mdmags64.inf</c>
<c>driver_mdmairte.inf</c>
<c>driver_mdmaiwa.inf</c>
<c>driver_mdmaiwa3.inf</c>
<c>driver_mdmaiwa4.inf</c>
<c>driver_mdmaiwa5.inf</c>
<c>driver_mdmaiwat.inf</c>
<c>driver_mdmar1.inf</c>
<c>driver_mdmarch.inf</c>
<c>driver_mdmarn.inf</c>
<c>driver_mdmati.inf</c>
<c>driver_mdmatm2k.inf</c>
<c>driver_mdmaus.inf</c>
<c>driver_mdmboca.inf</c>
<c>driver_mdmbsb.inf</c>
<c>driver_mdmbug3.inf</c>
<c>driver_mdmbw561.inf</c>
<c>driver_mdmc26a.inf</c>
<c>driver_mdmcdp.inf</c>
<c>driver_mdmcm28.inf</c>
<c>driver_mdmcodex.inf</c>
<c>driver_mdmcom1.inf</c>
<c>driver_mdmcommu.inf</c>
<c>driver_mdmcomp.inf</c>
<c>driver_mdmcpq.inf</c>
<c>driver_mdmcpq2.inf</c>
<c>driver_mdmcpv.inf</c>
<c>driver_mdmcrtix.inf</c>
<c>driver_mdmcxhv6.inf</c>
<c>driver_mdmcxpv6.inf</c>
<c>driver_mdmdcm5.inf</c>
<c>driver_mdmdcm6.inf</c>
<c>driver_mdmdf56f.inf</c>
<c>driver_mdmdgitn.inf</c>
<c>driver_mdmdp2.inf</c>
<c>driver_mdmdsi.inf</c>
<c>driver_mdmdyna.inf</c>
<c>driver_mdmeiger.inf</c>
<c>driver_mdmelsa.inf</c>
<c>driver_mdmeric.inf</c>
<c>driver_mdmeric2.inf</c>
<c>driver_mdmetech.inf</c>
<c>driver_mdmfj2.inf</c>
<c>driver_mdmgatew.inf</c>
<c>driver_mdmgcs.inf</c>
<c>driver_mdmgen.inf</c>
<c>driver_mdmgl001.inf</c>
<c>driver_mdmgl002.inf</c>
<c>driver_mdmgl003.inf</c>
<c>driver_mdmgl004.inf</c>
<c>driver_mdmgl005.inf</c>
<c>driver_mdmgl006.inf</c>
<c>driver_mdmgl007.inf</c>
<c>driver_mdmgl008.inf</c>
<c>driver_mdmgl009.inf</c>
<c>driver_mdmgl010.inf</c>
<c>driver_mdmgsm.inf</c>
<c>driver_mdmhaeu.inf</c>
<c>driver_mdmhandy.inf</c>
<c>driver_mdmhay2.inf</c>
<c>driver_mdmhayes.inf</c>
<c>driver_mdminfot.inf</c>
<c>driver_mdmiodat.inf</c>
<c>driver_mdmirmdm.inf</c>
<c>driver_mdmisdn.inf</c>
<c>driver_mdmjf56e.inf</c>
<c>driver_mdmke.inf</c>
<c>driver_mdmkortx.inf</c>
<c>driver_mdmlasat.inf</c>
<c>driver_mdmlasno.inf</c>
<c>driver_mdmlucnt.inf</c>
<c>driver_mdmmc288.inf</c>
<c>driver_mdmmcd.inf</c>
<c>driver_mdmmcom.inf</c>
<c>driver_mdmmct.inf</c>
<c>driver_mdmmega.inf</c>
<c>driver_mdmmetri.inf</c>
<c>driver_mdmmhrtz.inf</c>
<c>driver_mdmmhzel.inf</c>
<c>driver_mdmminij.inf</c>
<c>driver_mdmmod.inf</c>
<c>driver_mdmmot64.inf</c>
<c>driver_mdmmoto1.inf</c>
<c>driver_mdmmotou.inf</c>
<c>driver_mdmmts.inf</c>
<c>driver_mdmneuhs.inf</c>
<c>driver_mdmnis1u.inf</c>
<c>driver_mdmnis2u.inf</c>
<c>driver_mdmnis3t.inf</c>
<c>driver_mdmnis5t.inf</c>
<c>driver_mdmnokia.inf</c>
<c>driver_mdmnova.inf</c>
<c>driver_mdmntt1.inf</c>
<c>driver_mdmnttd2.inf</c>
<c>driver_mdmnttd6.inf</c>
<c>driver_mdmnttme.inf</c>
<c>driver_mdmnttp.inf</c>
<c>driver_mdmnttp2.inf</c>
<c>driver_mdmnttte.inf</c>
<c>driver_mdmolic.inf</c>
<c>driver_mdmomrn3.inf</c>
<c>driver_mdmoptn.inf</c>
<c>driver_mdmosi.inf</c>
<c>driver_mdmpace.inf</c>
<c>driver_mdmpenr.inf</c>
<c>driver_mdmpin.inf</c>
<c>driver_mdmpn1.inf</c>
<c>driver_mdmpp.inf</c>
<c>driver_mdmpsion.inf</c>
<c>driver_mdmracal.inf</c>
<c>driver_mdmrock.inf</c>
<c>driver_mdmrock3.inf</c>
<c>driver_mdmrock4.inf</c>
<c>driver_mdmrock5.inf</c>
<c>driver_mdmsier.inf</c>
<c>driver_mdmsii64.inf</c>
<c>driver_mdmsmart.inf</c>
<c>driver_mdmsonyu.inf</c>
<c>driver_mdmsun1.inf</c>
<c>driver_mdmsun2.inf</c>
<c>driver_mdmsupr3.inf</c>
<c>driver_mdmsupra.inf</c>
<c>driver_mdmsuprv.inf</c>
<c>driver_mdmtdk.inf</c>
<c>driver_mdmtdkj2.inf</c>
<c>driver_mdmtdkj3.inf</c>
<c>driver_mdmtdkj4.inf</c>
<c>driver_mdmtdkj5.inf</c>
<c>driver_mdmtdkj6.inf</c>
<c>driver_mdmtdkj7.inf</c>
<c>driver_mdmtexas.inf</c>
<c>driver_mdmti.inf</c>
<c>driver_mdmtkr.inf</c>
<c>driver_mdmtron.inf</c>
<c>driver_mdmusrf.inf</c>
<c>driver_mdmusrg.inf</c>
<c>driver_mdmusrgl.inf</c>
<c>driver_mdmusrk1.inf</c>
<c>driver_mdmusrsp.inf</c>
<c>driver_mdmvdot.inf</c>
<c>driver_mdmvv.inf</c>
<c>driver_mdmwhql0.inf</c>
<c>driver_mdmx5560.inf</c>
<c>driver_mdmzoom.inf</c>
<c>driver_mdmzyp.inf</c>
<c>driver_mdmzyxel.inf</c>
<c>driver_mdmzyxlg.inf</c>
<c>driver_mgtdyn.inf</c>
<c>driver_miradisp.inf</c>
<c>driver_msclmd.inf</c>
<c>driver_oposdrv.inf</c>
<c>driver_pcmcia.inf</c>
<c>driver_perceptionsimulationheadset.inf</c>
<c>driver_rdpbus.inf</c>
<c>driver_rdvgwddmdx11.inf</c>
<c>driver_remoteposdrv.inf</c>
<c>driver_sensorshidclassdriver.inf</c>
<c>driver_sensorsservicedriver.inf</c>
<c>driver_tape.inf</c>
<c>driver_termkbd.inf</c>
<c>driver_termmou.inf</c>
<c>driver_tpm.inf</c>
<c>driver_tpmvsc.inf</c>
<c>driver_ts_generic.inf</c>
<c>driver_tsgenericusbdriver.inf</c>
<c>driver_tsprint.inf</c>
<c>driver_tsusbhubfilter.inf</c>
<c>driver_usbcciddriver.inf</c>
<c>driver_usbcir.inf</c>
<c>driver_wdmvsc.inf</c>
<c>driver_wfcvsc.inf</c>
<c>driver_wgencounter.inf</c>
<c>driver_whvcrash.inf</c>
<c>driver_whyperkbd.inf</c>
<c>driver_wnetvsc.inf</c>
<c>driver_ws3cap.inf</c>
<c>driver_wstorflt.inf</c>
<c>driver_wstorvsc.inf</c>
<c>driver_wsynth3dvsc.inf</c>
<c>driver_wudfusbcciddriver.inf</c>
<c>driver_wvmbushid.inf</c>
<c>driver_wvmbusvideo.inf</c>
<c>driver_wvmgid.inf</c>
<c>driver_wvmic.inf</c>
<c>driver_wvmic_ext.inf</c>
<c>driver_wvpci.inf</c>
<c>driver_xboxgipsynthetic.inf</c>
<c>driver_xusb22.inf</c>
<c>E2A4F912-2574-4A75-9BB0-0D023378592B 'App Resolver'</c>
<c>easeofaccessthemes 'Ease Of Access Themes'</c>
<c>edgeupdate 'Microsoft Edge Update'</c>
<c>embeddedmode 'Embedded Mode'</c>
<c>enterpriseclientsync 'Work Folders Client'</c>
<c>exchangeactivesync 'Exchange ActiveSync (EAS)'</c>
<c>F46D4000-FD22-4DB4-AC8E-4E1DDDE828FE 'Add Folder Suggestions dialog'</c>
<c>flashactivex 'Adobe Flash for Internet Explorer'</c>
<c>flashactivex32 'Adobe Flash for Internet Explorer - 32 bit'</c>
<c>folderredirection 'Folder Redirection'</c>
<c>font_arialblack 'Arial Black'</c>
<c>font_bahnschrift 'Bahnschrift'</c>
<c>font_cambria 'Cambria'</c>
<c>font_cambria_regular 'Cambria &amp; Cambria Math'</c>
<c>font_candara 'Candara'</c>
<c>font_comicsansms 'ComicSansMS'</c>
<c>font_constantia 'Constantia'</c>
<c>font_corbel 'Corbel'</c>
<c>font_courier 'Courier'</c>
<c>font_ebrima 'Ebrima'</c>
<c>font_ebrimabold 'Ebrima Bold'</c>
<c>font_franklingothic 'FranklinGothic'</c>
<c>font_gabriola 'Gabriola'</c>
<c>font_gadugi 'Gadugi'</c>
<c>font_gadugibold 'Gadugi Bold'</c>
<c>font_georgia 'Georgia'</c>
<c>font_holomd2 'Holo MDL2 Assets'</c>
<c>font_impact 'Impact'</c>
<c>font_inkfree 'Ink Free'</c>
<c>font_javanesetext 'Javanese Text'</c>
<c>font_leelawadeeui 'LeelawadeeUI'</c>
<c>font_leelawadeeui_regular 'Leelawadee UI'</c>
<c>font_lucidasans 'Lucida Sans Unicode'</c>
<c>font_malgungothicbold 'Malgun Gothic Bold'</c>
<c>font_malgungothicsemilight 'Malgun Gothic SemiLight'</c>
<c>font_microsofthimalaya 'Microsoft Himalaya'</c>
<c>font_microsoftjhenghei 'Microsoft JhengHei &amp; Microsoft JhengHei UI'</c>
<c>font_microsoftjhengheibold 'Microsoft JhengHei Bold &amp; Microsoft JhengHei UI Bold'</c>
<c>font_microsoftjhengheilight 'Microsoft JhengHei Light &amp; Microsoft JhengHei UI Light'</c>
<c>font_microsoftyahei 'Microsoft YaHei &amp; Microsoft YaHei UI'</c>
<c>font_microsoftyaheibold 'Microsoft YaHei Bold &amp; Microsoft YaHei UI Bold'</c>
<c>font_microsoftyaheilight 'Microsoft YaHei Light &amp; Microsoft YaHei UI Light'</c>
<c>font_mingliub 'MingLiU-ExtB &amp; PMingLiU-ExtB &amp; MingLiU_HKSCS-ExtB'</c>
<c>font_mongolianbaiti 'Mongolian Baiti'</c>
<c>font_msgothic 'MS Gothic &amp; MS UI Gothic &amp; MS PGothic'</c>
<c>font_mvboli 'MV Boli'</c>
<c>font_myanmartext 'Myanmar Text'</c>
<c>font_myanmartextbold 'Myanmar Text Bold'</c>
<c>font_newtailue 'Microsoft New Tai Lue'</c>
<c>font_newtailuebold 'Microsoft New Tai Lue Bold'</c>
<c>font_nirmalaui 'NirmalaUI'</c>
<c>font_nirmalaui_regular 'Nirmala UI'</c>
<c>font_palatinolinotype 'PalatinoLinotype'</c>
<c>font_phagspa 'Microsoft PhagsPa'</c>
<c>font_phagspabold 'Microsoft PhagsPa Bold'</c>
<c>font_segoeprint 'Segoe Print'</c>
<c>font_segoeprintbold 'Segoe Print Bold'</c>
<c>font_segoescript 'SegoeScript'</c>
<c>font_segoeui_italicssupplement 'SegoeUI ItalicsSupplement'</c>
<c>font_simsun 'SimSun &amp; NSimSun'</c>
<c>font_simsunb 'SimSun-ExtB'</c>
<c>font_sitka 'Sitka'</c>
<c>font_small 'Small'</c>
<c>font_sylfaen 'Sylfaen'</c>
<c>font_taile 'Microsoft Tai Le'</c>
<c>font_tailebold 'Microsoft Tai Le Bold'</c>
<c>font_trebuchetms 'TrebuchetMS'</c>
<c>font_vector 'Vector'</c>
<c>font_verdana 'Verdana'</c>
<c>font_yibaiti 'Microsoft Yi Baiti'</c>
<c>font_yugothic 'Yu Gothic Regular &amp; Yu Gothic UI Semilight'</c>
<c>font_yugothicbold 'Yu Gothic Bold &amp; Yu Gothic UI Semibold &amp; Yu Gothic UI Bold'</c>
<c>font_yugothiclight 'Yu Gothic Light &amp; Yu Gothic UI Light'</c>
<c>font_yugothicmedium 'Yu Gothic Medium &amp; Yu Gothic UI Regular'</c>
<c>gameexplorer 'Game Explorer'</c>
<c>hwsupport_fax 'Fax'</c>
<c>hwsupport_floppy 'Floppy disk'</c>
<c>hwsupport_infrared 'Infrared devices'</c>
<c>hwsupport_modemsettings 'Shared modem settings (mdmgl*.inf)'</c>
<c>hwsupport_scanner 'Scanner'</c>
<c>hwsupport_smartcard 'Smartcard'</c>
<c>hwsupport_telephony 'Telephony'</c>
<c>hypervguest 'Hyper-V Integration Services'</c>
<c>ias 'Internet Authentication Service (IAS)'</c>
<c>iis 'Internet Information Server (IIS)'</c>
<c>inputswitchtoasthandler 'Input Switch Toast Handler'</c>
<c>insiderhub 'Windows Insider Program'</c>
<c>ipt 'Identity Protection Technology (Intel IPT)'</c>
<c>ipxlatcfg 'IP Translation Configuration Service'</c>
<c>iscsi 'iSCSI Initiator'</c>
<c>isoburn 'Windows Disc Image Burning Tool'</c>
<c>kl-00000401 'Arabic (101)'</c>
<c>kl-00000402 'Bulgarian (Typewriter)'</c>
<c>kl-00000404 'Chinese (Traditional) - US'</c>
<c>kl-00000405 'Czech'</c>
<c>kl-00000406 'Danish'</c>
<c>kl-00000408 'Greek'</c>
<c>kl-0000040a 'Spanish'</c>
<c>kl-0000040b 'Finnish'</c>
<c>kl-0000040c 'French'</c>
<c>kl-0000040d 'Hebrew'</c>
<c>kl-0000040e 'Hungarian'</c>
<c>kl-0000040f 'Icelandic'</c>
<c>kl-00000410 'Italian'</c>
<c>kl-00000411 'Japanese'</c>
<c>kl-00000412 'Korean'</c>
<c>kl-00000413 'Dutch'</c>
<c>kl-00000414 'Norwegian'</c>
<c>kl-00000415 'Polish (Programmers)'</c>
<c>kl-00000416 'Portuguese (Brazil ABNT)'</c>
<c>kl-00000418 'Romanian (Legacy)'</c>
<c>kl-00000419 'Russian'</c>
<c>kl-0000041a 'Standard'</c>
<c>kl-0000041b 'Slovak'</c>
<c>kl-0000041c 'Albanian'</c>
<c>kl-0000041d 'Swedish'</c>
<c>kl-0000041e 'Thai Kedmanee'</c>
<c>kl-0000041f 'Turkish Q'</c>
<c>kl-00000420 'Urdu'</c>
<c>kl-00000422 'Ukrainian'</c>
<c>kl-00000423 'Belarusian'</c>
<c>kl-00000424 'Slovenian'</c>
<c>kl-00000425 'Estonian'</c>
<c>kl-00000426 'Latvian'</c>
<c>kl-00000427 'Lithuanian IBM'</c>
<c>kl-00000428 'Tajik'</c>
<c>kl-00000429 'Persian'</c>
<c>kl-0000042a 'Vietnamese'</c>
<c>kl-0000042b 'Armenian Eastern (Legacy)'</c>
<c>kl-0000042c 'Azerbaijani Latin'</c>
<c>kl-0000042e 'Sorbian Standard (Legacy)'</c>
<c>kl-0000042f 'Macedonian (North Macedonia)'</c>
<c>kl-00000432 'Setswana'</c>
<c>kl-00000437 'Georgian (Legacy)'</c>
<c>kl-00000438 'Faeroese'</c>
<c>kl-00000439 'Devanagari - INSCRIPT'</c>
<c>kl-0000043a 'Maltese 47-Key'</c>
<c>kl-0000043b 'Norwegian with Sami'</c>
<c>kl-0000043f 'Kazakh'</c>
<c>kl-00000440 'Kyrgyz Cyrillic'</c>
<c>kl-00000442 'Turkmen'</c>
<c>kl-00000444 'Tatar (Legacy)'</c>
<c>kl-00000445 'Bangla'</c>
<c>kl-00000446 'Punjabi'</c>
<c>kl-00000447 'Gujarati'</c>
<c>kl-00000448 'Odia'</c>
<c>kl-00000449 'Tamil'</c>
<c>kl-0000044a 'Telugu'</c>
<c>kl-0000044b 'Kannada'</c>
<c>kl-0000044c 'Malayalam'</c>
<c>kl-0000044d 'Assamese - INSCRIPT'</c>
<c>kl-0000044e 'Marathi'</c>
<c>kl-00000450 'Mongolian Cyrillic'</c>
<c>kl-00000451 'Tibetan (PRC)'</c>
<c>kl-00000452 'United Kingdom Extended'</c>
<c>kl-00000453 'Khmer'</c>
<c>kl-00000454 'Lao'</c>
<c>kl-0000045a 'Syriac'</c>
<c>kl-0000045b 'Sinhala'</c>
<c>kl-0000045c 'Cherokee Nation'</c>
<c>kl-00000461 'Nepali'</c>
<c>kl-00000463 'Pashto (Afghanistan)'</c>
<c>kl-00000465 'Divehi Phonetic'</c>
<c>kl-00000468 'Hausa'</c>
<c>kl-0000046a 'Yoruba'</c>
<c>kl-0000046c 'Sesotho sa Leboa'</c>
<c>kl-0000046d 'Bashkir'</c>
<c>kl-0000046e 'Luxembourgish'</c>
<c>kl-0000046f 'Greenlandic'</c>
<c>kl-00000470 'Igbo'</c>
<c>kl-00000474 'Guarani'</c>
<c>kl-00000475 'Hawaiian'</c>
<c>kl-00000480 'Uyghur (Legacy)'</c>
<c>kl-00000481 'Maori'</c>
<c>kl-00000485 'Sakha'</c>
<c>kl-00000488 'Wolof'</c>
<c>kl-00000492 'Central Kurdish'</c>
<c>kl-00000804 'Chinese (Simplified) - US'</c>
<c>kl-00000807 'Swiss German'</c>
<c>kl-00000809 'United Kingdom'</c>
<c>kl-0000080a 'Latin American'</c>
<c>kl-0000080c 'Belgian French'</c>
<c>kl-00000813 'Belgian (Period)'</c>
<c>kl-00000816 'Portuguese'</c>
<c>kl-0000081a 'Serbian (Latin)'</c>
<c>kl-0000082c 'Azerbaijani Cyrillic'</c>
<c>kl-0000083b 'Swedish with Sami'</c>
<c>kl-00000843 'Uzbek Cyrillic'</c>
<c>kl-00000850 'Mongolian (Mongolian Script)'</c>
<c>kl-0000085d 'Inuktitut - Latin'</c>
<c>kl-0000085f 'Central Atlas Tamazight'</c>
<c>kl-00000c04 'Chinese (Traditional, Hong Kong S.A.R.) - US'</c>
<c>kl-00000c0c 'Canadian French (Legacy)'</c>
<c>kl-00000c1a 'Serbian (Cyrillic)'</c>
<c>kl-00000c51 'Dzongkha'</c>
<c>kl-00001004 'Chinese (Simplified, Singapore) - US'</c>
<c>kl-00001009 'Canadian French'</c>
<c>kl-0000100c 'Swiss French'</c>
<c>kl-0000105f 'Tifinagh (Basic)'</c>
<c>kl-00001404 'Chinese (Traditional, Macao S.A.R.) - US'</c>
<c>kl-00001809 'Irish'</c>
<c>kl-0000201a 'Bosnian (Cyrillic)'</c>
<c>kl-00004009 'English (India)'</c>
<c>kl-00010401 'Arabic (102)'</c>
<c>kl-00010402 'Bulgarian (Latin)'</c>
<c>kl-00010405 'Czech (QWERTY)'</c>
<c>kl-00010407 'German (IBM)'</c>
<c>kl-00010408 'Greek (220)'</c>
<c>kl-00010409 'United States-Dvorak'</c>
<c>kl-0001040a 'Spanish Variation'</c>
<c>kl-0001040e 'Hungarian 101-key'</c>
<c>kl-00010410 'Italian (142)'</c>
<c>kl-00010415 'Polish (214)'</c>
<c>kl-00010416 'Portuguese (Brazil ABNT2)'</c>
<c>kl-00010418 'Romanian (Standard)'</c>
<c>kl-00010419 'Russian (Typewriter)'</c>
<c>kl-0001041b 'Slovak (QWERTY)'</c>
<c>kl-0001041e 'Thai Pattachote'</c>
<c>kl-0001041f 'Turkish F'</c>
<c>kl-00010426 'Latvian (QWERTY)'</c>
<c>kl-00010427 'Lithuanian'</c>
<c>kl-0001042b 'Armenian Western (Legacy)'</c>
<c>kl-0001042c 'Azerbaijani (Standard)'</c>
<c>kl-0001042e 'Sorbian Extended'</c>
<c>kl-0001042f 'Macedonian (North Macedonia) - Standard'</c>
<c>kl-00010437 'Georgian (QWERTY)'</c>
<c>kl-00010439 'Hindi Traditional'</c>
<c>kl-0001043a 'Maltese 48-Key'</c>
<c>kl-0001043b 'Sami Extended Norway'</c>
<c>kl-00010444 'Tatar'</c>
<c>kl-00010445 'Bangla - INSCRIPT (Legacy)'</c>
<c>kl-00010451 'Tibetan (PRC) - Updated'</c>
<c>kl-00010453 'Khmer (NIDA)'</c>
<c>kl-0001045a 'Syriac Phonetic'</c>
<c>kl-0001045b 'Sinhala - Wij 9'</c>
<c>kl-0001045c 'Cherokee Phonetic'</c>
<c>kl-0001045d 'Inuktitut - Naqittaut'</c>
<c>kl-00010465 'Divehi Typewriter'</c>
<c>kl-00010480 'Uyghur'</c>
<c>kl-0001080c 'Belgian (Comma)'</c>
<c>kl-0001083b 'Finnish with Sami'</c>
<c>kl-00010850 'Traditional Mongolian (Standard)'</c>
<c>kl-00010c00 'Myanmar (Phonetic order)'</c>
<c>kl-00011009 'Canadian Multilingual Standard'</c>
<c>kl-0001105f 'Tifinagh (Extended)'</c>
<c>kl-00011809 'Scottish Gaelic'</c>
<c>kl-00020401 'Arabic (102) AZERTY'</c>
<c>kl-00020402 'Bulgarian (Phonetic)'</c>
<c>kl-00020405 'Czech Programmers'</c>
<c>kl-00020408 'Greek (319)'</c>
<c>kl-00020409 'United States-International'</c>
<c>kl-0002040d 'Hebrew (Standard)'</c>
<c>kl-00020418 'Romanian (Programmers)'</c>
<c>kl-00020419 'Russian - Mnemonic'</c>
<c>kl-0002041e 'Thai Kedmanee (non-ShiftLock)'</c>
<c>kl-00020422 'Ukrainian (Enhanced)'</c>
<c>kl-00020426 'Latvian (Standard)'</c>
<c>kl-00020427 'Lithuanian Standard'</c>
<c>kl-0002042b 'Armenian Phonetic'</c>
<c>kl-0002042e 'Sorbian Standard'</c>
<c>kl-00020437 'Georgian (Ergonomic)'</c>
<c>kl-00020445 'Bangla - INSCRIPT'</c>
<c>kl-00020449 'Tamil 99'</c>
<c>kl-0002083b 'Sami Extended Finland-Sweden'</c>
<c>kl-00020c00 'New Tai Lue'</c>
<c>kl-00030402 'Bulgarian'</c>
<c>kl-00030408 'Greek (220) Latin'</c>
<c>kl-0003041e 'Thai Pattachote (non-ShiftLock)'</c>
<c>kl-0003042b 'Armenian Typewriter'</c>
<c>kl-00030437 'Georgian (MES)'</c>
<c>kl-00030c00 'Tai Le'</c>
<c>kl-00040402 'Bulgarian (Phonetic Traditional)'</c>
<c>kl-00040408 'Greek (319) Latin'</c>
<c>kl-00040437 'Georgian (Old Alphabets)'</c>
<c>kl-00040c00 'Ogham'</c>
<c>kl-00050408 'Greek Latin'</c>
<c>kl-00050409 'US English Table for IBM Arabic 238_L'</c>
<c>kl-00050429 'Persian (Standard)'</c>
<c>kl-00060408 'Greek Polytonic'</c>
<c>kl-00070c00 'Lisu (Basic)'</c>
<c>kl-00080c00 'Lisu (Standard)'</c>
<c>kl-00090c00 'N’Ko'</c>
<c>kl-000a0c00 'Phags-pa'</c>
<c>kl-000b0c00 'Buginese'</c>
<c>kl-000c0c00 'Gothic'</c>
<c>kl-000d0c00 'Ol Chiki'</c>
<c>kl-000e0c00 'Osmanya'</c>
<c>kl-000f0c00 'Old Italic'</c>
<c>kl-00100c00 'Sora'</c>
<c>kl-00110c00 'Javanese'</c>
<c>kl-00120c00 'Futhark'</c>
<c>kl-00130c00 'Myanmar (Visual order)'</c>
<c>kl-00140c00 'ADLaM'</c>
<c>kl-00150c00 'Osage'</c>
<c>kmsbroker 'KMS Connection Broker'</c>
<c>langarabic 'Arabic'</c>
<c>langbulgarian 'Bulgarian'</c>
<c>langchineses 'Chinese Simplified'</c>
<c>langchineset 'Chinese Traditional'</c>
<c>langcroatian 'Croatian'</c>
<c>langczech 'Czech'</c>
<c>langdanish 'Danish'</c>
<c>langdutch 'Dutch'</c>
<c>langenglishgb 'English (GB)'</c>
<c>langestonian 'Estonian'</c>
<c>langfinnish 'Finnish'</c>
<c>langfrench 'French'</c>
<c>langfrenchcanadian 'French (Canadian)'</c>
<c>langgreek 'Greek'</c>
<c>langhebrew 'Hebrew'</c>
<c>langhungarian 'Hungarian'</c>
<c>langime 'Input Method Editor (IME)'</c>
<c>langimejp 'Japanese (IME)'</c>
<c>langimeko 'Korean (IME)'</c>
<c>langimetc 'Chinese Traditional (IME)'</c>
<c>langitalian 'Italian'</c>
<c>langjapanese 'Japanese'</c>
<c>langkorean 'Korean'</c>
<c>langlatvian 'Latvian'</c>
<c>langlithuanian 'Lithuanian'</c>
<c>langnorwegian 'Norwegian'</c>
<c>langpolish 'Polish'</c>
<c>langportuguesebr 'Portuguese (Brazilian)'</c>
<c>langportuguesept 'Portuguese'</c>
<c>langromanian 'Romanian'</c>
<c>langrussian 'Russian'</c>
<c>langserbian 'Serbian'</c>
<c>langslovak 'Slovak'</c>
<c>langslovenian 'Slovenian'</c>
<c>langspanish 'Spanish'</c>
<c>langswedish 'Swedish'</c>
<c>langtamil 'Tamil'</c>
<c>langthai 'Thai'</c>
<c>langturkish 'Turkish'</c>
<c>langukrainian 'Ukrainian'</c>
<c>lockscreens 'Lock Screen backgrounds'</c>
<c>lpasvc 'Local Profile Assistant Service'</c>
<c>mail 'Windows Mail'</c>
<c>mailcommdll 'Windows Mail Communications Library'</c>
<c>manualsetup 'Manual Setup'</c>
<c>mapcontrol 'Map Control'</c>
<c>mediaplayer 'Windows Media Player'</c>
<c>mediaplayer32 'Windows Media Player - 32 bit'</c>
<c>mediaplayernetworksharing 'WMP Network Sharing Service'</c>
<c>mediaplayernetworksharing32 'WMP Network Sharing Service - 32 bit'</c>
<c>messagingsvc 'Messaging Service'</c>
<c>Microsoft.549981C3F5F10 'Cortana'</c>
<c>Microsoft.Advertising.Xaml 'Microsoft Advertising SDK for XAML'</c>
<c>Microsoft.AsyncTextService 'AsyncTextService'</c>
<c>Microsoft.BingWeather 'MSN Weather'</c>
<c>Microsoft.BioEnrollment 'Windows Hello Setup'</c>
<c>Microsoft.CredDialogHost 'Credential Dialog'</c>
<c>Microsoft.ECApp 'Eye Control'</c>
<c>Microsoft.GetHelp 'Get Help'</c>
<c>Microsoft.Getstarted 'Tips (Get Started)'</c>
<c>Microsoft.HEIFImageExtension 'HEIF-Bilderweiterungen'</c>
<c>Microsoft.Microsoft3DViewer '3D-Viewer'</c>
<c>Microsoft.MicrosoftEdge.Stable 'Microsoft Edge (Chromium)'</c>
<c>Microsoft.MicrosoftEdge 'Microsoft Edge (Legacy)'</c>
<c>Microsoft.MicrosoftEdgeDevToolsClient 'Microsoft Edge DevTools Client'</c>
<c>Microsoft.MicrosoftOfficeHub 'Office'</c>
<c>Microsoft.MicrosoftSolitaireCollection 'Microsoft Solitaire Collection'</c>
<c>Microsoft.MicrosoftStickyNotes 'Microsoft Sticky Notes'</c>
<c>Microsoft.MixedReality.Portal 'Mixed Reality Portal'</c>
<c>Microsoft.MSPaint 'Paint 3D'</c>
<c>Microsoft.Office.OneNote 'OneNote'</c>
<c>Microsoft.People 'Microsoft People'</c>
<c>Microsoft.ScreenSketch 'Snip &amp; Sketch'</c>
<c>Microsoft.Services.Store.Engagement 'Microsoft Engagement Framework'</c>
<c>Microsoft.SkypeApp 'Skype'</c>
<c>Microsoft.StorePurchaseApp 'Store Experience Host'</c>
<c>Microsoft.VP9VideoExtensions 'VP9-Videoerweiterungen'</c>
<c>Microsoft.Wallet 'Microsoft Pay'</c>
<c>Microsoft.WebMediaExtensions 'Web Media Extensions'</c>
<c>Microsoft.WebpImageExtension 'Webp-Bilderweiterungen'</c>
<c>Microsoft.Win32WebViewHost 'Desktop App Web Viewer'</c>
<c>Microsoft.Windows.Apprep.ChxApp 'SmartScreen'</c>
<c>Microsoft.Windows.AssignedAccessLockApp 'Assigned Access Lock app'</c>
<c>Microsoft.Windows.CallingShellApp 'Call'</c>
<c>Microsoft.Windows.CapturePicker 'Capture Picker'</c>
<c>Microsoft.Windows.ContentDeliveryManager 'Content Delivery Manager'</c>
<c>Microsoft.Windows.NarratorQuickStart 'Narrator'</c>
<c>Microsoft.Windows.OOBENetworkCaptivePortal 'Captive Portal Flow'</c>
<c>Microsoft.Windows.ParentalControls 'Microsoft family features'</c>
<c>Microsoft.Windows.Photos 'Microsoft Photos'</c>
<c>Microsoft.Windows.SecureAssessmentBrowser 'PrĂĽfung'</c>
<c>Microsoft.WindowsAlarms 'Windows Alarms &amp; Clock'</c>
<c>Microsoft.WindowsCalculator 'Windows Calculator'</c>
<c>Microsoft.WindowsCamera 'Windows Camera'</c>
<c>microsoft.windowscommunicationsapps 'Mail and Calendar'</c>
<c>Microsoft.WindowsFeedbackHub 'Feedback Hub'</c>
<c>Microsoft.WindowsMaps 'Windows Maps'</c>
<c>Microsoft.WindowsSoundRecorder 'Windows Voice Recorder'</c>
<c>Microsoft.Xbox.TCUI 'Xbox TCUI'</c>
<c>Microsoft.XboxApp 'Xbox'</c>
<c>Microsoft.XboxGameCallableUI 'Xbox Game UI'</c>
<c>Microsoft.XboxGameOverlay 'Xbox Game Bar Plugin'</c>
<c>Microsoft.XboxGamingOverlay 'Xbox Game Bar'</c>
<c>Microsoft.XboxSpeechToTextOverlay 'Xbox Game Speech Window'</c>
<c>Microsoft.YourPhone 'Your Phone'</c>
<c>Microsoft.ZuneMusic 'Groove Music'</c>
<c>Microsoft.ZuneVideo 'Movies &amp; TV'</c>
<c>midi 'Microsoft GS Wavetable SW Synth (MIDI)'</c>
<c>migwiz 'Easy Transfer'</c>
<c>mixedreality 'Windows Mixed Reality'</c>
<c>mmga 'MMGA MAPI'</c>
<c>mobilepc</c>
<c>mobilepc_location 'Location notifications'</c>
<c>mobilepc_networkprojection 'Network Projection'</c>
<c>mobilepc_sensors 'Sensors'</c>
<c>msmq 'Microsoft Message Queue (MSMQ)'</c>
<c>netlogon</c>
<c>netqos 'Quality of Service Packet Scheduler (QoS)'</c>
<c>nettopology 'Link-Layer Topology Discovery protocol (LLTD)'</c>
<c>nfc 'Near Field Communication (NFC)'</c>
<c>nfsclient 'NFS Administrative Tools'</c>
<c>offlinefiles 'Offline Files'</c>
<c>onedrive</c>
<c>openssh</c>
<c>otherthemes 'Windows Personalization themes'</c>
<c>payments</c>
<c>pdfreader 'Windows Reader (PDF)'</c>
<c>peertopeer 'Peer Networking'</c>
<c>phonesvc 'Phone Service'</c>
<c>photoviewer 'Photo Viewer'</c>
<c>photoviewer32 'Photo Viewer - 32 bit'</c>
<c>picturepassword 'Picture password'</c>
<c>pos 'Point of Service (POS)'</c>
<c>pushtoinstall 'Windows PushToInstall Service'</c>
<c>rasauto 'Remote Access Auto Connection Manager'</c>
<c>rascmd 'Remote Access Service Client Tools'</c>
<c>rasmans 'Remote Access Connection Manager'</c>
<c>rdc 'Remote Differential Compression (RDC)'</c>
<c>rdpserver 'Remote Desktop Server'</c>
<c>rdpserverlic 'Remote Desktop Licensing'</c>
<c>remoteaccessservice 'Routing and Remote Access Service'</c>
<c>remoteaccesssupport 'Routing and Remote Access support'</c>
<c>remoteassistance 'Remote Assistance'</c>
<c>remotefx</c>
<c>remoteportredirector 'Remote Desktop Services Port Redirector'</c>
<c>remoteregistry 'Remote Registry'</c>
<c>retaildemo 'Retail Demo Content'</c>
<c>sendmail 'Send To Mail and Desktop'</c>
<c>settingsync 'Setting Sync'</c>
<c>sharedaccess 'Internet Connection Sharing (ICS)'</c>
<c>sharedpc 'Shared PC mode'</c>
<c>sharehost32 'Share Host - 32 bit'</c>
<c>sihclient 'Server-Initiated Healing Client'</c>
<c>simpletcp 'Simple TCP/IP services'</c>
<c>skypeortc 'Skype ORTC'</c>
<c>smsrouter 'SMS Router Service'</c>
<c>soundsdefault 'Sounds (Default)'</c>
<c>soundthemes 'Sound Themes'</c>
<c>sourcessxsdir 'Manual feature repository'</c>
<c>speechapi 'Speech API'</c>
<c>speechcommon 'Speech Recognition'</c>
<c>speechtts 'Speech TTS'</c>
<c>staticfontcache 'Static Font Cache'</c>
<c>stepsrecorder 'Steps Recorder'</c>
<c>supportdir 'Support directory'</c>
<c>synccenter 'Sync Center'</c>
<c>tabletextservice 'Table Text Service'</c>
<c>telnetclient 'Telnet Client'</c>
<c>tempcache 'Cache and temp files'</c>
<c>tftpclient 'TFTP client'</c>
<c>trkwks 'Distributed Link Tracking Client'</c>
<c>unp 'Universal Notification Platform (UNP)'</c>
<c>userdeviceregistration 'User Device Registration'</c>
<c>vpn 'Virtual Private Network (VPN) support'</c>
<c>wallet 'Wallet Service'</c>
<c>wallpapers 'Wallpapers (Themes)'</c>
<c>webcamexperience 'Webcam Experience'</c>
<c>winai 'Windows AI Machine Learning'</c>
<c>Windows.CBSPreview 'Windows Barcode Preview'</c>
<c>winocr 'Windows TIFF IFilter (OCR)'</c>
<c>wwanautoconfig 'WWAN AutoConfig'</c>
<c>xbox 'Xbox - Core'</c>
</RemoveComponents>
<Compatibility protectHidden="false">
<ComponentFeatures>
<Feature enabled="no">AppGuard</Feature>
<Feature enabled="no">YubiKey</Feature>
<Feature enabled="no">Bluetooth</Feature>
<Feature enabled="no">CapFrameX</Feature>
<Feature enabled="no">Discord</Feature>
<Feature enabled="no">FileSharing</Feature>
<Feature enabled="no">Hyper-V</Feature>
<Feature enabled="no">iCloud</Feature>
<Feature enabled="no">ManualSetup</Feature>
<Feature enabled="no">OfficeSupport</Feature>
<Feature enabled="no">AppxSupport</Feature>
<Feature enabled="no">Netflix</Feature>
<Feature enabled="no">NetworkDiscovery</Feature>
<Feature enabled="no">NightLight</Feature>
<Feature enabled="no">NvidiaSetup</Feature>
<Feature enabled="no">OOBE</Feature>
<Feature enabled="no">Printing</Feature>
<Feature enabled="no">Recommended-All</Feature>
<Feature enabled="no">SamsungSwitch</Feature>
<Feature enabled="no">Scanning</Feature>
<Feature enabled="no">ServicingStack</Feature>
<Feature enabled="no">ShellSearchSupport</Feature>
<Feature enabled="no">Spotify</Feature>
<Feature enabled="no">SFC</Feature>
<Feature enabled="no">DefaultFonts</Feature>
<Feature enabled="no">SafeMode</Feature>
<Feature enabled="no">TeamViewer</Feature>
<Feature enabled="no">Recommended-Tablet</Feature>
<Feature enabled="no">USBModem</Feature>
<Feature enabled="no">USB</Feature>
<Feature enabled="no">VideoPlayback</Feature>
<Feature enabled="no">VPN</Feature>
<Feature enabled="no">VisualStudio</Feature>
<Feature enabled="no">VSS</Feature>
<Feature enabled="no">ActivationKMS</Feature>
<Feature enabled="no">Activation</Feature>
<Feature enabled="no">WindowsStore</Feature>
<Feature enabled="no">WindowsUpdate</Feature>
<Feature enabled="no">WLAN</Feature>
</ComponentFeatures>
<MachineDrivers>
<Machine enabled="no">HostMachine</Machine>
<Machine enabled="no">Hyper-V VM</Machine>
<Machine enabled="no">Parallels VM</Machine>
<Machine enabled="no">Virtual Box VM</Machine>
<Machine enabled="no">VMware VM</Machine>
</MachineDrivers>
</Compatibility>
<Features></Features>
<Packages></Packages>
<Commands>
<PostUpdates>
<!--<Command>cmd /c echo Example from [MOUNTDIR]\Windows &amp; pause</Command>-->
<!--<Command>dism /image:[MOUNTDIR] /get-intl</Command>-->
</PostUpdates>
</Commands>
<Drivers showHidden="true"></Drivers>
<Unattended mode="0">
<OEMSetupComplete>false</OEMSetupComplete>
<AnswerFileLocationPanther>false</AnswerFileLocationPanther>
<AnswerFileLocationBoot>false</AnswerFileLocationBoot>
<SaveBothArch>false</SaveBothArch>
<EditionPrompt>false</EditionPrompt>
<settings pass="windowsPE">
<component name="Microsoft-Windows-Setup">
<DynamicUpdate>
<WillShowUI>OnError</WillShowUI>
</DynamicUpdate>
<ImageInstall>
<OSImage>
<WillShowUI>OnError</WillShowUI>
<InstallFrom>
<MetaData>
<Key>/IMAGE/INDEX</Key>
<Value>1</Value>
</MetaData>
</InstallFrom>
</OSImage>
</ImageInstall>
<UserData>
<ProductKey>
<Key></Key>
</ProductKey>
</UserData>
</component>
</settings>
</Unattended>
<Tweaks>
<Settings></Settings>
<Services></Services>
<ExtraServices></ExtraServices>
<ScheduledTasks></ScheduledTasks>
</Tweaks>
<ApplyOptions>
<ImageTasks>
<Task>imageSaveRebuild</Task>
<Task>imageFormatWim</Task>
</ImageTasks>
<AutoIsoFile>NTLite.iso</AutoIsoFile>
<AutoIsoLabel>NTLite</AutoIsoLabel>
<AutoSplitSize>4000</AutoSplitSize>
<CleanHotfixedLeftovers>0</CleanHotfixedLeftovers>
<OptimizeAppX>false</OptimizeAppX>
<ReuseDriverCache>false</ReuseDriverCache>
</ApplyOptions>
<Execution>
<Remove></Remove>
<Change></Change>
<Add></Add>
</Execution>
<Registry></Registry>
</Preset>

View File

@ -1,24 +1,27 @@
<?xml version="1.0" encoding="utf-8"?>
<Preset xmlns="urn:schemas-nliteos-com:pn.v1">
<Date>12/27/2024 13:40:35</Date>
<Date>02/20/2023 11:01:22</Date>
<AppInfo>
<Version>2024.12.10221</Version>
<Version>2.3.9.9039</Version>
<Licensed>Yes</Licensed>
<Protections>Yes</Protections>
<Host>Windows 10 EnterpriseS 21H2 x64 - 10.0.19044.3803 (en-US)</Host>
<Host>Windows 10 Pro (20H2) x64 - 10.0.19042.508 (en-US)</Host>
</AppInfo>
<ImageInfo>
<Version mode="offline">Windows 10 EnterpriseSEval 21H2 x64 - 10.0.19044.5247 (en-US)</Version>
<GUID>{6593227A-450C-412E-BBB9-A117A7980FB5}</GUID>
<Version mode="offline">Windows 10 Professional (20H2) x64 - 10.0.19042.508 (en-US)</Version>
<GUID>{835D89A0-36FE-4E58-A059-3BB22F6392B7}</GUID>
</ImageInfo>
<RemoveComponents AppRemovalMode="DISM">
<c>aarsvc 'Agent Activation Runtime'</c>
<c>accessibility_magnifier 'Screen Magnifier'</c>
<c>accessibility_narrator 'Narrator'</c>
<c>activedirectory 'Active Directory'</c>
<c>adamclient 'Active Directory Lightweight Directory Services (AD LDS)'</c>
<c>alg 'Application Layer Gateway Service'</c>
<c>alljoyn 'AllJoyn Router Service'</c>
<c>appv 'Application Virtualization (App-V)'</c>
<c>assignedaccess 'Assigned Access'</c>
<c>azuread 'Azure Active Directory'</c>
<c>backgroundtransfer 'Networking Background Transfer'</c>
<c>branchcacheclient 'BranchCache Client'</c>
<c>ceip 'CEIP (SQM)'</c>
@ -26,8 +29,6 @@
<c>datacenterbridging 'Data Center Bridging (DCB)'</c>
<c>desktopactivitymoderator 'Desktop Activity Moderator (DAM)'</c>
<c>desktopimgdownldr 'Desktop image downloader'</c>
<c>deviceguard 'Device Guard'</c>
<c>directml 'Direct Machine Learning (DirectML)'</c>
<c>diskquota 'Disk Quota'</c>
<c>diskquota32 'Disk Quota - 32 bit'</c>
<c>driver_61883.inf</c>
@ -35,6 +36,7 @@
<c>driver_c_barcodescanner.inf</c>
<c>driver_c_biometric.inf</c>
<c>driver_c_cashdrawer.inf</c>
<c>driver_c_holographic.inf</c>
<c>driver_c_infrared.inf</c>
<c>driver_c_linedisplay.inf</c>
<c>driver_c_magneticstripereader.inf</c>
@ -45,6 +47,7 @@
<c>driver_c_smartcardreader.inf</c>
<c>driver_c_tapedrive.inf</c>
<c>driver_cht4vx64.inf</c>
<c>driver_dc1-controller.inf</c>
<c>driver_fusionv2.inf</c>
<c>driver_hidir.inf</c>
<c>driver_hidirkbd.inf</c>
@ -208,6 +211,7 @@
<c>driver_msclmd.inf</c>
<c>driver_oposdrv.inf</c>
<c>driver_pcmcia.inf</c>
<c>driver_perceptionsimulationheadset.inf</c>
<c>driver_remoteposdrv.inf</c>
<c>driver_sensorshidclassdriver.inf</c>
<c>driver_sensorsservicedriver.inf</c>
@ -232,13 +236,17 @@
<c>driver_wvmic.inf</c>
<c>driver_wvmic_ext.inf</c>
<c>driver_wvpci.inf</c>
<c>e2a4f912-2574-4a75-9bb0-0d023378592b 'App Resolver'</c>
<c>driver_xboxgipsynthetic.inf</c>
<c>driver_xusb22.inf</c>
<c>E2A4F912-2574-4A75-9BB0-0D023378592B 'App Resolver'</c>
<c>easeofaccessthemes 'Ease Of Access Themes'</c>
<c>edgeupdate 'Microsoft Edge Update'</c>
<c>embeddedmode 'Embedded Mode'</c>
<c>enterpriseclientsync 'Work Folders Client'</c>
<c>exchangeactivesync 'Exchange ActiveSync (EAS)'</c>
<c>f46d4000-fd22-4db4-ac8e-4e1ddde828fe 'Add Folder Suggestions dialog'</c>
<c>F46D4000-FD22-4DB4-AC8E-4E1DDDE828FE 'Add Folder Suggestions dialog'</c>
<c>flashactivex 'Adobe Flash for Internet Explorer'</c>
<c>flashactivex32 'Adobe Flash for Internet Explorer - 32 bit'</c>
<c>folderredirection 'Folder Redirection'</c>
<c>font_arialblack 'Arial Black'</c>
<c>font_bahnschrift 'Bahnschrift'</c>
@ -256,6 +264,7 @@
<c>font_gadugi 'Gadugi'</c>
<c>font_gadugibold 'Gadugi Bold'</c>
<c>font_georgia 'Georgia'</c>
<c>font_holomd2 'Holo MDL2 Assets'</c>
<c>font_impact 'Impact'</c>
<c>font_inkfree 'Ink Free'</c>
<c>font_javanesetext 'Javanese Text'</c>
@ -304,7 +313,6 @@
<c>font_yugothiclight 'Yu Gothic Light &amp; Yu Gothic UI Light'</c>
<c>font_yugothicmedium 'Yu Gothic Medium &amp; Yu Gothic UI Regular'</c>
<c>gameexplorer 'Game Explorer'</c>
<c>guardedhost 'Guarded Host'</c>
<c>hwsupport_fax 'Fax'</c>
<c>hwsupport_floppy 'Floppy disk'</c>
<c>hwsupport_infrared 'Infrared devices'</c>
@ -312,7 +320,6 @@
<c>hwsupport_scanner 'Scanner'</c>
<c>hwsupport_smartcard 'Smartcard'</c>
<c>hwsupport_telephony 'Telephony'</c>
<c>hyperv 'Hyper-V'</c>
<c>hypervguest 'Hyper-V Integration Services'</c>
<c>ias 'Internet Authentication Service (IAS)'</c>
<c>iis 'Internet Information Server (IIS)'</c>
@ -322,7 +329,6 @@
<c>ipxlatcfg 'IP Translation Configuration Service'</c>
<c>iscsi 'iSCSI Initiator'</c>
<c>isoburn 'Windows Disc Image Burning Tool'</c>
<c>isolatedusermode 'Virtualization-based security (VBS)'</c>
<c>kl-00000401 'Arabic (101)'</c>
<c>kl-00000402 'Bulgarian (Typewriter)'</c>
<c>kl-00000404 'Chinese (Traditional) - US'</c>
@ -526,6 +532,7 @@
<c>kl-00130c00 'Myanmar (Visual order)'</c>
<c>kl-00140c00 'ADLaM'</c>
<c>kl-00150c00 'Osage'</c>
<c>kmsbroker 'KMS Connection Broker'</c>
<c>langarabic 'Arabic'</c>
<c>langbulgarian 'Bulgarian'</c>
<c>langchineses 'Chinese Simplified'</c>
@ -568,7 +575,6 @@
<c>langukrainian 'Ukrainian'</c>
<c>lockscreens 'Lock Screen backgrounds'</c>
<c>lpasvc 'Local Profile Assistant Service'</c>
<c>lxss 'Windows Subsystem for Linux'</c>
<c>mail 'Windows Mail'</c>
<c>mailcommdll 'Windows Mail Communications Library'</c>
<c>mapcontrol 'Map Control'</c>
@ -577,23 +583,63 @@
<c>mediaplayernetworksharing 'WMP Network Sharing Service'</c>
<c>mediaplayernetworksharing32 'WMP Network Sharing Service - 32 bit'</c>
<c>messagingsvc 'Messaging Service'</c>
<c>microsoft.asynctextservice 'AsyncTextService'</c>
<c>microsoft.bioenrollment 'Windows Hello Setup'</c>
<c>microsoft.creddialoghost 'Credential Dialog'</c>
<c>microsoft.ecapp 'Eye Control'</c>
<c>microsoft.microsoftedge 'Microsoft Edge (Legacy)'</c>
<c>microsoft.microsoftedge.stable 'Microsoft Edge (Chromium)'</c>
<c>microsoft.microsoftedgedevtoolsclient 'Microsoft Edge DevTools Client'</c>
<c>microsoft.win32webviewhost 'Desktop App Web Viewer'</c>
<c>microsoft.windows.apprep.chxapp 'SmartScreen'</c>
<c>microsoft.windows.assignedaccesslockapp 'Assigned Access Lock app'</c>
<c>microsoft.windows.callingshellapp 'Call'</c>
<c>microsoft.windows.capturepicker 'Capture Picker'</c>
<c>microsoft.windows.contentdeliverymanager 'Content Delivery Manager'</c>
<c>microsoft.windows.narratorquickstart 'Narrator'</c>
<c>microsoft.windows.oobenetworkcaptiveportal 'Captive Portal Flow'</c>
<c>microsoft.windows.parentalcontrols 'Microsoft family features'</c>
<c>Microsoft.549981C3F5F10 'Cortana'</c>
<c>Microsoft.Advertising.Xaml 'Microsoft Advertising SDK for XAML'</c>
<c>Microsoft.AsyncTextService 'AsyncTextService'</c>
<c>Microsoft.BingWeather 'MSN Weather'</c>
<c>Microsoft.BioEnrollment 'Windows Hello Setup'</c>
<c>Microsoft.CredDialogHost 'Credential Dialog'</c>
<c>Microsoft.ECApp 'Eye Control'</c>
<c>Microsoft.GetHelp 'Get Help'</c>
<c>Microsoft.Getstarted 'Tips (Get Started)'</c>
<c>Microsoft.HEIFImageExtension 'HEIF-Bilderweiterungen'</c>
<c>Microsoft.Microsoft3DViewer '3D-Viewer'</c>
<c>Microsoft.MicrosoftEdge.Stable 'Microsoft Edge (Chromium)'</c>
<c>Microsoft.MicrosoftEdge 'Microsoft Edge (Legacy)'</c>
<c>Microsoft.MicrosoftEdgeDevToolsClient 'Microsoft Edge DevTools Client'</c>
<c>Microsoft.MicrosoftOfficeHub 'Office'</c>
<c>Microsoft.MicrosoftSolitaireCollection 'Microsoft Solitaire Collection'</c>
<c>Microsoft.MicrosoftStickyNotes 'Microsoft Sticky Notes'</c>
<c>Microsoft.MixedReality.Portal 'Mixed Reality Portal'</c>
<c>Microsoft.MSPaint 'Paint 3D'</c>
<c>Microsoft.Office.OneNote 'OneNote'</c>
<c>Microsoft.People 'Microsoft People'</c>
<c>Microsoft.ScreenSketch 'Snip &amp; Sketch'</c>
<c>Microsoft.Services.Store.Engagement 'Microsoft Engagement Framework'</c>
<c>Microsoft.SkypeApp 'Skype'</c>
<c>Microsoft.StorePurchaseApp 'Store Experience Host'</c>
<c>Microsoft.VP9VideoExtensions 'VP9-Videoerweiterungen'</c>
<c>Microsoft.Wallet 'Microsoft Pay'</c>
<c>Microsoft.WebMediaExtensions 'Web Media Extensions'</c>
<c>Microsoft.WebpImageExtension 'Webp-Bilderweiterungen'</c>
<c>Microsoft.Win32WebViewHost 'Desktop App Web Viewer'</c>
<c>Microsoft.Windows.Apprep.ChxApp 'SmartScreen'</c>
<c>Microsoft.Windows.AssignedAccessLockApp 'Assigned Access Lock app'</c>
<c>Microsoft.Windows.CallingShellApp 'Call'</c>
<c>Microsoft.Windows.CapturePicker 'Capture Picker'</c>
<c>Microsoft.Windows.ContentDeliveryManager 'Content Delivery Manager'</c>
<c>Microsoft.Windows.NarratorQuickStart 'Narrator'</c>
<c>Microsoft.Windows.OOBENetworkCaptivePortal 'Captive Portal Flow'</c>
<c>Microsoft.Windows.ParentalControls 'Microsoft family features'</c>
<c>Microsoft.Windows.Photos 'Microsoft Photos'</c>
<c>Microsoft.Windows.SecureAssessmentBrowser 'PrĂĽfung'</c>
<c>Microsoft.WindowsAlarms 'Windows Alarms &amp; Clock'</c>
<c>Microsoft.WindowsCamera 'Windows Camera'</c>
<c>microsoft.windowscommunicationsapps 'Mail and Calendar'</c>
<c>Microsoft.WindowsFeedbackHub 'Feedback Hub'</c>
<c>Microsoft.WindowsMaps 'Windows Maps'</c>
<c>Microsoft.WindowsSoundRecorder 'Windows Voice Recorder'</c>
<c>Microsoft.Xbox.TCUI 'Xbox TCUI'</c>
<c>Microsoft.XboxApp 'Xbox'</c>
<c>Microsoft.XboxGameCallableUI 'Xbox Game UI'</c>
<c>Microsoft.XboxGameOverlay 'Xbox Game Bar Plugin'</c>
<c>Microsoft.XboxGamingOverlay 'Xbox Game Bar'</c>
<c>Microsoft.XboxSpeechToTextOverlay 'Xbox Game Speech Window'</c>
<c>Microsoft.YourPhone 'Your Phone'</c>
<c>Microsoft.ZuneMusic 'Groove Music'</c>
<c>Microsoft.ZuneVideo 'Movies &amp; TV'</c>
<c>midi 'Microsoft GS Wavetable SW Synth (MIDI)'</c>
<c>migwiz 'Easy Transfer'</c>
<c>mixedreality 'Windows Mixed Reality'</c>
<c>mmga 'MMGA MAPI'</c>
<c>mobilepc</c>
@ -601,11 +647,13 @@
<c>mobilepc_networkprojection 'Network Projection'</c>
<c>mobilepc_sensors 'Sensors'</c>
<c>msmq 'Microsoft Message Queue (MSMQ)'</c>
<c>netlogon</c>
<c>netqos 'Quality of Service Packet Scheduler (QoS)'</c>
<c>nettopology 'Link-Layer Topology Discovery protocol (LLTD)'</c>
<c>nfc 'Near Field Communication (NFC)'</c>
<c>nfsclient 'NFS Administrative Tools'</c>
<c>offlinefiles 'Offline Files'</c>
<c>onedrive</c>
<c>openssh</c>
<c>otherthemes 'Windows Personalization themes'</c>
<c>payments</c>
@ -649,49 +697,45 @@
<c>tftpclient 'TFTP client'</c>
<c>trkwks 'Distributed Link Tracking Client'</c>
<c>unp 'Universal Notification Platform (UNP)'</c>
<c>userdeviceregistration 'User Device Registration'</c>
<c>vpn 'Virtual Private Network (VPN) support'</c>
<c>wallet 'Wallet Service'</c>
<c>wallpapers 'Wallpapers (Themes)'</c>
<c>webcamexperience 'Webcam Experience'</c>
<c>winai 'Windows AI Machine Learning'</c>
<c>windows.cbspreview 'Windows Barcode Preview'</c>
<c>Windows.CBSPreview 'Windows Barcode Preview'</c>
<c>winocr 'Windows TIFF IFilter (OCR)'</c>
<c>wwanautoconfig 'WWAN AutoConfig'</c>
<c>xbox 'Xbox - Core'</c>
</RemoveComponents>
<Compatibility protectHidden="false">
<ComponentFeatures>
<Feature enabled="no">AppGuard</Feature>
<Feature enabled="no">Battle.net</Feature>
<Feature enabled="no">YubiKey</Feature>
<Feature enabled="no">Bluetooth</Feature>
<Feature enabled="no">USBCamera</Feature>
<Feature enabled="no">CapFrameX</Feature>
<Feature enabled="no">Discord</Feature>
<Feature enabled="no">Docker</Feature>
<Feature enabled="no">EA Anti-Cheat</Feature>
<Feature enabled="no">FileSharing</Feature>
<Feature enabled="no">Hyper-V</Feature>
<Feature enabled="no">iCloud</Feature>
<Feature enabled="no">Kaspersky</Feature>
<Feature enabled="yes">ManualSetup</Feature>
<Feature enabled="no">ManualSetup</Feature>
<Feature enabled="no">OfficeSupport</Feature>
<Feature enabled="no">AppxSupport</Feature>
<Feature enabled="no">Netflix</Feature>
<Feature enabled="no">NetworkDiscovery</Feature>
<Feature enabled="no">NightLight</Feature>
<Feature enabled="no">NvidiaSetup</Feature>
<Feature enabled="yes">OOBE</Feature>
<Feature enabled="no">OOBE</Feature>
<Feature enabled="no">Printing</Feature>
<Feature enabled="no">Recommended-All</Feature>
<Feature enabled="no">RDPServer</Feature>
<Feature enabled="no">SamsungSwitch</Feature>
<Feature enabled="no">Scanning</Feature>
<Feature enabled="yes">ServicingStack</Feature>
<Feature enabled="no">ServicingStack</Feature>
<Feature enabled="no">ShellSearchSupport</Feature>
<Feature enabled="no">Spotify</Feature>
<Feature enabled="yes">SFC</Feature>
<Feature enabled="no">SFC</Feature>
<Feature enabled="no">DefaultFonts</Feature>
<Feature enabled="yes">SafeMode</Feature>
<Feature enabled="no">SafeMode</Feature>
<Feature enabled="no">TeamViewer</Feature>
<Feature enabled="no">Recommended-Tablet</Feature>
<Feature enabled="no">USBModem</Feature>
@ -702,9 +746,8 @@
<Feature enabled="no">VSS</Feature>
<Feature enabled="no">ActivationKMS</Feature>
<Feature enabled="no">Activation</Feature>
<Feature enabled="yes">WinSetup</Feature>
<Feature enabled="no">WindowsStore</Feature>
<Feature enabled="yes">WindowsUpdate</Feature>
<Feature enabled="no">WindowsUpdate</Feature>
<Feature enabled="no">WLAN</Feature>
</ComponentFeatures>
<MachineDrivers>
@ -715,45 +758,17 @@
<Machine enabled="no">VMware VM</Machine>
</MachineDrivers>
</Compatibility>
<Features>
<Feature name="Language.Handwriting~~~en-us~0.0.1.0">false</Feature>
<Feature name="Language.OCR~~~en-us~0.0.1.0">false</Feature>
<Feature name="Language.Speech~~~en-us~0.0.1.0">false</Feature>
<Feature name="Language.TextToSpeech~~~en-us~0.0.1.0">false</Feature>
<Feature name="Language.Basic~~~en-us~0.0.1.0">false</Feature>
<Feature name="OneCoreUAP.OneSync~~~~0.0.1.0">false</Feature>
<Feature name="Browser.InternetExplorer~~~~0.0.11.0">false</Feature>
<Feature name="Internet-Explorer-Optional-amd64">false</Feature>
<Feature name="Printing-Foundation-InternetPrinting-Client">false</Feature>
<Feature name="MathRecognizer~~~~0.0.1.0">false</Feature>
<Feature name="App.Support.QuickAssist~~~~0.0.1.0">false</Feature>
<Feature name="Printing-XPSServices-Features">false</Feature>
<Feature name="WCF-TCP-PortSharing45">false</Feature>
<Feature name="WCF-Services45">false</Feature>
<Feature name="Print.Fax.Scan~~~~0.0.1.0">false</Feature>
<Feature name="Hello.Face.Migration.18967~~~~0.0.1.0">false</Feature>
<Feature name="Hello.Face.18967~~~~0.0.1.0">false</Feature>
</Features>
<Packages>
<Options>
<CleanHotfixedLeftovers>0</CleanHotfixedLeftovers>
<OptimizeAppX>false</OptimizeAppX>
<UpdateBootManager>false</UpdateBootManager>
</Options>
</Packages>
<Features></Features>
<Packages></Packages>
<Commands>
<PostUpdates>
<!--<Command>cmd /c echo Example from [MOUNTDIR]\Windows &amp; pause</Command>-->
<!--<Command>dism /image:[MOUNTDIR] /get-intl</Command>-->
</PostUpdates>
</Commands>
<Drivers>
<Options>
<ReuseDriverCache>false</ReuseDriverCache>
<ShowHidden>true</ShowHidden>
</Options>
</Drivers>
<Drivers showHidden="true"></Drivers>
<Unattended mode="0">
<OEMSetupComplete>false</OEMSetupComplete>
<AnswerFileLocationPanther>false</AnswerFileLocationPanther>
<AnswerFileLocationBoot>false</AnswerFileLocationBoot>
<SaveBothArch>false</SaveBothArch>
@ -776,7 +791,7 @@
</ImageInstall>
<UserData>
<ProductKey>
<WillShowUI>OnError</WillShowUI>
<Key></Key>
</ProductKey>
</UserData>
</component>
@ -796,8 +811,11 @@
<AutoIsoFile>NTLite.iso</AutoIsoFile>
<AutoIsoLabel>NTLite</AutoIsoLabel>
<AutoSplitSize>4000</AutoSplitSize>
<CleanHotfixedLeftovers>0</CleanHotfixedLeftovers>
<OptimizeAppX>false</OptimizeAppX>
<ReuseDriverCache>false</ReuseDriverCache>
</ApplyOptions>
<Execution BeforeLogonMode="0">
<Execution>
<Remove></Remove>
<Change></Change>
<Add></Add>

View File

@ -6,9 +6,8 @@ set TOOLS=%SystemDrive%\tools
set SCRIPTS=%TOOLS%\scripts
set LOG=%SCRIPTS%\autoconfig.txt
set SCRIPT_SETTINGS=%TOOLS%\scripts\settings.cmd
set CUSTOM_SETTINGS=%TOOLS%\custom\settings.cmd
set COMPANY_SETTINGS=%TOOLS%\company\settings.cmd
rem start logging ...
del /F /Q %LOG% 1>nul 2>nul
if not "%1"=="STDOUT_TO_FILE" %0 STDOUT_TO_FILE %* 1>%LOG% 2>&1
shift /1
@ -34,19 +33,12 @@ set preserve_savedgames_folder=1
set searchdomains=localdomain,fritz.box
set gitserver=github.com
set gitrepo=my_repo_at_github
set localadmin=localadmin
set localadmin_name=Local Administrator
set start_desktopinfo=0
set use_nettime=0
set bluetooth_networking=0
set ms_tcpip6=0
set ms_implat=0
set ms_server=0
set browser_homepage=google.com
echo ####### %0 #######
date /t
time /t
echo.
rem ===================
rem CONFIGFILE CHECKS
@ -62,12 +54,12 @@ if NOT EXIST %SCRIPT_SETTINGS% (
)
echo.
echo searching for CUSTOM settings ...
if NOT EXIST %CUSTOM_SETTINGS% (
echo INFO: config file %CUSTOM_SETTINGS% NOT FOUND
echo searching for COMPANY settings ...
if NOT EXIST %COMPANY_SETTINGS% (
echo INFO: config file %COMPANY_SETTINGS% NOT FOUND
) else (
echo OK. Loading CUSTOM settings ...
call %CUSTOM_SETTINGS%
echo OK. Loading COMPANY settings ...
call %COMPANY_SETTINGS%
)
rem show all the settings ...
@ -84,20 +76,10 @@ echo bgcol_G=%bgcol_G%
echo bgcol_B=%bgcol_B%
echo explorer_quick_access=%explorer_quick_access%
echo preserve_savedgames_folder=%preserve_savedgames_folder%
echo domain=%domain%
echo searchdomains=%searchdomains%
echo gitserver=%gitserver%
echo gitrepo=%gitrepo%
echo localadmin=%localadmin%
echo localadmin_name=%localadmin_name%
echo start_desktopinfo=%start_desktopinfo%
echo set use_nettime=%use_nettime%
echo bluetooth_networking=%bluetooth_networking%
echo ms_tcpip6=%ms_tcpip6%
echo ms_implat=%ms_implat%
echo ms_server=%ms_server%
echo browser_homepage=%browser_homepage%
echo ++++++++++++++++++
echo.
@ -124,10 +106,6 @@ rem put vnc in place ...
call unpack-vnc.cmd
echo.
rem put office deployment tool in place ...
call unpack-officedeploymenttool.cmd
echo.
rem unpack all the other zipfiles ...
call unpack-zipfiles.cmd
echo.
@ -169,6 +147,9 @@ echo.
call modify-path.cmd
echo.
call modify-windowsupdate.cmd
echo.
call modify-explorer.cmd
echo.
@ -178,13 +159,8 @@ echo.
call modify-taskbar.cmd
echo.
if %use_nettime% == 1 (
call install-nettime.cmd
echo.
) else (
call modify-timeservers.cmd
echo.
)
call modify-timeservers.cmd
echo.
call modify-searchdomains.cmd
echo.
@ -218,12 +194,18 @@ echo.
call install-tweaks.cmd
echo.
call install-adk.cmd
echo.
call install-git.cmd
echo.
call install-vcredist.cmd
echo.
powershell -command .\install-windowsterminal.ps1
echo.
call install-openshell.cmd
echo.
@ -299,10 +281,6 @@ rem ... remove stupid public folders
call cleanup-publicdir.cmd
echo.
rem ... remove the drive letter of partition 2 on boot drive
call remove-drive-letter.cmd
echo.
echo add read access rights to all users on public icons ...
icacls %PUBLIC%\Desktop\*.lnk /grant Users:R
echo.
@ -327,10 +305,6 @@ if %windows_updates% == 1 (
echo.
)
rem convert evaluate version ...
call convert-evaluate.cmd
echo.
rem should be done as late as possible ...
call install-logonscript.cmd
echo.

View File

@ -11,8 +11,8 @@ for %%K in (
) do (
echo deleting registry key [ %%K ] using SUPERUSER ...
superuser /sw reg delete %%K /f
echo deleting registry key [ %%K ] using NSUDO ...
nsudo /U:T /P:E reg delete %%K /f
)

View File

@ -26,6 +26,11 @@ rem VLC ...
move /Y %STARTMENU%\"VideoLan\VLC media player.lnk" %STARTMENU% 2>nul
rd /S /Q %STARTMENU%\VideoLan 2>nul
rem ADK ...
move /Y %STARTMENU%\"Windows Kits\Windows ADK\Windows System Image Manager.lnk" ^
%STARTMENU%\"System Tools\Image Manager.lnk" 2>nul
rd /S /Q %STARTMENU%\"Windows Kits" 2>nul
rem Windows stuff (Character map)...
move /Y %STARTMENU%\"Accessories\System Tools\Character*.*" ^
%STARTMENU%\"Accessories" 2>nul

View File

@ -1,84 +0,0 @@
# For documentation, see https://www.sumatrapdfreader.org/settings/settings3-4-6.html
FixedPageUI [
TextColor = #000000
BackgroundColor = #ffffff
SelectionColor = #f5fc0c
WindowMargin = 2 4 2 4
PageSpacing = 4 4
HideScrollbars = false
]
ComicBookUI [
WindowMargin = 0 0 0 0
PageSpacing = 4 4
CbxMangaMode = false
]
ChmUI [
UseFixedPageUI = false
]
SelectionHandlers [
]
ExternalViewers [
]
ZoomLevels = 8.33 12.5 18 25 33.33 50 66.67 75 100 125 150 200 300 400 600 800 1000 1200 1600 2000 2400 3200 4800 6400
ZoomIncrement = 0
PrinterDefaults [
PrintScale = shrink
]
ForwardSearch [
HighlightOffset = 0
HighlightWidth = 15
HighlightColor = #6581ff
HighlightPermanent = false
]
Annotations [
HighlightColor = #ffff00
UnderlineColor = #00ff00
TextIconColor = #ffff00
TextIconType =
DefaultAuthor =
]
RememberOpenedFiles = false
RememberStatePerDocument = false
RestoreSession = false
UiLanguage = en
EnableTeXEnhancements = false
DefaultDisplayMode = automatic
DefaultZoom = fit page
Shortcuts [
]
EscToExit = false
ReuseInstance = false
ReloadModifiedDocuments = true
MainWindowBackground = #80fff200
FullPathInTitle = false
ShowMenubar = true
ShowToolbar = true
ShowFavorites = false
ShowToc = true
TocDy = 0
SidebarDx = 331
ToolbarSize = 18
TabWidth = 300
TreeFontSize = 0
SmoothScroll = false
ShowStartPage = true
CheckForUpdates = true
WindowState = 2
WindowPos = 1122 0 795 1030
UseTabs = true
UseSysColors = false
CustomScreenDPI = 0
FileStates [
]
SessionData [
]
TimeOfLastUpdateCheck = 0 0
OpenCountWeek = 640
# Settings below are not recognized by the current version

View File

@ -5,15 +5,10 @@ top=20
right=50
auto-scale=1
###
# set FONT ...
###
# font
font-face=Fixedsys
font-size=6
###
# set COULORS ...
###
[items]
set White = #ffffff
set Orange = #ffd000
@ -23,27 +18,18 @@ set Magenta = #ff00ff
set MagentaL = #ffa0ff
set Red = #ff0000
###
# show HOSTNAME and OS VERSION ...
###
COLOR=%orange%
HOST=wide:1,text:,display:@%1,font-size:200%
REG=value:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ReleaseId,set:releaseid,hidden:1
WMI=id:os,wide:1,namespace:root\cimv2,query:Win32_OperatingSystem,display:%caption% %releaseid%
CPUTYPE=wide:1,text:,display:%1
###
# show CPU HISTORY ...
###
COLOR=%white%
USER=wide:1,text:,display:User = %1
COMMENT=wide:1,text:,display:CPU History:
CPU=interval:1,text-color:%white%,color:%green%,chart:filled max:100 series1:1 color1:00ff00 height:2,\
text:,display:%chart%
###
# show CPU usage ...
###
COMMENT=wide:1,text:,display:CPU usage:
CPU=interval:1,text-color:%white%,color:%magenta%,chart:bar max:100 series1:1 color1:%MagentaL% threshold:70,\
text:,display:%1[1.1f]% %chart%
@ -51,9 +37,6 @@ WMI=text:,interval:5,namespace:root\cimv2,query:Win32_Processor,display:Speed: %
COMMENT=style:w
###
# show RAM data ...
###
COMMENT=wide:1,color:%Orange%,text:,display:RAM USED
PHYSICALRAM=interval:10,text-color:%white%,color:%green%,set:aram=%4[3.1b],alarms:(%3 ge 80 0000FF),\
chart:bar max:100 series1:3 color1:%greenl%,text:,display:%1[3.1b]B (%3%) %chart%
@ -62,38 +45,30 @@ PAGEFILE=text:,interval:5,display:Page file: %1[3.1g]GiB %3% of %2[1.0b]B
COMMENT=style:w
###
# show STORAGE data ...
###
TEXT=wide:1,color:%Orange%,text:,display:STORAGE USED
LOGICALDRIVES=text:,drive-size:1,interval:60,diskio:0,chart:bar2 scale:linear max:100 series1:7 threshold:80 color1:b55393 color2:%orange% color3:%red%, display:%1: %6[5.1g] of %5[3.0b]B %chart%
LOGICALDRIVES=text:,drive-size=4194304,interval:60,diskio:1,chart:bar2 scale:linear max:100 series1:7 threshold:80 color1:b55393 color2:%orange% color3:%red%, display:%1: %6[5.1g] of %5[3.0b]B %chart%
COMMENT=style:w
###
# show NETWORK data ...
###
# show network data ...
TEXT=wide:1,color:%Orange%,text:,display:NETWORK
NETWORKINTERFACES=text:,interval:60,operstatus:1,iftype:6 71,display:%2: %8/%10
WMI=text:,interval:60,alarms:(%11 ge 34 0088f0),namespace:root\cimv2,query:Win32_PingStatus where address='1.1.1.1',display:Latency: %ResponseTime%ms from 1.1.1.1
COMMENT=style:w
###
# show PROCESSES data ...
###
PROCESSCOUNT=interval:5,wide:1,display: Processes: %1
COMMENT=wide:1, display: (top 5 sorted by CPU usage)
COMMENT=wide:1,color:%orange%,display:NAME PID CPU%
TOPPROCESSCPU=interval:5,wide:1,maxrows:5,filter:-desktopinfo,display:%1[0.25s]%2[0.8s]%3[3.1f]%
COMMENT
COMMENT=wide:1, display: (top 5 sorted by MEM usage)
COMMENT=wide:1,color:%orange%,display:NAME PID MEM
TOPPROCESSMEM=interval:5,wide:1,maxrows:5,display:%1[0.25s]%2[0.8s]%3[1.0b]
COMMENT=style:w
###
# show SYSTEM UPTIME ...
###
UPTIME=interval:60,wide:1,display: System Uptime: {{%1*24+%2}}h %3m

View File

@ -1,59 +0,0 @@
[options]
transparency=100
column1width=0
top=20
right=50
auto-scale=1
###
# set FONT ...
###
font-face=Fixedsys
font-size=6
###
# set COULORS ...
###
[items]
set White = #ffffff
set Orange = #ffd000
set Red = #ff0000
###
# show HOSTNAME, OS VERSION and USER ...
###
COLOR=%Orange%
HOST=wide:1,text:,display:@%1,font-size:200%
REG=value:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ReleaseId,set:releaseid,hidden:1
WMI=id:os,wide:1,namespace:root\cimv2,query:Win32_OperatingSystem,display:%caption% %releaseid%
CPUTYPE=wide:1,text:,display:%1
USER=wide:1,text:,display:User = %1
COMMENT
###
# show STORAGE data ...
###
TEXT=wide:1,color:%White%,text:,display:STORAGE USED
COLOR=%White%
LOGICALDRIVES=text:,drive-size:1,interval:60,diskio:0,chart:bar2 scale:linear max:100 series1:7 threshold:80 color1:b55393 color2:%Orange% color3:%Red%, display:%1: %6[5.1g] of %5[3.0b]B %chart%
COMMENT=style:w
###
# show NETWORK data ...
###
TEXT=wide:1,color:%Orange%,text:,display:NETWORK
NETWORKINTERFACES=text:,interval:60,operstatus:1,display:%2: %8/%10,friendlyfilter:-loopback
COMMENT=style:w
WMI=text:,interval:60,alarms:(%11 ge 34 0088f0),namespace:root\cimv2,query:Win32_PingStatus where address='1.1.1.1',display:Latency: %ResponseTime%ms from 1.1.1.1
WMI=text:,interval:60,alarms:(%11 ge 34 0088f0),namespace:root\cimv2,query:Win32_PingStatus where address='8.8.8.8',display:Latency: %ResponseTime%ms from 8.8.8.8
COMMENT=style:w
###
# show SYSTEM UPTIME ...
###
UPTIME=interval:60,wide:1,display: System Uptime: {{%1*24+%2}}h %3m

View File

@ -1,325 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<settings>
<format-version>9</format-version>
<general-settings>
<LogUpdates>false</LogUpdates>
<UseAlternatingColorInLists>true</UseAlternatingColorInLists>
<ThemeStyle>classic</ThemeStyle>
<ToolbarAlignment_Main>left</ToolbarAlignment_Main>
<UseGroupsInCalendarView allow-edit="false">true</UseGroupsInCalendarView>
<CalendarShowBalloons allow-edit="false">true</CalendarShowBalloons>
<GoToTodayWhenOpeningCalendar allow-edit="false">true</GoToTodayWhenOpeningCalendar>
<CalendarWorkDay1 allow-edit="false">true</CalendarWorkDay1>
<EnableWeather allow-edit="false">false</EnableWeather>
<UseAvatarLookup allow-edit="false">true</UseAvatarLookup>
<UseGroupsInContactsView allow-edit="false">true</UseGroupsInContactsView>
<ContactFileAsType allow-edit="false">Surname,Name</ContactFileAsType>
<AskBeforeDeletingFolder allow-edit="false">true</AskBeforeDeletingFolder>
<MinimizeToTray allow-edit="false">true</MinimizeToTray>
<Backup_PeriodicBackup allow-edit="false">false</Backup_PeriodicBackup>
<ShowOperationsOnSendAndReceive allow-edit="false">false</ShowOperationsOnSendAndReceive>
<SendAndReceiveOnStartup allow-edit="false">true</SendAndReceiveOnStartup>
<notification_MailNotificationHandler_popup>false</notification_MailNotificationHandler_popup>
<UsePasswordProtectedStartup allow-edit="false">false</UsePasswordProtectedStartup>
<PrintMailOnSeparatePage allow-edit="false">true</PrintMailOnSeparatePage>
<UseSpellchecker allow-edit="false">false</UseSpellchecker>
<UseIMSpellchecker allow-edit="false">false</UseIMSpellchecker>
<UseComposeSpellchecker allow-edit="false">false</UseComposeSpellchecker>
<AutoAcceptIncomingFiles allow-edit="false">false</AutoAcceptIncomingFiles>
<SendMessageOnEnter allow-edit="false">false</SendMessageOnEnter>
<AutomaticArchivingEnabled allow-edit="false">false</AutomaticArchivingEnabled>
<CompleteAddresses allow-edit="false">true</CompleteAddresses>
<ShowBCCInEditor allow-edit="false">true</ShowBCCInEditor>
<NewMailFormat allow-edit="false">0</NewMailFormat>
<DefaultSendMessageFontInvariant>Arial, 12pt</DefaultSendMessageFontInvariant>
<DefaultPasteFormat allow-edit="false">1</DefaultPasteFormat>
<CreateRecipientsHistory allow-edit="false">true</CreateRecipientsHistory>
<SpellcheckBeforeSend allow-edit="false">false</SpellcheckBeforeSend>
<ConversationsMode>disable</ConversationsMode>
<UseGroupsInMailView>false</UseGroupsInMailView>
<DefaultMessageFontInvariant>Arial</DefaultMessageFontInvariant>
<MarkMessagesRead allow-edit="false">true</MarkMessagesRead>
<ForwardHeaderStyle allow-edit="false">0</ForwardHeaderStyle>
<CloseOriginalMessageOnReply allow-edit="false">true</CloseOriginalMessageOnReply>
<ReplyHeaderStyle allow-edit="false">0</ReplyHeaderStyle>
<SubjectRepliesStyle allow-edit="false">Expanded</SubjectRepliesStyle>
<SendImmediately allow-edit="false">true</SendImmediately>
<EnableMessageTranslating allow-edit="false">false</EnableMessageTranslating>
<AttachmentHistorySortOrder>Ascending</AttachmentHistorySortOrder>
<CalendarDefaultView>Month View</CalendarDefaultView>
<ContactListMultiline>false</ContactListMultiline>
<ContactsDefaultView>People</ContactsDefaultView>
<HideCompletedTasks>false</HideCompletedTasks>
<IncludeArchiveInSearch>true</IncludeArchiveInSearch>
<LeftSpineMinimized>false</LeftSpineMinimized>
<UseGroupsInTasksView allow-edit="false">false</UseGroupsInTasksView>
<EncryptByDefault allow-edit="false">false</EncryptByDefault>
<PrintDayUseCalendarRange allow-edit="false">true</PrintDayUseCalendarRange>
<ShowContactTagBar allow-edit="false">true</ShowContactTagBar>
<AllowLongLeftSwipe allow-edit="false">false</AllowLongLeftSwipe>
<EventDetailShowInAdvancedMode allow-edit="false">true</EventDetailShowInAdvancedMode>
<TaskDetailShowInAdvancedMode allow-edit="false">false</TaskDetailShowInAdvancedMode>
<TasksAutofillStart allow-edit="false">true</TasksAutofillStart>
<ShowNoteTagBar allow-edit="false">false</ShowNoteTagBar>
<NoteAutoSave allow-edit="false">false</NoteAutoSave>
<AskComposeBeforeDownloadingExternalContent allow-edit="false">true</AskComposeBeforeDownloadingExternalContent>
<EnableKeybook allow-edit="false">false</EnableKeybook>
<EnableKeysOpenPGPOrg allow-edit="false">false</EnableKeysOpenPGPOrg>
<EnableProtonMail allow-edit="false">false</EnableProtonMail>
<DefaultImageSize>1</DefaultImageSize>
<PGPFormat allow-edit="false">0</PGPFormat>
<MailSwipeLeftAction allow-edit="false">0</MailSwipeLeftAction>
<NotesSwipeLeftAction allow-edit="false">0</NotesSwipeLeftAction>
<ShowTaskTagBar allow-edit="false">false</ShowTaskTagBar>
<PrivacyExternalContent allow-edit="false">1</PrivacyExternalContent>
<PrivacyTracking allow-edit="false">0</PrivacyTracking>
<ReminderShowReminderWindow allow-edit="false">false</ReminderShowReminderWindow>
<ShowSuggestionsFromSentFolder>true</ShowSuggestionsFromSentFolder>
<LogDatabase>false</LogDatabase>
<ShowGridLinesInLists>true</ShowGridLinesInLists>
<ToolbarAlignment_Other>center</ToolbarAlignment_Other>
<CalendarShowBalloonInterval allow-edit="false">1000</CalendarShowBalloonInterval>
<ShowWeekNumbers allow-edit="false">true</ShowWeekNumbers>
<CalendarWorkDay2 allow-edit="false">true</CalendarWorkDay2>
<AccuWeatherLocationCity allow-edit="false" />
<ShowMonogramAvatars allow-edit="false">true</ShowMonogramAvatars>
<AskAfterDroppingFolder allow-edit="false">true</AskAfterDroppingFolder>
<CloseToTray allow-edit="false">false</CloseToTray>
<Backup_BackupFrequency allow-edit="false">0</Backup_BackupFrequency>
<HideOperationsOnSendAndReceive allow-edit="false">false</HideOperationsOnSendAndReceive>
<CheckForNewMessages allow-edit="false">true</CheckForNewMessages>
<notification_MailNotificationHandler_notifyIcon>true</notification_MailNotificationHandler_notifyIcon>
<PrintUserNameInHeader allow-edit="false">true</PrintUserNameInHeader>
<SpellCheckerType allow-edit="false">0</SpellCheckerType>
<SpellCheckerIMType allow-edit="false">0</SpellCheckerIMType>
<SpellCheckerComposeType allow-edit="false">0</SpellCheckerComposeType>
<ShowQuickAnswerInNotification allow-edit="false">false</ShowQuickAnswerInNotification>
<AskBeforeArchiving allow-edit="false">false</AskBeforeArchiving>
<AutoSaveToDrafts allow-edit="false">true</AutoSaveToDrafts>
<ReplyMailFormat allow-edit="false">0</ReplyMailFormat>
<ShowCompleteDate>true</ShowCompleteDate>
<MarkInterval>2</MarkInterval>
<ReturningRequestMode>1</ReturningRequestMode>
<OriginalMessageOnReplyStyle allow-edit="false">2</OriginalMessageOnReplyStyle>
<SubjectForwardsStyle allow-edit="false">Expanded</SubjectForwardsStyle>
<AttachEmSignature allow-edit="false">false</AttachEmSignature>
<AttachmentHistoryUseGroups>true</AttachmentHistoryUseGroups>
<CalendarTasksMinimized>false</CalendarTasksMinimized>
<ContactListShowOnlyOnline>false</ContactListShowOnlyOnline>
<CustomerEmail2>true</CustomerEmail2>
<FormAttachmentHistoryShowIncoming>false</FormAttachmentHistoryShowIncoming>
<SearchFields>SubjectSenderBody</SearchFields>
<ShowCalendarInLeftSpine>false</ShowCalendarInLeftSpine>
<SignByDefault allow-edit="false">false</SignByDefault>
<PrintWeekUseCalendarRange allow-edit="false">true</PrintWeekUseCalendarRange>
<AllowLongRightSwipe allow-edit="false">false</AllowLongRightSwipe>
<ResizeLargeImages>true</ResizeLargeImages>
<TasksAutofillEnd allow-edit="false">true</TasksAutofillEnd>
<UseGroupsInNotesView allow-edit="false">false</UseGroupsInNotesView>
<MailSwipeRightAction allow-edit="false">0</MailSwipeRightAction>
<NotesSwipeRightAction allow-edit="false">0</NotesSwipeRightAction>
<PrivacyExternalContentBlockExceptions allow-edit="false">1</PrivacyExternalContentBlockExceptions>
<ReminderReminderWindowOnTop allow-edit="false">false</ReminderReminderWindowOnTop>
<LogImport>false</LogImport>
<MailPanelPosition allow-edit="false">right</MailPanelPosition>
<SidebarState allow-edit="false">hidden</SidebarState>
<UseCategoryColorsForLists>true</UseCategoryColorsForLists>
<CalendarGranularity allow-edit="false">15</CalendarGranularity>
<CalendarWorkDay3 allow-edit="false">true</CalendarWorkDay3>
<AccuWeatherLocationCode allow-edit="false" />
<AskBeforeDeletingMail allow-edit="false">false</AskBeforeDeletingMail>
<EmptyTrashOnExit allow-edit="false">true</EmptyTrashOnExit>
<Backup_PreserveLatestBackups allow-edit="false">5</Backup_PreserveLatestBackups>
<ShowWindowWhenErrorOccurs allow-edit="false">false</ShowWindowWhenErrorOccurs>
<CheckForNewMessagesFrequency allow-edit="false">5</CheckForNewMessagesFrequency>
<notification_MailNotificationHandler_playSound>false</notification_MailNotificationHandler_playSound>
<AutoStatusChanging allow-edit="false">false</AutoStatusChanging>
<AutoSaveToDraftsInterval allow-edit="false">5</AutoSaveToDraftsInterval>
<MarkMessagesReadSeparateWindow allow-edit="false">true</MarkMessagesReadSeparateWindow>
<OriginalMessageOnForwardStyle allow-edit="false">1</OriginalMessageOnForwardStyle>
<CommunicationHistorySortOrder>Descending</CommunicationHistorySortOrder>
<FirstExecution>false</FirstExecution>
<FormAttachmentHistoryShowOutgoing>false</FormAttachmentHistoryShowOutgoing>
<GlobalFoldersCollapsed>false</GlobalFoldersCollapsed>
<SearchRange>AllFolders</SearchRange>
<ShowContactsInLeftSpine>false</ShowContactsInLeftSpine>
<IncludeCertificatesByDefault allow-edit="false">false</IncludeCertificatesByDefault>
<PrintWeekPrintOnlyWorkdays allow-edit="false">true</PrintWeekPrintOnlyWorkdays>
<DefaultMessageTextColorUseTheme>true</DefaultMessageTextColorUseTheme>
<ShowCompleteDateInNotes allow-edit="false">false</ShowCompleteDateInNotes>
<ApplyTemplateSignatureToExternalMails allow-edit="false">false</ApplyTemplateSignatureToExternalMails>
<ShowReadAndFlaggedIcons>true</ShowReadAndFlaggedIcons>
<PrivacyExternalContentDisplayWhitelistSenders allow-edit="false">true</PrivacyExternalContentDisplayWhitelistSenders>
<ReminderDismissPastReminders allow-edit="false">true</ReminderDismissPastReminders>
<LogXMPP>false</LogXMPP>
<AllowInCellEditing>true</AllowInCellEditing>
<CalendarShowRange allow-edit="false">Work Day Hours</CalendarShowRange>
<CalendarWorkDay4 allow-edit="false">true</CalendarWorkDay4>
<AccuWeatherLocationState allow-edit="false" />
<AskBeforeDeletingMailPermanently allow-edit="false">true</AskBeforeDeletingMailPermanently>
<DeleteSpamOnExitOlderThanDays allow-edit="false">1</DeleteSpamOnExitOlderThanDays>
<notification_IMMessageNotificationHandler_popup>false</notification_IMMessageNotificationHandler_popup>
<ShowCCBCCInEditor allow-edit="false">true</ShowCCBCCInEditor>
<MarkMessagesReadMovedToTrash allow-edit="false">true</MarkMessagesReadMovedToTrash>
<CalendarTasksShowCompleted>false</CalendarTasksShowCompleted>
<CommunicationHistoryUseGroups>false</CommunicationHistoryUseGroups>
<FormCommunicationHistoryShowIM>false</FormCommunicationHistoryShowIM>
<IgnoreInvalidRecipientFormat>true</IgnoreInvalidRecipientFormat>
<SendAllEmailAddressesInUpdateRequest>false</SendAllEmailAddressesInUpdateRequest>
<ShowMailInLeftSpine>false</ShowMailInLeftSpine>
<PrintMonthPrintOnlyWorkdays allow-edit="false">true</PrintMonthPrintOnlyWorkdays>
<ShowIncompleteSearchWarning allow-edit="false">true</ShowIncompleteSearchWarning>
<UseCompactLayoutInNoteViewForSmallWidth allow-edit="false">true</UseCompactLayoutInNoteViewForSmallWidth>
<ShowAvatarsInMessageList>true</ShowAvatarsInMessageList>
<LogFilters>false</LogFilters>
<CalendarSourceOfColor allow-edit="false">CalendarThenCategory</CalendarSourceOfColor>
<CalendarWorkDay5 allow-edit="false">true</CalendarWorkDay5>
<UseCelsiusWeatherFormat allow-edit="false">true</UseCelsiusWeatherFormat>
<AskBeforeDeletingEvent allow-edit="false">false</AskBeforeDeletingEvent>
<ShowInboxesFolder allow-edit="false">true</ShowInboxesFolder>
<notification_IMMessageNotificationHandler_notifyIcon>false</notification_IMMessageNotificationHandler_notifyIcon>
<CapitalizeFirstLetters allow-edit="false">false</CapitalizeFirstLetters>
<MarkMessagesReadMovedToSpam allow-edit="false">true</MarkMessagesReadMovedToSpam>
<CalendarTasksSortByEndDate>false</CalendarTasksSortByEndDate>
<FormCommunicationHistoryShowIncoming>false</FormCommunicationHistoryShowIncoming>
<InvitationsUseGroups>false</InvitationsUseGroups>
<NotifyExpandingDistributionList>true</NotifyExpandingDistributionList>
<ShowInitialWizard>false</ShowInitialWizard>
<ShowTasksInLeftSpine>false</ShowTasksInLeftSpine>
<PrintMonthLandscape allow-edit="false">true</PrintMonthLandscape>
<DefaultMessageBackgroudColorUseTheme>true</DefaultMessageBackgroudColorUseTheme>
<SearchUseServerSearch allow-edit="false">true</SearchUseServerSearch>
<UseSmallAvatarsInMessageList>false</UseSmallAvatarsInMessageList>
<CalendarWorkDay6 allow-edit="false">true</CalendarWorkDay6>
<AskBeforeDeletingContact allow-edit="false">true</AskBeforeDeletingContact>
<ShowGlobalFolders>true</ShowGlobalFolders>
<notification_IMMessageNotificationHandler_playSound>false</notification_IMMessageNotificationHandler_playSound>
<ShowAliasesInSubmenu allow-edit="false">true</ShowAliasesInSubmenu>
<UsePreferredFontForFixedPlainText>true</UsePreferredFontForFixedPlainText>
<ReadInPlaintext allow-edit="false">false</ReadInPlaintext>
<FormCommunicationHistoryShowMails>false</FormCommunicationHistoryShowMails>
<NotifyMassMailCcBcc>true</NotifyMassMailCcBcc>
<ShowContactDetailsInRightSpine>false</ShowContactDetailsInRightSpine>
<ShowInitialWizardThemeSelect>false</ShowInitialWizardThemeSelect>
<ShowWidgetsInLeftSpine>false</ShowWidgetsInLeftSpine>
<PrintExactlyOneMonthPerPage allow-edit="false">true</PrintExactlyOneMonthPerPage>
<AlwaysUseCompactLayoutInNoteView allow-edit="false">true</AlwaysUseCompactLayoutInNoteView>
<LogReminders allow-edit="false">false</LogReminders>
<CalendarWorkDay7 allow-edit="false">false</CalendarWorkDay7>
<AskBeforeDeletingTask allow-edit="false">false</AskBeforeDeletingTask>
<MailComposeSelectedAccountPolicy allow-edit="false">0</MailComposeSelectedAccountPolicy>
<notification_FileTransferNotificationHandler_popup>false</notification_FileTransferNotificationHandler_popup>
<EmailSortOrder>2</EmailSortOrder>
<ReplaceEmoticonsOnRead allow-edit="false">false</ReplaceEmoticonsOnRead>
<FormCommunicationHistoryShowOutgoing>false</FormCommunicationHistoryShowOutgoing>
<FreebusyShowWorkingDays>true</FreebusyShowWorkingDays>
<NotifyMultipleRecipientsVariable>true</NotifyMultipleRecipientsVariable>
<ShowContactsInRightSpine>false</ShowContactsInRightSpine>
<PrintInGrayscale allow-edit="false">true</PrintInGrayscale>
<ShowSearchFolders>false</ShowSearchFolders>
<LogIceWarpAPI allow-edit="false">false</LogIceWarpAPI>
<CalendarFirstDayOfWeek allow-edit="false">0</CalendarFirstDayOfWeek>
<notification_FileTransferNotificationHandler_notifyIcon>false</notification_FileTransferNotificationHandler_notifyIcon>
<ShowEmailAddressInHeader>true</ShowEmailAddressInHeader>
<FreebusyShowWorkingHours>true</FreebusyShowWorkingHours>
<UseCtrlEnterForSend>true</UseCtrlEnterForSend>
<ShowGroupsInRoster>false</ShowGroupsInRoster>
<ShowCategoryFolders>true</ShowCategoryFolders>
<ShowNotePanel allow-edit="false">false</ShowNotePanel>
<MailPrintHeaderFooter allow-edit="false">true</MailPrintHeaderFooter>
<DictionaryNotDownloadedMessageShown allow-edit="false">false</DictionaryNotDownloadedMessageShown>
<AskBeforeDeletingNote allow-edit="false">false</AskBeforeDeletingNote>
<CalendarFirstWeekOfYear allow-edit="false">FirstDay</CalendarFirstWeekOfYear>
<notification_FileTransferNotificationHandler_playSound>false</notification_FileTransferNotificationHandler_playSound>
<CloseMessageWindowAfterDelete allow-edit="false">true</CloseMessageWindowAfterDelete>
<HidePastEvents>false</HidePastEvents>
<ShowInvitationsInRightSpine>false</ShowInvitationsInRightSpine>
<ShowCategoryFoldersNotes>false</ShowCategoryFoldersNotes>
<AskBeforeDeletingAttachment allow-edit="false">true</AskBeforeDeletingAttachment>
<MailPrintLandscape allow-edit="false">false</MailPrintLandscape>
<PropagatedCultureToRegistry allow-edit="false">true</PropagatedCultureToRegistry>
<LogOnlineMeeting allow-edit="false">false</LogOnlineMeeting>
<LogIndexer>false</LogIndexer>
<WorkDayStart allow-edit="false">8:00</WorkDayStart>
<ShowLocalFolders>false</ShowLocalFolders>
<notification_IMAwayStatusNotificationHandler_popup>false</notification_IMAwayStatusNotificationHandler_popup>
<AskBeforeDeletingRule>false</AskBeforeDeletingRule>
<ShowDeclinedEvents>true</ShowDeclinedEvents>
<ShowToDoInRightSpine>false</ShowToDoInRightSpine>
<ShowMailTagBar>true</ShowMailTagBar>
<WorkDayEnd allow-edit="false">17:00</WorkDayEnd>
<GoOnStartup>1</GoOnStartup>
<notification_IMAwayStatusNotificationHandler_playSound>false</notification_IMAwayStatusNotificationHandler_playSound>
<AskBeforeClearingLog>false</AskBeforeClearingLog>
<ScheduleCommonOperations_DeleteDoTheSame>true</ScheduleCommonOperations_DeleteDoTheSame>
<SidebarAttachmentHistoryShowIncoming>false</SidebarAttachmentHistoryShowIncoming>
<ShowUnsubscribeBar>false</ShowUnsubscribeBar>
<AskBeforeDeletingQuickText>false</AskBeforeDeletingQuickText>
<LogLicensing>false</LogLicensing>
<notification_IMDoNotDisturbStatusNotificationHandler_popup>false</notification_IMDoNotDisturbStatusNotificationHandler_popup>
<SidebarAttachmentHistoryShowOnlyMyConversations>false</SidebarAttachmentHistoryShowOnlyMyConversations>
<ShowEmailTrackingBar>false</ShowEmailTrackingBar>
<AskBeforeDeletingSignature>false</AskBeforeDeletingSignature>
<LogTranslations>false</LogTranslations>
<notification_IMDoNotDisturbStatusNotificationHandler_playSound>false</notification_IMDoNotDisturbStatusNotificationHandler_playSound>
<SidebarAttachmentHistoryShowOutgoing>false</SidebarAttachmentHistoryShowOutgoing>
<AskBeforeDeletingTemplate>false</AskBeforeDeletingTemplate>
<ShowDeleteButtonInMessageList>true</ShowDeleteButtonInMessageList>
<AskBeforeEmptyingFolder allow-edit="false">true</AskBeforeEmptyingFolder>
<notification_IMFreeForChatStatusNotificationHandler_popup>false</notification_IMFreeForChatStatusNotificationHandler_popup>
<SidebarAttachmentHistoryShowWholeDomain>false</SidebarAttachmentHistoryShowWholeDomain>
<notification_IMFreeForChatStatusNotificationHandler_playSound>false</notification_IMFreeForChatStatusNotificationHandler_playSound>
<SidebarCommunicationHistoryIncludeEntireDomain>false</SidebarCommunicationHistoryIncludeEntireDomain>
<AskBeforeApplyingRule allow-edit="false">true</AskBeforeApplyingRule>
<notification_IMNotAvailableStatusNotificationHandler_popup>false</notification_IMNotAvailableStatusNotificationHandler_popup>
<SidebarCommunicationHistoryIncludeOtherSenders>false</SidebarCommunicationHistoryIncludeOtherSenders>
<AskBeforeMailModification allow-edit="false">true</AskBeforeMailModification>
<notification_IMNotAvailableStatusNotificationHandler_playSound>false</notification_IMNotAvailableStatusNotificationHandler_playSound>
<SidebarCommunicationHistoryShowIM>false</SidebarCommunicationHistoryShowIM>
<notification_IMOfflineStatusNotificationHandler_popup>false</notification_IMOfflineStatusNotificationHandler_popup>
<ShowDialogOnCtrlEnter>true</ShowDialogOnCtrlEnter>
<SidebarCommunicationHistoryShowIncoming>false</SidebarCommunicationHistoryShowIncoming>
<NotifySubjectNotSetOnSend allow-edit="false">true</NotifySubjectNotSetOnSend>
<notification_IMOfflineStatusNotificationHandler_playSound>true</notification_IMOfflineStatusNotificationHandler_playSound>
<SidebarCommunicationHistoryShowMails>false</SidebarCommunicationHistoryShowMails>
<NotifyWhenGroupHeaderIsSelected allow-edit="false">false</NotifyWhenGroupHeaderIsSelected>
<notification_IMOnlineStatusNotificationHandler_popup>false</notification_IMOnlineStatusNotificationHandler_popup>
<SidebarCommunicationHistoryShowOutgoing>false</SidebarCommunicationHistoryShowOutgoing>
<notification_IMOnlineStatusNotificationHandler_playSound>false</notification_IMOnlineStatusNotificationHandler_playSound>
<SidebarDetachedBoxOnTop>false</SidebarDetachedBoxOnTop>
<NotifyDecryptedTextInReply allow-edit="false">false</NotifyDecryptedTextInReply>
<NotifyLargeMessageOnSend allow-edit="false">true</NotifyLargeMessageOnSend>
<notification_TelemetryNotificationHandler_popup>false</notification_TelemetryNotificationHandler_popup>
<NotifyLargeMessageOnSendSize allow-edit="false">10</NotifyLargeMessageOnSendSize>
<notification_TelemetryNotificationHandler_playSound>false</notification_TelemetryNotificationHandler_playSound>
<NotifyMissingAttachment allow-edit="false">true</NotifyMissingAttachment>
<notification_TouchNotificationHandler_popup>false</notification_TouchNotificationHandler_popup>
<SidebarToDoShowMails>false</SidebarToDoShowMails>
<MoveToSpamDefaultAction>blacklistEmail</MoveToSpamDefaultAction>
<notification_TouchNotificationHandler_playSound>false</notification_TouchNotificationHandler_playSound>
<SidebarToDoShowTasks>false</SidebarToDoShowTasks>
<notification_UpdateNotificationHandler_popup>false</notification_UpdateNotificationHandler_popup>
<ToDoUseGroups>false</ToDoUseGroups>
<ComposeDownloadExternalContent allow-edit="false">true</ComposeDownloadExternalContent>
<notification_UpdateNotificationHandler_playSound>false</notification_UpdateNotificationHandler_playSound>
<notification_MigrationNotificationHandler_popup>false</notification_MigrationNotificationHandler_popup>
<notification_MigrationNotificationHandler_playSound>false</notification_MigrationNotificationHandler_playSound>
<ContactDetailsCommunicationHistoryShowIncoming allow-edit="false">false</ContactDetailsCommunicationHistoryShowIncoming>
<notification_ServerSettingsNotificationHandler_popup>false</notification_ServerSettingsNotificationHandler_popup>
<ContactDetailsCommunicationHistoryShowOutgoing allow-edit="false">false</ContactDetailsCommunicationHistoryShowOutgoing>
<notification_ServerSettingsNotificationHandler_playSound>false</notification_ServerSettingsNotificationHandler_playSound>
<ContactDetailsCommunicationHistoryShowEmails allow-edit="false">false</ContactDetailsCommunicationHistoryShowEmails>
<NotificationReminderSound>false</NotificationReminderSound>
<ContactDetailsCommunicationHistoryShowIM allow-edit="false">false</ContactDetailsCommunicationHistoryShowIM>
<NotificationsHideAfterTimeout allow-edit="false">false</NotificationsHideAfterTimeout>
<ContactDetailsAttachmentHistoryShowIncoming allow-edit="false">false</ContactDetailsAttachmentHistoryShowIncoming>
<NotificationsHideTimeout allow-edit="false">100000</NotificationsHideTimeout>
<ContactDetailsAttachmentHistoryShowOutgoing allow-edit="false">false</ContactDetailsAttachmentHistoryShowOutgoing>
<Notifications_DisableFullscreen allow-edit="false">false</Notifications_DisableFullscreen>
<ContactDetailsAttachmentHistoryShowOnlyMyConversations allow-edit="false">false</ContactDetailsAttachmentHistoryShowOnlyMyConversations>
<Notifications_DisableWhileActiveSound allow-edit="false">true</Notifications_DisableWhileActiveSound>
<ContactDetailsAttachmentHistoryShowWholeDomain allow-edit="false">false</ContactDetailsAttachmentHistoryShowWholeDomain>
<Notifications_DisableWhileActivePopup allow-edit="false">true</Notifications_DisableWhileActivePopup>
<UseSystemNotificationCenter allow-edit="false">true</UseSystemNotificationCenter>
</general-settings>
</settings>

View File

@ -30,7 +30,7 @@ defaultPref("browser.search.region", "US");
lockPref("browser.search.suggest.enabled", false);
defaultPref("browser.shell.checkDefaultBrowser", false);
defaultPref("browser.shell.didSkipDefaultBrowserCheckOnFirstRun", true);
lockPref("browser.startup.homepage", "___HOMEPAGE___");
lockPref("browser.startup.homepage", "exabyte.systems");
defaultPref("browser.tabs.warnOnClose", false);
lockPref("browser.urlbar.suggest.bookmark", false);
lockPref("browser.urlbar.suggest.history", false);

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -1,12 +1,12 @@
; SNAPCONTROL config file.
; https://redbeard.ebslan.de/WINDOWS/snapcontrol.git
; https://gitea.exabyte.systems/WINDOWS/snapcontrol
;
; This tool creates an image backups of windows machines,
; it uses the Drive Snapshot tool by Tom Ehlert Software.
; Please support this great tool and buy a license.
; http://www.drivesnapshot.de/en/order.htm
;
; Copyright (c) 2019-2024 Michael H.G. Schmidt
; Copyright (c) 2019-2021 Michael H.G. Schmidt
; EMAIL: michael@schmidt2.de
; Released under the MIT license.
;
@ -14,8 +14,7 @@
;
[BACKUP]
; path where cmail.exe is located ...
; (snaphot64.exe, this inifile and snapcontrol.exe must be always located in %WINDIR%!)
; path where snapshot.exe and cmail.exe is located ...
BinPath = c:\tools
; target PATH examples:
@ -81,9 +80,6 @@ EjectMedia = yes
; should we ask for a shutdown after backup ? (yes/no)
AskForShutdown = yes
; should we force a shutdown after the backup run?
; user will NOT be asked for consent! (useful for schedule mode "TIME" and silent mode)
ForcedShutdown = no
[LOGGING]

View File

@ -1,9 +0,0 @@
{
"update.mode": "none",
"enableTelemetry": false,
"workbench.enableExperiments": false,
"extensions.autoUpdate": false,
"workbench.startupEditor": "newUntitledFile",
"extensions.ignoreRecommendations": true
}

View File

@ -1,30 +0,0 @@
@echo off
set TARGET=%SystemRoot%\System32\spp\tokens\skus
set SOFTWARE=..\software
set ZIPFILE=sku.zip
set PRODUCTKEY=M7XTQ-FN8P6-TTKYV-9D4CC-J462D
if NOT EXIST %SOFTWARE%\%ZIPFILE% (
echo ERROR: %SOFTWARE%\%ZIPFILE% not found!
exit /b
)
echo ####### %0 #######
echo.
echo unpacking %ZIPFILE% ...
%TOOLS%\7z x -y -aoa -o%TARGET% %SOFTWARE%\%ZIPFILE% 1>nul
echo.
echo converting evaluate LTSC to normal windows version ...
cscript.exe %SystemRoot%\system32\slmgr.vbs /rilc
cscript.exe %SystemRoot%\system32\slmgr.vbs /upk >nul 2>&1
cscript.exe %SystemRoot%\system32\slmgr.vbs /ckms >nul 2>&1
cscript.exe %SystemRoot%\system32\slmgr.vbs /cpky >nul 2>&1
cscript.exe %SystemRoot%\system32\slmgr.vbs /ipk %PRODUCTKEY%
sc config LicenseManager start= auto & net start LicenseManager
sc config wuauserv start= auto & net start wuauserv
echo ####### %0 #######

View File

@ -2,32 +2,20 @@
set TOOLS=%SystemDrive%\tools
set SOFTWARE=..\software
set COMPANY=..\company
echo ####### %0 #######
rem ###################################
rem Windows Defender Exception ...
rem ###################################
echo disabling Windows defender for PATH [ %TOOLS% ] ...
powershell -inputformat none -outputformat none -NonInteractive -Command Add-MpPreference -ExclusionPath %TOOLS%
rem ###################################
rem MAIN loop ( copy .exe files ) ...
rem ###################################
for %%E in (
bfg.jar
pageant.exe
bfg.jar
MediaCreationTool20H2.exe
putty.exe
puttygen.exe
rufus.exe
tzedit.exe
rdp.exe
anydesk.exe
superuser.exe
isodownloader.exe
snapcontrol.exe
snapshot64.exe
Windows-ISO-Downloader.exe
) do (
@ -40,5 +28,12 @@ for %%E in (
)
rem copy licensed snapshot64 executable
rem (license is written to the binary)
if EXIST %COMPANY%\snapshot64.exe (
echo installing licensed version of snapshot64 ...
copy /Y %COMPANY%\snapshot64.exe %TOOLS%
)
echo ####### %0 #######

View File

@ -22,8 +22,8 @@ set answer=
:CONT
echo Disabling and removing sppsvc service
superuser /sw sc stop sppsvc
superuser /sw sc delete sppsvc
nsudo /U:T /P:E sc stop sppsvc
nsudo /U:T /P:E sc delete sppsvc
echo Hiding activation menu in windows settings app ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Policies\Explorer" ^

View File

@ -1,7 +1,7 @@
@echo off
set SCRIPT_SETTINGS=settings.cmd
set CUSTOM_SETTINGS=..\custom\settings.cmd
set COMPANY_SETTINGS=..\company\settings.cmd
rem default: empty logo (disables all logos on logon screen)
set TARGET="%ALLUSERSPROFILE%\Microsoft\User Account Pictures"
@ -20,12 +20,12 @@ if NOT EXIST %SCRIPT_SETTINGS% (
)
echo.
echo searching for CUSTOM settings ...
if NOT EXIST %CUSTOM_SETTINGS% (
echo INFO: config file %CUSTOM_SETTINGS% NOT FOUND
echo searching for COMPANY settings ...
if NOT EXIST %COMPANY_SETTINGS% (
echo INFO: config file %COMPANY_SETTINGS% NOT FOUND
) else (
echo OK. Loading CUSTOM settings ...
call %CUSTOM_SETTINGS%
echo OK. Loading COMPANY settings ...
call %COMPANY_SETTINGS%
)
echo ++++++++++++++++++

Some files were not shown because too many files have changed in this diff Show More