1. graver.x

    graver.x MDL Senior Member

    Jan 18, 2020
    347
    484
    10
    #20821 graver.x, Oct 14, 2021
    Last edited: Oct 14, 2021
  2. kovadimka

    kovadimka MDL Novice

    Mar 19, 2020
    40
    12
    0
    #20822 kovadimka, Oct 14, 2021
    Last edited: Oct 14, 2021
    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?
     
  3. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    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>
    


     
  4. Randy Bobandy

    Randy Bobandy MDL Novice

    Mar 18, 2021
    40
    4
    0
    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?
     
  5. kovadimka

    kovadimka MDL Novice

    Mar 19, 2020
    40
    12
    0
    #20828 kovadimka, Oct 14, 2021
    Last edited: Oct 14, 2021
    Is there a register tweak to disable Focus Assist including icon in the right part of the taskbar?
     
  6. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,748
    3,575
    60
    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.
     
  7. Titanos

    Titanos MDL Novice

    Dec 11, 2019
    31
    28
    0
    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.
     
  8. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    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

     
  9. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    Have uploaded updated Toolkit.cmd + new Apps and Appx licenses.
     
  10. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,748
    3,575
    60
    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.
     
  11. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,748
    3,575
    60
    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!
     
  12. Titanos

    Titanos MDL Novice

    Dec 11, 2019
    31
    28
    0
    #20837 Titanos, Oct 15, 2021
    Last edited: Oct 15, 2021
    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.

    ControlSet001.jpg


    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
     
  13. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    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.

     
  14. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    Use DISM to remove the VP9 from all users and then try integrating the new version.

     
  15. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,748
    3,575
    60
    #20840 inTerActionVRI, Oct 15, 2021
    Last edited: Oct 15, 2021
    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. :rolleyes::eek::D
     

    Attached Files: