1. Feartamixg

    Feartamixg MDL Addicted

    May 15, 2016
    783
    629
    30
    That doesn't work for me. I have played with the batch file and the below works for me on Windows 10 x64 - I cannot confirm if it works on x86.
    Code:
    @echo off
    if %PROCESSOR_ARCHITECTURE% equ x86 @start /b "ToolKit - TrustedInstaller" "%~dp0Bin\x86\NSudo.exe" -U:T "%~dp0ToolKit.cmd"
    if %PROCESSOR_ARCHITECTURE% equ AMD64 @start /b "ToolKit - TrustedInstaller" "%~dp0Bin\x64\NSudo.exe" -U:T "%~dp0ToolKit.cmd"
     
  2. Feartamixg

    Feartamixg MDL Addicted

    May 15, 2016
    783
    629
    30
    Just seen this post before my reply above. I can confirm that the below code works for me on x64:
    Code:
    @echo off
    if "%PROCESSOR_ARCHITECTURE%" equ "x86" @start /b "ToolKit - TrustedInstaller" "%~dp0Bin\x86\NSudo.exe" -U:T "%~dp0ToolKit.cmd"
    if "%PROCESSOR_ARCHITECTURE%" equ "AMD64" @start /b "ToolKit - TrustedInstaller" "%~dp0Bin\x64\NSudo.exe" -U:T "%~dp0ToolKit.cmd"
     
  3. Super Spartan

    Super Spartan MDL Expert

    May 30, 2014
    1,744
    1,010
    60
    @MSMG

    I copied the Games pack to the Packs folder then I integrated the Windows 7 games successfully but when I try to launch any game, nothing happens. If I right click on the shortcut then choose the first option which is Open File Location, I get an error saying: Windows Can't find the target
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. monitor

    monitor MDL Novice

    Aug 29, 2009
    29
    5
    0
    Still getting errors when removing windows components, either missing or access denied. This was with both v7.8 and 7.9.
    I decided to try v7.7, had no issues with removing components, or any other errors. This was on build 16299 both pro and enterprise.
     
  5. tfwmdl

    tfwmdl MDL Novice

    Feb 18, 2010
    14
    2
    0
    I use this in Start.bat...

    Code:
    @echo off
    set ArchDir=x86
    if %PROCESSOR_ARCHITECTURE%==AMD64 set ArchDir=x64
    start /b "ToolKit - TrustedInstaller" "%~dp0Bin\%ArchDir%\NSudo.exe" -U:T "%~dp0ToolKit.cmd"
    exit
    
    Works every time. Hope this helps! :)
     
  6. FLCL

    FLCL MDL Junior Member

    Dec 20, 2013
    52
    17
    0
    Huuuu I'm excited and waiting für the support of the other language versions :].
     
  7. Super Spartan

    Super Spartan MDL Expert

    May 30, 2014
    1,744
    1,010
    60
    @MSMG

    Removing system restore doesn't work.

    Error message:

    The referenced assembly could not be found
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  8. kuroda

    kuroda MDL Senior Member

    Aug 25, 2012
    445
    32
    10
    ...
    ....What happened in the option(3)windows features to integrate microsoft edge? I do not see it anymore in toolkit 7.9 but the folders edge is there, I was integrating edge in Enterprise ltsb 2016 I couldn't....
     
  9. Arief Pizzuti

    Arief Pizzuti MDL Novice

    May 6, 2017
    11
    6
    0
    Using MSMG toolkit 7.9 right now on windows 10 pro x64 iso.
    my os right now windows 10 1709 enterprise x64.
    just have 3 errors when removing advanced windows component.
    other than that all component got removed succesfully .thanks

    2017-11-04 04_37_29-Administrator_  MSMG ToolKit v7.9.jpg 2017-11-04 04_38_33-Administrator_  MSMG ToolKit v7.9.jpg 2017-11-04 04_39_07-Administrator_  MSMG ToolKit v7.9.jpg
     
  10. biatche

    biatche MDL Addicted

    Nov 14, 2009
    573
    144
    30
    when reporting broken stuff, ought to specify details like host, image version, edition, arch etc..
     
  11. ZloY SloN

    ZloY SloN MDL Novice

    Apr 5, 2017
    11
    13
    0
    At last I've found the way to remove Store, Search and System Restore! I was trying to remove them in the end, after all other system Apps had been already removed. That was a mistake! I tried to remove them before all other Apps, and this worked! Removed them with no errors!
     
  12. ZloY SloN

    ZloY SloN MDL Novice

    Apr 5, 2017
    11
    13
    0
    Load a clean image and try to start your removing with these three components!
     
  13. xekon

    xekon MDL Novice

    Dec 23, 2015
    5
    6
    0
  14. Arief Pizzuti

    Arief Pizzuti MDL Novice

    May 6, 2017
    11
    6
    0
    will do .thanks
     
  15. khey

    khey MDL Novice

    Oct 2, 2016
    12
    1
    0
  16. Super Spartan

    Super Spartan MDL Expert

    May 30, 2014
    1,744
    1,010
    60
    @MSMG

    So I just installed Windows 10 after removing all store apps except store but the Microsoft Store now won't launch. clicking on it does nothing :(
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  17. dhjohns

    dhjohns MDL Guru

    Sep 5, 2013
    3,262
    1,733
    120
    After you have mounted the install.wim, you need to mount the registry in MSMG. Then alter the paths in the example below, and run in command file. Be sure you have copied theme files to mounted install.wim.
    Code:
    Reg.exe add "HKLM\TK_HKLM_SOFTWARE\Microsoft\Windows\CurrentVersion\Themes" /v "InstallTheme" /t REG_SZ /d "x:\Windows\resources\Themes\toc-blue.theme" /f >nul 2>&1
    Reg.exe add "HKLM\TK_HKLM_SOFTWARE\Microsoft\Windows\CurrentVersion\Themes" /v "InstallVisualStyle" /t REG_SZ /d "%%ResourceDir%%\themes\toc-blue\1.msstyles" /f >nul 2>&1
    Reg.exe add "HKLM\TK_HKLM_SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Themes" /v "InstallTheme" /t REG_SZ /d "x:\Windows\resources\Themes\toc-blue.theme" /f >nul 2>&1
    Reg.exe add "HKLM\TK_HKLM_SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Themes" /v "InstallVisualStyle" /t REG_SZ /d "%%ResourceDir%%\themes\toc-blue\1.msstyles" /f >nul 2>&1
    Reg.exe add "HKLM\TK_HKCU\Software\Microsoft\Windows\CurrentVersion\Themes" /v "InstallTheme" /t REG_EXPAND_SZ /d "%%SystemRoot%%\resources\Themes\toc-blue.theme" /f >nul 2>&1
    Reg.exe add "HKLM\TK_HKCU\Software\Microsoft\Windows\CurrentVersion\Themes" /v "InstallVisualStyle" /t REG_EXPAND_SZ /d "%%ResourceDir%%\themes\toc-blue\1.msstyles" /f >nul 2>&1
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  18. biatche

    biatche MDL Addicted

    Nov 14, 2009
    573
    144
    30
    msmg: are you cooking up any quick fixes (soon to be release) for any recent troubles people face?

    or will the next version be in a while? (decisions for us..)
     
  19. ubergeek77

    ubergeek77 MDL Novice

    Nov 2, 2017
    13
    2
    0
    I don't think so. I went through and removed the standard list of stuff (all metro apps besides store, telemetry, game bar, xbox, etc), but every single "feature" mentioned on that post was still active on my fresh modified install. The rest of my removals were successful, however.

    I haven't yet gone through the registry tweaks in the post you linked, and they probably do work, but I'd rather get MSMG to completely yank out all files/executables associated with those "features." It's better to do that, rather than run into a stray KB update that reverts all those registry keys.

    Any leads?