The WinReducer Forum
Would you like to react to this message? Create an account in a few clicks or log in to continue.

The WinReducer ForumLog in

FORUM

descriptionHow can I integrate these regs into the boot.wim file? EmptyHow can I integrate these regs into the boot.wim file?

more_horiz
How can I integrate these regs into the boot.wim file?

How can I integrate these regs into the boot.wim file. Some motherboards do not support tpm 2.0. They want to experience windows on these PCs.

[HKEY_LOCAL_MACHINE\SYSTEM\Setup\LabConfig]
"BypassTPMCheck"=dword:00000001
"BypassSecureBootCheck"=dword:00000001
"BypassRAMCheck"=dword:00000001
"BypassStorageCheck"=dword:00000001
"BypassCPUCheck"=dword:00000001
"BypassDiskCheck"=dword:00000001

descriptionHow can I integrate these regs into the boot.wim file? EmptyRe: How can I integrate these regs into the boot.wim file?

more_horiz
lebuda wrote:
How can I integrate these regs into the boot.wim file?

How can I integrate these regs into the boot.wim file. Some motherboards do not support tpm 2.0. They want to experience windows on these PCs.


You can download buildings in which boot.wim already includes these tweaks or to use RUFUS, it removes restrictions when creating a loading flash drive.

and WinReducer use only for install.wim to remove components

descriptionHow can I integrate these regs into the boot.wim file? EmptyRe: How can I integrate these regs into the boot.wim file?

more_horiz

Code:

@ECHO OFF&COLOR 9F&mode con cols=75 lines=15&Title WINDOWS 11 TPM SECUREBOOT FIX..&:MENU
@ECHO.
@ECHO.
@ECHO.
@ECHO.
@ECHO           BOOT WIM DOSYASI TPM ILETILERI ICIN,YENIDEN DUZENLENECEK
@ECHO           ONAYLIYORMUSUNUZ? ONAY ICIN ENTERLAYIN YADA CIKIS YAPIN..
@ECHO           _________________________________________________________
PAUSE
CLS
ECHO.
ECHO.
ECHO.
ECHO   ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»
ECHO   º                                                                º
ECHO   º  BOOTWIM DOSYASI TPM SECUREBOOT RAM ISLEMCI ILETILERINDEN      º
ECHO   º                                                                º
ECHO   º  ARINDIRILIYOR LUTFEN BEKLEYINIZ....                           º
ECHO   ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ
ping -n 3 0.0.0.0  >nul
ECHO.
cd %~dp0
md %~dp0wim
dism /mount-image /imagefile:%~dp0boot.wim /index:2 /mountdir:%~dp0wim
reg load HKlm\temp  %~dp0wim\Windows\System32\config\system
Reg.exe add "HKLM\temp\Setup\LabConfig" /v "BypassTPMCheck" /t REG_DWORD /d "1" /f
Reg.exe add "HKLM\temp\Setup\LabConfig" /v "BypassSecureBootCheck" /t REG_DWORD /d "1" /f
Reg.exe add "HKLM\temp\Setup\LabConfig" /v "BypassRAMCheck" /t REG_DWORD /d "1" /f
Reg.exe add "HKLM\temp\Setup\LabConfig" /v "BypassStorageCheck /t REG_DWORD /d "1" /f
Reg.exe add "HKLM\temp\Setup\LabConfig" /v "BypassCPUCheck /t REG_DWORD /d "1" /f
Reg.exe add "HKLM\temp\Setup\LabConfig" /v "BypassDiskCheck /t REG_DWORD /d "1" /f
reg unload HKlm\temp
dism /unmount-image /MountDir:%~dp0wim /commit
CLS
ECHO.
ECHO.
ECHO.
ECHO   ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»
ECHO   º                                                                º
ECHO   º                     ISLEMLER TAMAMLANDI!                       º
ECHO   º                                                                º
ECHO   º    YENI BOOTWIM DOSYASI OLUSTURULDU ARTIK KULLANABILIRSINIZ.   º
ECHO   º                                                                º
ECHO   ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ
ECHO.
ECHO          .::::::: UPDATE: LEBUDA :::::::.
ping -n 6 0.0.0.0  >nul
GOTO:EOF&CLS&EXIT


