Hello dear forum users! Please tell me which version is better to use the Toolkit for the version of Windows 10 Enterprise 2016 LTSB 10.0.14393 Version 1607. MSMG ToolKit v9.3.2 or MSMG ToolKit v8.8. Thank you very much.
Lol. What are the chances. I have been trying to get the exact same download. I too don't have store on any PC here. And I've asked around people I know, none of them use the store, and most don't even have a Microsoft account. That speaks volumes.
Downloaded 4 files. The VCLIbs for x86 and x64. And the HEVC for x86 and x64/ This folder is empty. I have 9.3.2 installed. Do we need to install both x86 and x64 on an x64 system?
You need to download the .xml files from the download link, right now the link is down, use the mirror link and search for the <Packs\Apps\w10> folder and there you will get it. As per the official MS Appx ISO folder structure the x64 folder contains both x86 and x64 appx and so you need to install both of them.
only thing i use store for is 2 games... state of decay 2 and halo wars 2. THAT IS IT! curious to know how much money they lose maintaining and developing the store
I thank you for the confirmation. I heard, reading a few posts back, your health problems and for this I make you my best wishes that can solve everything for the better. Your commitment to this project is commendable despite personal difficulties. Thanks for what you do.
Thanks for the info. I only ask you where to enter the registry key. I immediately carry out tests with the virtual machine.
Hi, 1) Edit :RemoveWindowsComponentsList section of your ToolKit_vxxx.cmd file like this & save it: Spoiler Code: echo.------------------------------------------------------------------------------- echo.####Removing Windows Components Using Package List############################# echo.------------------------------------------------------------------------------- echo. if "%ImageIndexNo%" equ "*" ( echo. for /L %%i in (1, 1, %ImageCount%) do ( if not %ImageIndexNo% gtr 9 echo.##########################[Install.wim, Index : %%i]############################# if %ImageIndexNo% gtr 9 echo.##########################[Install.wim, Index : %%i]############################ echo. for /f %%z IN ('"type %RemovePkgsList%" 2^>nul') do ( echo %%z | findstr /C:"ToolKitHelper:" 1>nul if errorlevel 1 ( call :RemoveLockedPackage "%InstallMount%\%%i", %%z, %%z ) else ( for /f "tokens=2 delims=:" %%a in ("%%z") do ( call :RemoveWindowsComponent "%InstallMount%\%%i", "%%a", "%%a" ) ) if /i "%%z" equ "OneDrive" ( rem Mounting Image Registry... call :MountImageRegistry "%InstallMount%\%%i" rem Deleting OneDrive remaining stuff... Reg delete "HKLM\TK_NTUSER\Software\Microsoft\Windows\CurrentVersion\Run" /v OneDriveSetup /f >nul 2>&1 call :RemoveFile "%InstallMount%\%%i\Users\Default\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\OneDrive.lnk" ) ) ) ) else ( for /f %%z IN ('"type %RemovePkgsList%" 2^>nul') do ( echo %%z | findstr /C:"ToolKitHelper:" 1>nul if errorlevel 1 ( call :RemoveLockedPackage "%InstallMount%", %%z, %%z ) else ( for /f "tokens=2 delims=:" %%a in ("%%z") do ( call :RemoveWindowsComponent "%InstallMount%", "%%a", "%%a" ) ) if /i "%%z" equ "OneDrive" ( rem Mounting Image Registry... call :MountImageRegistry "%InstallMount%" rem Deleting OneDrive remaining stuff... Reg delete "HKLM\TK_NTUSER\Software\Microsoft\Windows\CurrentVersion\Run" /v OneDriveSetup /f >nul 2>&1 call :RemoveFile "%InstallMount%\Users\Default\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\OneDrive.lnk" ) ) ) echo.------------------------------------------------------------------------------- echo.####Finished Removing Windows Components Using Package List#################### echo.------------------------------------------------------------------------------- 2) Mount install.Wim 3) Add/Remove/Customize like previously & save Source. 4) Run your tests
You mount the image registry -> tools -> options -> Load image registry (keys 8,3,4) You can then either start regedit and navigate to HKEY_LOCAL_MACHINE\TK_NTUSER\Software\Microsoft\Windows\CurrentVersion\Run and delete the onedrivesetup registry key entry or create a reg file in where you put the reg info or copy paste this in to a new reg file Code: Windows Registry Editor Version 5.00 ; Removes the onedrive setup [HKEY_LOCAL_MACHINE\TK_NTUSER\Software\Microsoft\Windows\CurrentVersion\Run] "OneDriveSetup"=- And then run the reg file. When done unmount the image registry again. tools->options->unload image registry (keys 8,3,4) Hope this helps you Cheers /Rex Edit: Or do as Kenafri suggest /LR