In win11 ru-RU image with removed and re-integrated Microsoft.WindowsCalculator_8wekyb3d8bbwe the Calculator app doesn't start up. So it's not because of VCLibs x86, it's because of language resources missing?
Make sure if you have added the necessary Calculator dependency appx. The latest Calculator app for Windows 11 is Code: Microsoft.WindowsCalculator_11.2109.9.0_neutral_~_8wekyb3d8bbwe.appx The dependency appx are Code: <Dependencies> <TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.22000.0" MaxVersionTested="10.0.22000.0"/> <PackageDependency Name="Microsoft.UI.Xaml.2.6" MinVersion="2.62108.18004.0" Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US"/> <PackageDependency Name="Microsoft.NET.Native.Framework.2.2" MinVersion="2.2.27912.0" Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US"/> <PackageDependency Name="Microsoft.NET.Native.Runtime.2.2" MinVersion="2.2.28604.0" Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US"/> <PackageDependency Name="Microsoft.VCLibs.140.00" MinVersion="14.0.30035.0" Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US"/> </Dependencies>
Question: someone who doesn't like all the Windows 10 glamour, apps that look as if designed for touch screen tablets, wants only bare bones OS, to be able to search from start menu bar and only receive installed apps or shortcuts to specific windows settings, and to use BitLocker with no hardware TPM, only password, still make system auto change wallpaper from given directory every xy minutes, play HEVC videos with gpu hw acceleration on installed by me player and codecs, install and use google chrome, atom NOT vscode, and WSL2, and play DirectX 11 games f.i. Civilization V might consider installing Windows IoT Enterprise or Windows Enterprise for Virtual Desktops as main daily driver operating system?
A beautiful reason to adopt the InPlace upgrade with images already prepared (customized), disable windows update and a great reason to keep the Manual Setup Component.
Check if those reg files contains references to "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet" . Replace "CurrentControlSet" with "ControlSet001". @MSMG It should be a Warning on 1st page about this.
When the Toolkit imports the registry from registry file, it will convert all the registry hives to Toolkit compatible format including HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet
This is only a problem if registry tweaks are inserted through another method. Through the toolkit an automatic conversion occurs. I suppose it can be the type of boot system. MBR Media USB used on GPT UEFI PC or vice versa.
I am facing a problem with VP9VideoExtensions, informs that it needs to be repaired, but is returning this code 0x80073D02. I've tried the store reset, but it did not work. I do not know how to force uninstallation and forced reinstallation. How can I do this? Thank you guys!
I learned that I shouldn't use CurrentControlSet on hardway - 2 days of tests. Importing registry using the option present in Toolkit I got computer rebooting after install. Same problem like DennyAmaro So, if is any code that replaces CurrentControlSet with ControlSet001 it might have some bugs. Anyway, I did'n found any reference to a replace in Toolkit.cmd code. Spoiler Edit: https://forums.mydigitallife.net/threads/msmg-toolkit.50572/page-1000#post-1678750 PS: Try DISM++ to remove that app and reinstall it through Store
The Toolkit uses PowerShell script to convert the registry hive names before importing the registry file, the PowerShell script ConvertReg.ps1 resides in Bin folder. Code: echo.------------------------------------------------------------------------------- echo.####Processing Custom Registry Settings Files################################## echo.------------------------------------------------------------------------------- echo. echo.Making Custom Registry compatible with ToolKit's Image Registry... call :RemoveFolder "%Temp%\CustomRegistry" call :CreateFolder "%Temp%\CustomRegistry" PowerShell -Executionpolicy Bypass -File "%Bin%\ConvertReg.ps1" "%CustomRegistry%" "%Temp%\CustomRegistry" echo. echo.------------------------------------------------------------------------------- echo.####Importing Custom Registry Settings from Registry File###################### echo.------------------------------------------------------------------------------- Make sure importing the registry works without using the Toolkit, since some reg keys won't work offline image.
Take a look at the "Bin\ConvertReg.ps1" conversion Toolkit PowerShell Script, I have never encountered problems in *.ps1 file. I even helped @Bira to customize for his script. For you to test whether the conversion is correct, you can take a test, starting the import of a reg file with CurrentControlSet . Go to the "Toolkit\Temp", which will be your converted files there. Note: The files will be deleted during the closing of the toolkit. In the final cleaning. To make a facilitated, I will make available the script that is already ready, this was in pt-BR. I was translating now to en-US. EDIT: During the time we are preparing a message, when posting, MSMG had already answered.