nekro666 wrote:
lebuda wrote:
How can I integrate these regs into the boot.wim file?

How can I integrate these regs into the boot.wim file. Some motherboards do not support tpm 2.0. They want to experience windows on these PCs.


You can download buildings in which boot.wim already includes these tweaks or to use RUFUS, it removes restrictions when creating a loading flash drive.

and WinReducer use only for install.wim to remove components


Your answer does not solve my problem. 
I made a "BYPASS.bat" package. 
What I want is to do this with WinReducer.

descriptionHow can I integrate these regs into the boot.wim file? EmptyRe: How can I integrate these regs into the boot.wim file?

more_horiz
lebuda wrote:

Code:

@ECHO OFF&COLOR 9F&mode con cols=75 lines=15&Title WINDOWS 11 TPM SECUREBOOT FIX..&:MENU
@ECHO.
@ECHO.
@ECHO.
@ECHO.
@ECHO           BOOT WIM DOSYASI TPM ILETILERI ICIN,YENIDEN DUZENLENECEK
@ECHO           ONAYLIYORMUSUNUZ? ONAY ICIN ENTERLAYIN YADA CIKIS YAPIN..
@ECHO           _________________________________________________________
PAUSE
CLS
ECHO.
ECHO.
ECHO.
ECHO   ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»
ECHO   º                                                                º
ECHO   º  BOOTWIM DOSYASI TPM SECUREBOOT RAM ISLEMCI ILETILERINDEN      º
ECHO   º                                                                º
ECHO   º  ARINDIRILIYOR LUTFEN BEKLEYINIZ....                           º
ECHO   ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ
ping -n 3 0.0.0.0  >nul
ECHO.
cd %~dp0
md %~dp0wim
dism /mount-image /imagefile:%~dp0boot.wim /index:2 /mountdir:%~dp0wim
reg load HKlm\temp  %~dp0wim\Windows\System32\config\system
Reg.exe add "HKLM\temp\Setup\LabConfig" /v "BypassTPMCheck" /t REG_DWORD /d "1" /f
Reg.exe add "HKLM\temp\Setup\LabConfig" /v "BypassSecureBootCheck" /t REG_DWORD /d "1" /f
Reg.exe add "HKLM\temp\Setup\LabConfig" /v "BypassRAMCheck" /t REG_DWORD /d "1" /f
Reg.exe add "HKLM\temp\Setup\LabConfig" /v "BypassStorageCheck /t REG_DWORD /d "1" /f
Reg.exe add "HKLM\temp\Setup\LabConfig" /v "BypassCPUCheck /t REG_DWORD /d "1" /f
Reg.exe add "HKLM\temp\Setup\LabConfig" /v "BypassDiskCheck /t REG_DWORD /d "1" /f
reg unload HKlm\temp
dism /unmount-image /MountDir:%~dp0wim /commit
CLS
ECHO.
ECHO.
ECHO.
ECHO   ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»
ECHO   º                                                                º
ECHO   º                     ISLEMLER TAMAMLANDI!                       º
ECHO   º                                                                º
ECHO   º    YENI BOOTWIM DOSYASI OLUSTURULDU ARTIK KULLANABILIRSINIZ.   º
ECHO   º                                                                º
ECHO   ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ
ECHO.
ECHO          .::::::: UPDATE: LEBUDA :::::::.
ping -n 6 0.0.0.0  >nul
GOTO:EOF&CLS&EXIT


nekro666 wrote:
lebuda wrote:
How can I integrate these regs into the boot.wim file?

How can I integrate these regs into the boot.wim file. Some motherboards do not support tpm 2.0. They want to experience windows on these PCs.


You can download buildings in which boot.wim already includes these tweaks or to use RUFUS, it removes restrictions when creating a loading flash drive.

and WinReducer use only for install.wim to remove components


Your answer does not solve my problem. 
I made a "BYPASS.bat" package. 
What I want is to do this with WinReducer.


My answer solves your problem. And I want it so differently, this is another question.If you turn on your brain, then you will understand that it is enough to create a boot.wim file in any method and then it is easy to insert it into each assembly.

