1. iskakfatoni

    iskakfatoni MDL Novice

    Mar 19, 2010
    13
    1
    0
    But it's normal on other version (Windows 8.1)... But okey i'll try your solution...
     
  2. 正义羊

    正义羊 MDL Senior Member

    Feb 21, 2016
    257
    149
    10
    #21802 正义羊, Dec 9, 2021
    Last edited: Dec 9, 2021
    @MSMG , In toolkit 12.0 between lines 18163 and 18175:
    Code:
    echo.-------------------------------------------------------------------------------
    echo.####Starting Remove Windows Apps Using Apps List###############################
    echo.-------------------------------------------------------------------------------
    echo.
    echo.
    echo.    映像文件名称             :Install.wim
    echo.    映像索引                 :%ImageIndexNo%
    echo.    映像体系结构             :%ImageArchitecture%
    echo.    映像版本                 :%ImageVersion%.%ImageServicePackBuild%.%ImageServicePackLevel%
    echo.
    echo.-------------------------------------------------------------------------------
    echo.####Removing Windows Apps Using Apps List######################################
    echo.-------------------------------------------------------------------------------
    It should be like:
    Code:
    echo.-------------------------------------------------------------------------------
    echo.####Starting Remove Windows Apps Using Apps List###############################
    echo.-------------------------------------------------------------------------------
    echo.
    echo.    映像文件名称             :Install.wim
    echo.    映像索引                 :%ImageIndexNo%
    echo.    映像体系结构             :%ImageArchitecture%
    echo.    映像版本                 :%ImageVersion%.%ImageServicePackBuild%.%ImageServicePackLevel%
    echo.
    echo.-------------------------------------------------------------------------------
    echo.####Removing Windows Apps Using Apps List######################################
    echo.-------------------------------------------------------------------------------
    Pay attention under line "echo.####Starting Remove Windows Apps Using Apps List###############################".

    It has an extra line of white space that shouldn't exist
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,651
    3,398
    60
    Hoping you can solve.

    Yes, your Windows 8.1 files are allocated elsewhere in HD.
    It is very likely that there are windows 7 files that you are working, corrupted or in some HD area that has a problem. Check the hash from your official ISOS.
     
  4. Ace2

    Ace2 MDL Expert

    Oct 10, 2014
    1,414
    1,193
    60
    Offline commands:

    capability.cmd
    Code:
    @echo off
    
    set mountdir=C:\mount
    
    setlocal EnableExtensions EnableDelayedExpansion
    
    for %%c in (
       DirectX.Configuration.Database~~~~0.0.1.0
       Hello.Face.18967~~~~0.0.1.0
       Hello.Face.Migration.18967~~~~0.0.1.0
       Language.Handwriting~~~en-US~0.0.1.0
       Language.OCR~~~en-US~0.0.1.0
       Language.Speech~~~en-US~0.0.1.0
       Language.TextToSpeech~~~en-US~0.0.1.0
       Language.Basic~~~en-US~0.0.1.0
       MathRecognizer~~~~0.0.1.0
       OneCoreUAP.OneSync~~~~0.0.1.0
       OpenSSH.Client~~~~0.0.1.0
       Print.Fax.Scan~~~~0.0.1.0
       Print.Management.Console~~~~0.0.1.0
       Windows.Client.ShellComponents~~~~0.0.1.0
    ) do (
       dism /image:%mountdir% /remove-capability /CapabilityName:%%c
    )
       dism /image:%mountdir% /get-capabilities /format:table | find "Installed" | more
    )
       pause
    
    features.cmd
    Code:
    @echo off
    
    set mountdir=C:\mount
    
    setlocal EnableExtensions EnableDelayedExpansion
    
    for %%f in (
       LegacyComponents
       DirectPlay
    ) do (
       dism /image:%mountdir% /enable-feature /featurename:%%f
    )
    
    for %%f in (
       Printing-PrintToPDFServices-Features
       Printing-XPSServices-Features
       WCF-Services45
       WCF-TCP-PortSharing45
       MediaPlayback
       WindowsMediaPlayer
       SmbDirect
       Windows-Defender-Default-Definitions
       SearchEngine-Client-Package
       MSRDC-Infrastructure
       WorkFolders-Client
       Printing-Foundation-Features
       Printing-Foundation-InternetPrinting-Client
       MicrosoftWindowsPowerShellV2Root
       MicrosoftWindowsPowerShellV2
       NetFx4-AdvSrvs
       Internet-Explorer-Optional-amd64
    ) do (
       dism /image:%mountdir% /disable-feature /featurename:%%f
    )
       dism /image:%mountdir% /get-features /format:table | find "Enabled" | more
    )
       pause
    
    install_wim_tweak.cmd
    Code:
    @echo off
    
    cd /d "%~dp0"
    
    set mountdir=C:\mount
    
    setlocal EnableExtensions EnableDelayedExpansion
    
    for %%p in (
       Microsoft-Windows-FodMetadata-Package
       Microsoft-Windows-MediaPlayer-Package
    ) do (
       install_wim_tweak.exe /p %mountdir% /c %%p /r
    )
       pause
    )
       del SOFTWAREBKP
    
     
  5. Jingzin

    Jingzin MDL Senior Member

    Nov 10, 2021
    379
    232
    10
    Does anyone know what shouldn't i delete in msmg toolkit to get snipping tool working?
     
  6. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,651
    3,398
    60
    Should be without closing parentheses:
    Code:
    dism /image:%mountdir% /get-capabilities /format:table | find "Installed" | more
    pause
    

    Should be without closing parentheses:
    Code:
    dism /image:%mountdir% /get-features /format:table | find "Enabled" | more
    pause
    

    Should be without closing parentheses:
    Code:
    pause
    del SOFTWAREBKP
    

    I know that by being small scripts, this extra closure parentheses will not be problems, but may be, if they are used in the middle of a more complex code.

    Only closing the "do command block" should be with parentheses.

    Thnx for the very good contribution!
     
  7. Jingzin

    Jingzin MDL Senior Member

    Nov 10, 2021
    379
    232
    10
    OK i think I found it it's called screen sketch
     
  8. zero cool root

    zero cool root MDL Senior Member

    Jun 17, 2011
    376
    161
    10
    I think it's SnippingTool..!!
     
  9. solare

    solare MDL Novice

    Jul 15, 2020
    16
    0
    0
    Could you please provide the download link of MSMG again? It seems to have failed. Thank you very much!
     
  10. mofez

    mofez MDL Novice

    Dec 1, 2017
    9
    1
    0
    How can I (re)install XboxGameCallableUI ?
     
  11. solare

    solare MDL Novice

    Jul 15, 2020
    16
    0
    0
    @Outcast ,can you reupload this archive? Thank you.
     
  12. jinvidia

    jinvidia MDL Member

    Aug 7, 2016
    238
    35
    10
    #21814 jinvidia, Dec 11, 2021
    Last edited: Dec 11, 2021
    You mean snipping tool in start menu or screen snip in quick actions ?

    If you meant the screen snip in quick actions, then I am also facing the same issue. Starting from v11.6 I am not able to make the screen snip in quick actions work. Recently I serviced LTSC 2021 with v12.0 and I am facing sfc violation and the aforesaid screen snip issue.

    @MSMG and other members, kindly give me a solution for this. Thanks in advance.
     
  13. jinvidia

    jinvidia MDL Member

    Aug 7, 2016
    238
    35
    10
    I did remove the capturepicker component from the removepkgslist.txt of LTSC 2021. But still the screen snip doesnt work from quick actions. Any alternative solution ? Thanx
     
  14. 正义羊

    正义羊 MDL Senior Member

    Feb 21, 2016
    257
    149
    10
    #21817 正义羊, Dec 12, 2021
    Last edited: Dec 12, 2021
    @MSMG , When I use ToolKit v12.0, I see the Infomation In Startup:

    Windows 10 ProfessionalWorkstation Client (2009 21H2) - v10.0.22000.348 x64 zh-CN

    Older version such as 11.9, it speaks Windows 11

    The expected result should be:

    Windows 11 ProfessionalWorkstation Client (2009 21H2) - v10.0.22000.348 x64 zh-CN
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  15. Jingzin

    Jingzin MDL Senior Member

    Nov 10, 2021
    379
    232
    10