1. n3ro97

    n3ro97 MDL Member

    Oct 17, 2018
    105
    63
    10
    #22401 n3ro97, Apr 5, 2022
    Last edited: Apr 5, 2022
  2. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,770
    3,601
    60
    For direct command, yes!

    For Toolkit by using the lists. no. Inside the lists only the names, the toolkit will do the proccess to checkin if if is present then get the full file name to begin removal process.

    Undertood. Seems like that!

    Were the commands run as admin?


    Maybe with powershell command as admin it could be different.
    Code:
    Get-AppXProvisionedPackage -Path 'C:\Toolkit\Mount\Install\1' | Out-GridView -PassThru -Title 'Select what you want to Remove' | Remove-AppxProvisionedPackage -Path 'C:\Toolkit\Mount\Install\1' -Verbose
    
    Visible or not is something for this below command. I dont know how to do this.
    Code:
    Get-WindowsPackage -Path 'C:\Toolkit\Mount\Install\1' | Out-GridView -PassThru -Title 'Select what you want to Remove' | Remove-WindowsPackage -Path 'C:\Toolkit\Mount\Install\1' -Verbose
    
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. tecnics

    tecnics MDL Novice

    Jul 16, 2015
    13
    9
    0
    Can you help me with this error when I run RemovePkgsList with Toolkit?



    ISO I am using: SW_DVD9_Win_Pro_10_21H2.4_64BIT_Turkish_Pro_Ent_EDU_N_MLF_X23-08327
     

    Attached Files:

  4. EliteCherrys10

    EliteCherrys10 MDL Novice

    Feb 21, 2022
    1
    0
    0
    I Have problem in removing Microsoft solitaire app when i remove show white box and say error boolean etc..
     
  5. Zanza-kun

    Zanza-kun MDL Junior Member

    May 28, 2012
    87
    15
    0
    Hello, I have several applications that show me a yellow border, it is a security system that Microsoft has implemented on Windows 10, on Windows 11 it is not supposed to be displayed or can be deactivated via the application. I deleted everything with MSMG (except WindowsDefender, SecurityCenter, WindowsFirewall, FileExplorer, Calculator, Terminal, Notepad, OpenSSH, CapturePicker) and I get this border without the possibility of disabling it, I tested on an untouched version on VirtualBox, I don't have it.

    Does anyone have any idea where this is coming from ? Thank you !
     
  6. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,770
    3,601
    60
    I believe it is the same answer for both of you.

    Put the toolkit on the shortest possible path.
    C:\MSMG

    Start the Toolkit using Start.cmd
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,770
    3,601
    60
    #22408 inTerActionVRI, Apr 6, 2022
    Last edited: Apr 6, 2022
    Just as you said! This, too, seems to me to be something new...
    Let's wait for people to tell us if they have this problem.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  8. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,770
    3,601
    60
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  9. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,770
    3,601
    60
    Do you removed:
    w10 Snip & Sketch (ScreenSketch)
    or
    w11 Snipping Tool App (ScreenSketch)
    ?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  10. MIMMO61

    MIMMO61 MDL Senior Member

    Aug 19, 2009
    379
    108
    10
    #22411 MIMMO61, Apr 6, 2022
    Last edited: Apr 7, 2022
    Good morning.
    These are the apps I have left on W11.
    For the moment I have not found any problems
    PowerShell.exe "Get-AppxPackage | Where-Object {$_.NonRemovable -eq $False} | Select Name, PackageFullName"
    Code:
    Name                           PackageFullName                                               
    ----                           ---------------                                               
    Microsoft.UI.Xaml.2.4          Microsoft.UI.Xaml.2.4_2.42007.9001.0_x64__8wekyb3d8bbwe       
    Microsoft.VCLibs.140.00        Microsoft.VCLibs.140.00_14.0.29231.0_x64__8wekyb3d8bbwe       
    Microsoft.WindowsTerminal      Microsoft.WindowsTerminal_1.6.10571.0_x64__8wekyb3d8bbwe       
    Microsoft.WebpImageExtension   Microsoft.WebpImageExtension_1.0.32731.0_x64__8wekyb3d8bbwe   
    Microsoft.WebMediaExtensions   Microsoft.WebMediaExtensions_1.0.40831.0_x64__8wekyb3d8bbwe   
    Microsoft.VP9VideoExtensions   Microsoft.VP9VideoExtensions_1.0.41182.0_x64__8wekyb3d8bbwe   
    Microsoft.PowerAutomateDesktop Microsoft.PowerAutomateDesktop_1.0.65.0_x64__8wekyb3d8bbwe     
    Microsoft.HEIFImageExtension   Microsoft.HEIFImageExtension_1.0.40978.0_x64__8wekyb3d8bbwe   
    Microsoft.MicrosoftEdge.Stable Microsoft.MicrosoftEdge.Stable_100.0.1185.29_neutral__8wekyb3d8bbwe
    
     
  11. Zanza-kun

    Zanza-kun MDL Junior Member

    May 28, 2012
    87
    15
    0
    Yes, but even with untouched version of Windows 11 I have the yellow border, if I didn't see it it came from VirtualBox, it appears well in full screen.

    Edit : maybe Windows update remove this function ?
     
  12. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,770
    3,601
    60
    Can you post your list for NonRemovable Packages?

    Info Listing Command
    Code:
    PowerShell.exe -C "Get-AppxPackage | Select Name, PackageFullName"
    
    Out-GridView Command
    Code:
    PowerShell.exe -C "Get-AppxPackage | Out-GridView -PassThru -Title 'Select what you want to Remove' | Remove-AppxPackage -Verbose"
    


    Info Listing Command
    Code:
    PowerShell.exe -C "Get-AppxPackage | ? { ! ( $_.NonRemovable ) } | Select Name, PackageFullName"
    
    Out-GridView Command
    Code:
    PowerShell.exe -C "Get-AppxPackage | ? { ( ! $_.NonRemovable ) } | Out-GridView -PassThru -Title 'Select what you want to Remove' | Remove-AppxPackage -Verbose"
    


    Info Listing Command
    Code:
    PowerShell.exe -C "Get-AppxPackage | ? { ( $_.NonRemovable ) } | Select Name, PackageFullName"
    
    Out-GridView Command
    Code:
    PowerShell.exe -C "Get-AppxPackage | ? { ( $_.NonRemovable ) } | Out-GridView -PassThru -Title 'Select what you want to Remove' | Remove-AppxPackage -Verbose"
    
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  13. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,770
    3,601
    60
    I believe that WU does not remove this component.
    In fact, WU only re-adds the removed components to your customization.

    It is just that I read that this bug has plagued many people since 2020.

    Many people suggest going into the settings of:
    w10 Snip & Sketch (ScreenSketch)
    or
    w11 Snipping Tool App (ScreenSketch)

    and disable the "Snip Outline" option.

    Try this, it might work.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  14. MIMMO61

    MIMMO61 MDL Senior Member

    Aug 19, 2009
    379
    108
    10
    #22416 MIMMO61, Apr 6, 2022
    Last edited: Apr 6, 2022
    These are all installed apps including non-removable ones:
    PowerShell.exe "Get-AppxPackage | Select Name, PackageFullName"
    Code:
    Name                                        PackageFullName                                                          
    ----                                        ---------------                                                          
    Microsoft.Windows.CloudExperienceHost       Microsoft.Windows.CloudExperienceHost_10.0.22000.1_neutral_neutral_cw5n1...
    Microsoft.BioEnrollment                     Microsoft.BioEnrollment_10.0.19586.1000_neutral__cw5n1h2txyewy            
    Microsoft.AAD.BrokerPlugin                  Microsoft.AAD.BrokerPlugin_1000.19580.1000.0_neutral_neutral_cw5n1h2txyewy
    Microsoft.Windows.OOBENetworkConnectionFlow Microsoft.Windows.OOBENetworkConnectionFlow_10.0.21302.1000_neutral__cw5...
    Microsoft.Windows.OOBENetworkCaptivePortal  Microsoft.Windows.OOBENetworkCaptivePortal_10.0.21302.1000_neutral__cw5n...
    Microsoft.UI.Xaml.CBS                       Microsoft.UI.Xaml.CBS_2.62107.16001.0_x64__8wekyb3d8bbwe                  
    MicrosoftWindows.Client.CBS                 MicrosoftWindows.Client.CBS_1000.22000.593.0_x64__cw5n1h2txyewy          
    Microsoft.Windows.StartMenuExperienceHost   Microsoft.Windows.StartMenuExperienceHost_10.0.22000.37_neutral_neutral_...
    Microsoft.Windows.ShellExperienceHost       Microsoft.Windows.ShellExperienceHost_10.0.22000.71_neutral_neutral_cw5n...
    windows.immersivecontrolpanel               windows.immersivecontrolpanel_10.0.6.1000_neutral_neutral_cw5n1h2txyewy  
    Microsoft.Windows.Search                    Microsoft.Windows.Search_1.16.0.22000_neutral_neutral_cw5n1h2txyewy      
    Microsoft.MicrosoftEdge                     Microsoft.MicrosoftEdge_44.22000.120.0_neutral__8wekyb3d8bbwe            
    Microsoft.UI.Xaml.2.4                       Microsoft.UI.Xaml.2.4_2.42007.9001.0_x64__8wekyb3d8bbwe                  
    Microsoft.VCLibs.140.00                     Microsoft.VCLibs.140.00_14.0.29231.0_x64__8wekyb3d8bbwe                  
    1527c705-839a-4832-9118-54d4Bd6a0c89        1527c705-839a-4832-9118-54d4Bd6a0c89_10.0.19640.1000_neutral_neutral_cw5...
    Windows.PrintDialog                         Windows.PrintDialog_6.2.1.0_neutral_neutral_cw5n1h2txyewy                
    Windows.CBSPreview                          Windows.CBSPreview_10.0.19580.1000_neutral_neutral_cw5n1h2txyewy          
    NcsiUwpApp                                  NcsiUwpApp_1000.22000.1.0_neutral_neutral_8wekyb3d8bbwe                  
    MicrosoftWindows.UndockedDevKit             MicrosoftWindows.UndockedDevKit_10.0.22000.1_neutral_neutral_cw5n1h2txyewy
    Microsoft.Windows.XGpuEjectDialog           Microsoft.Windows.XGpuEjectDialog_10.0.22000.1_neutral_neutral_cw5n1h2tx...
    Microsoft.Windows.SecureAssessmentBrowser   Microsoft.Windows.SecureAssessmentBrowser_10.0.22000.1_neutral_neutral_c...
    Microsoft.Windows.PinningConfirmationDialog Microsoft.Windows.PinningConfirmationDialog_1000.22000.1.0_neutral__cw5n...
    Microsoft.Windows.ParentalControls          Microsoft.Windows.ParentalControls_1000.22000.1.0_neutral_neutral_cw5n1h...
    Microsoft.Windows.NarratorQuickStart        Microsoft.Windows.NarratorQuickStart_10.0.22000.1_neutral_neutral_8wekyb...
    Microsoft.Windows.CapturePicker             Microsoft.Windows.CapturePicker_10.0.19580.1000_neutral__cw5n1h2txyewy    
    Microsoft.Windows.CallingShellApp           Microsoft.Windows.CallingShellApp_1000.22000.1.0_neutral_neutral_cw5n1h2...
    Microsoft.Windows.AssignedAccessLockApp     Microsoft.Windows.AssignedAccessLockApp_1000.22000.1.0_neutral_neutral_c...
    Microsoft.Windows.Apprep.ChxApp             Microsoft.Windows.Apprep.ChxApp_1000.22000.1.0_neutral_neutral_cw5n1h2tx...
    Microsoft.Win32WebViewHost                  Microsoft.Win32WebViewHost_10.0.22000.1_neutral_neutral_cw5n1h2txyewy    
    Microsoft.MicrosoftEdgeDevToolsClient       Microsoft.MicrosoftEdgeDevToolsClient_1000.22000.1.0_neutral_neutral_8we...
    Microsoft.LockApp                           Microsoft.LockApp_10.0.22000.1_neutral__cw5n1h2txyewy                    
    Microsoft.ECApp                             Microsoft.ECApp_10.0.22000.1_neutral__8wekyb3d8bbwe                      
    Microsoft.CredDialogHost                    Microsoft.CredDialogHost_10.0.19595.1001_neutral__cw5n1h2txyewy          
    Microsoft.AsyncTextService                  Microsoft.AsyncTextService_10.0.22000.1_neutral__8wekyb3d8bbwe            
    Microsoft.AccountsControl                   Microsoft.AccountsControl_10.0.22000.1_neutral__cw5n1h2txyewy            
    F46D4000-FD22-4DB4-AC8E-4E1DDDE828FE        F46D4000-FD22-4DB4-AC8E-4E1DDDE828FE_10.0.22000.1_neutral_neutral_cw5n1h...
    E2A4F912-2574-4A75-9BB0-0D023378592B        E2A4F912-2574-4A75-9BB0-0D023378592B_10.0.19640.1000_neutral_neutral_cw5...
    c5e2524a-ea46-4f67-841f-6a9465d9d515        c5e2524a-ea46-4f67-841f-6a9465d9d515_10.0.22000.1_neutral_neutral_cw5n1h...
    Microsoft.WindowsTerminal                   Microsoft.WindowsTerminal_1.6.10571.0_x64__8wekyb3d8bbwe                  
    Microsoft.WebpImageExtension                Microsoft.WebpImageExtension_1.0.32731.0_x64__8wekyb3d8bbwe              
    Microsoft.WebMediaExtensions                Microsoft.WebMediaExtensions_1.0.40831.0_x64__8wekyb3d8bbwe              
    Microsoft.VP9VideoExtensions                Microsoft.VP9VideoExtensions_1.0.41182.0_x64__8wekyb3d8bbwe              
    Microsoft.SecHealthUI                       Microsoft.SecHealthUI_1000.22000.1.0_neutral__8wekyb3d8bbwe              
    Microsoft.PowerAutomateDesktop              Microsoft.PowerAutomateDesktop_1.0.65.0_x64__8wekyb3d8bbwe                
    Microsoft.HEIFImageExtension                Microsoft.HEIFImageExtension_1.0.40978.0_x64__8wekyb3d8bbwe              
    Microsoft.MicrosoftEdge.Stable              Microsoft.MicrosoftEdge.Stable_100.0.1185.29_neutral__8wekyb3d8bbwe      
    
    
    
     
  15. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,770
    3,601
    60
    #22417 inTerActionVRI, Apr 6, 2022
    Last edited: Apr 6, 2022
    @n3ro97,
    "MicrosoftWindows.Client.CBS" is setted as NonRemovable.

    Are you sure that in NTlite it is not "Windows.CBSPreview" that you are removing?

    EDIT: Answered below. No more questions.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  16. graver.x

    graver.x MDL Senior Member

    Jan 18, 2020
    349
    486
    10
  17. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,770
    3,601
    60
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  18. n3ro97

    n3ro97 MDL Member

    Oct 17, 2018
    105
    63
    10
    Anyone know what the Microsoft-Windows-Foundation-Package is for? I cannot find any information about this component.