descriptionHow can I integrate these regs into the boot.wim file? EmptyRe: How can I integrate these regs into the boot.wim file?

more_horiz
How can I integrate these regs into the boot.wim file? 1f600

descriptionHow can I integrate these regs into the boot.wim file? EmptyRe: How can I integrate these regs into the boot.wim file?

more_horiz
nekro666 wrote:
lebuda wrote:

Code:

@ECHO OFF&COLOR 9F&mode con cols=75 lines=15&Title WINDOWS 11 TPM SECUREBOOT FIX..&:MENU
@ECHO.
@ECHO.
@ECHO.
@ECHO.
@ECHO           BOOT WIM DOSYASI TPM ILETILERI ICIN,YENIDEN DUZENLENECEK
@ECHO           ONAYLIYORMUSUNUZ? ONAY ICIN ENTERLAYIN YADA CIKIS YAPIN..
@ECHO           _________________________________________________________
PAUSE
CLS
ECHO.
ECHO.
ECHO.
ECHO   ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»
ECHO   º                                                                º
ECHO   º  BOOTWIM DOSYASI TPM SECUREBOOT RAM ISLEMCI ILETILERINDEN      º
ECHO   º                                                                º
ECHO   º  ARINDIRILIYOR LUTFEN BEKLEYINIZ....                           º
ECHO   ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ
ping -n 3 0.0.0.0  >nul
ECHO.
cd %~dp0
md %~dp0wim
dism /mount-image /imagefile:%~dp0boot.wim /index:2 /mountdir:%~dp0wim
reg load HKlm\temp  %~dp0wim\Windows\System32\config\system
Reg.exe add "HKLM\temp\Setup\LabConfig" /v "BypassTPMCheck" /t REG_DWORD /d "1" /f
Reg.exe add "HKLM\temp\Setup\LabConfig" /v "BypassSecureBootCheck" /t REG_DWORD /d "1" /f
Reg.exe add "HKLM\temp\Setup\LabConfig" /v "BypassRAMCheck" /t REG_DWORD /d "1" /f
Reg.exe add "HKLM\temp\Setup\LabConfig" /v "BypassStorageCheck /t REG_DWORD /d "1" /f
Reg.exe add "HKLM\temp\Setup\LabConfig" /v "BypassCPUCheck /t REG_DWORD /d "1" /f
Reg.exe add "HKLM\temp\Setup\LabConfig" /v "BypassDiskCheck /t REG_DWORD /d "1" /f
reg unload HKlm\temp
dism /unmount-image /MountDir:%~dp0wim /commit
CLS
ECHO.
ECHO.
ECHO.
ECHO   ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»
ECHO   º                                                                º
ECHO   º                     ISLEMLER TAMAMLANDI!                       º
ECHO   º                                                                º
ECHO   º    YENI BOOTWIM DOSYASI OLUSTURULDU ARTIK KULLANABILIRSINIZ.   º
ECHO   º                                                                º
ECHO   ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ
ECHO.
ECHO          .::::::: UPDATE: LEBUDA :::::::.
ping -n 6 0.0.0.0  >nul
GOTO:EOF&CLS&EXIT


nekro666 wrote:
lebuda wrote:
How can I integrate these regs into the boot.wim file?

How can I integrate these regs into the boot.wim file. Some motherboards do not support tpm 2.0. They want to experience windows on these PCs.


You can download buildings in which boot.wim already includes these tweaks or to use RUFUS, it removes restrictions when creating a loading flash drive.

and WinReducer use only for install.wim to remove components


Your answer does not solve my problem. 
I made a "BYPASS.bat" package. 
What I want is to do this with WinReducer.


My answer solves your problem. And I want it so differently, this is another question.If you turn on your brain, then you will understand that it is enough to create a boot.wim file in any method and then it is easy to insert it into each assembly.

I guess you're the one with no brains. I already shared the codes in my answer. I wrote what I want to do with WinReducer. but I think your intelligence was not enough to understand this article.
privacy_tip Permissions in this forum:
You cannot reply to topics in this forum