1. catosis

    catosis MDL Junior Member

    Apr 24, 2022
    95
    24
    0
    After updating via MSMG can I safely enable full resetbase?
    Is cleanup, the 1st option in "Apply" menu the same as answering "Y" after trimming not selected editions?
    For LTSC 2021 do I need the bigger update file 700,7 MB
    windows10.0-kb5023696-x64_84833717ac6fdecea30cc3d235479a65a68069b0.msu
    or the "Dynamic..." 684,6 MB?
     
  2. sousaf265

    sousaf265 MDL Novice

    May 30, 2015
    23
    0
    0
    oh, sorry for not posting in english before. Anyway, I posted the MSMG folder on the C: drive, and UAC is disabled on the system. When I start start.cmd, it is unresponsive, and the powershell window stays open until I manually close it.
     
  3. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,770
    3,601
    60
    Try to enable UAC, and disable anti-virus. Maybe your anti-virus found some false positives because of heuristic analysis and sent something to quarantine. You will have to deactivate and extract the Toolkit package again. The interesting part is that there are no non-MS tools other than the scripts and the (7zip, wimlib and toolkithelper) executable binaries.

    Should be cmd window, not powershell.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. Tiger-1

    Tiger-1 MDL Guru

    Oct 18, 2014
    8,326
    11,613
    270
    Hi good friend very useful info for all users imo thanks :worthy:
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,770
    3,601
    60
    #25205 inTerActionVRI, Apr 7, 2023
    Last edited: Apr 7, 2023
    In that sentence I was referring to the "Access Denied" issue.

    I was re-reading what I wrote and it looked like the issue I was referring to, was related to the "UAC issue" mentioned in the sentence before this one. I will edit the previous message, so there is no misunderstanding.

    Corrected sentence.
    Sorry if I generated any questions or misunderstandings. I think I managed to make it clear.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. Tiger-1

    Tiger-1 MDL Guru

    Oct 18, 2014
    8,326
    11,613
    270
    yep no problem in my side too :)
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. Yanta

    Yanta MDL Senior Member

    May 21, 2017
    491
    284
    10
    Ah, misunderstanding I think. Not looking to install store. Heavens no.
    Looking to install the audio control component for motherboards.
    Install the drivers from manufacturers site says I need to download the audio control from Microsoft store.
    I'm wondering if I can get the Audio control package name so I can see if I can download it from adguard.
     
  8. Yanta

    Yanta MDL Senior Member

    May 21, 2017
    491
    284
    10
    That's ok, don;t use store or winget. Don't use inbox or any UWP apps that I am aware of.
    The only time I Have this issue is when vendors have split the driver packages into a vendor component and microsoft component.
    For example, when nvidia switch to dch the control panel was only available from the store... Until I found that nvidia now include it as part of the dch package.
    But not all motherboiard vendors are packaging the audio control package with the driver download.
    The ASRock USB audio driver was good, but the MSI drivers for several motherboards want me to get the control package from the store, which I can't do.
     
  9. mhussain

    mhussain MDL Senior Member

    Oct 1, 2012
    384
    161
    10
    what is the name of the item you are searching for?
     
  10. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    What's the Audio device used, is it Realtek?

    Do specify the App name? will check and get the package name.

    Here are some of the OEM App package family names

    AD2F1837.HPSupportAssistant_v10z8vjag6ke6
    AdvancedMicroDevicesInc-2.AMDLink_0a9344xs7nr4m
    AppUp.IntelGraphicsExperience_8j3eq9eme6ctt
    AppUp.ThunderboltControlCenter_8j3eq9eme6ctt
    NVIDIACorp.NVIDIAControlPanel_56jybvy8sckqj
    RealtekSemiconductorCorp.RealtekAudioControl_dt26b99r8h8gj
    RivetNetworks.KillerControlCenter_rh07ty8m5nkag
    WavesAudio.MaxxAudioProforDell2020_fh4rh281wavaa
     
  11. Hello Mr. Sergey :bye3: so sorry for my very late reply, im in the middle of school's end year exams... must study hard to get good grades... thank u so much :giverose:
     
  12. Do u know how to remove cloudexperiencehost? Thanks
     
  13. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,770
    3,601
    60
    if you have the uwp installed,

    PowerShell.exe -Command "(Get-AppxPackage *edge*).PackageFamilyName"

    replace "edge" for what you want to search.


    Or get full Family list
    PowerShell.exe -Command "(Get-AppxPackage).PackageFamilyName"


    PowerShell.exe -Command "..."

    The command will work with cmd.exe, PowerShell 5.1 "PowerShell.exe" and PowerShell 7.x "PwSh.exe"
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  14. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,770
    3,601
    60
    #25214 inTerActionVRI, Apr 7, 2023
    Last edited: Apr 7, 2023
    Code:
    @echo off
    
    echo Taking ownership of Microsoft.CloudExperienceHost...
    takeown /f "C:\Windows\SystemApps\Microsoft.CloudExperienceHost" /r /d y
    
    echo Deleting Microsoft.CloudExperienceHost...
    rd /s /q "C:\Windows\SystemApps\Microsoft.CloudExperienceHost"
    
    echo Done!
    pause
    
    save as "remove-cloudexperiencehost.cmd"

    Run as admin

    Bring the results.
    Note: Use at your own risk.

    Maybe you need to add this at the beginning of the script, after @echo OFF.
    Code:
    TaskKill.exe /IM "explorer.exe" /T /F >nul 2>&1
    
    to launch explorer again:
    ctrl + shift + esc
    to open task manager
    open new task and type explorer.exe
    Or restart the PC.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  15. Yanta

    Yanta MDL Senior Member

    May 21, 2017
    491
    284
    10
    Sir, you are a legend! Realtek is used on ASRock and MSI boards - the only brands I will use.

    PS C:\Users\Tanya> Get-AppxPackage -AllUsers


    Name : Microsoft.Windows.CapturePicker
    Publisher : CN=Microsoft Windows, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
    Architecture : Neutral
    ResourceId :
    Version : 10.0.19041.1023
    PackageFullName : Microsoft.Windows.CapturePicker_10.0.19041.1023_neutral__cw5n1h2txyewy
    InstallLocation : C:\Windows\SystemApps\Microsoft.Windows.CapturePicker_cw5n1h2txyewy
    IsFramework : False
    PackageFamilyName : Microsoft.Windows.CapturePicker_cw5n1h2txyewy
    PublisherId : cw5n1h2txyewy
    PackageUserInformation : {S-1-5-21-974199620-1516164726-3069099516-1001 [Tanya]: Installed, S-1-5-18 [S-1-5-18]:
    Installed}
    IsResourcePackage : False
    IsBundle : False
    IsDevelopmentMode : False
    NonRemovable : True
    IsPartiallyStaged : False
    SignatureKind : System
    Status : Ok

    Name : Microsoft.Windows.CloudExperienceHost
    Publisher : CN=Microsoft Windows, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
    Architecture : Neutral
    ResourceId : neutral
    Version : 10.0.19041.1266
    PackageFullName : Microsoft.Windows.CloudExperienceHost_10.0.19041.1266_neutral_neutral_cw5n1h2txyewy
    InstallLocation :
    IsFramework : False
    PackageFamilyName : Microsoft.Windows.CloudExperienceHost_cw5n1h2txyewy
    PublisherId : cw5n1h2txyewy
    PackageUserInformation : {S-1-5-21-974199620-1516164726-3069099516-1001 [Tanya]: Installed, S-1-5-18 [S-1-5-18]:
    Installed}
    IsResourcePackage : False
    IsBundle : False
    IsDevelopmentMode : False
    NonRemovable : True
    IsPartiallyStaged : False
    SignatureKind : System
    Status : Ok

    Name : Microsoft.Windows.ShellExperienceHost
    Publisher : CN=Microsoft Windows, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
    Architecture : Neutral
    ResourceId : neutral
    Version : 10.0.19041.1949
    PackageFullName : Microsoft.Windows.ShellExperienceHost_10.0.19041.1949_neutral_neutral_cw5n1h2txyewy
    InstallLocation : C:\Windows\SystemApps\ShellExperienceHost_cw5n1h2txyewy
    IsFramework : False
    PackageFamilyName : Microsoft.Windows.ShellExperienceHost_cw5n1h2txyewy
    PublisherId : cw5n1h2txyewy
    PackageUserInformation : {S-1-5-21-974199620-1516164726-3069099516-1001 [Tanya]: Installed, S-1-5-18 [S-1-5-18]:
    Installed}
    IsResourcePackage : False
    IsBundle : False
    IsDevelopmentMode : False
    NonRemovable : True
    IsPartiallyStaged : False
    SignatureKind : System
    Status : Ok

    Name : Microsoft.Windows.StartMenuExperienceHost
    Publisher : CN=Microsoft Windows, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
    Architecture : Neutral
    ResourceId : neutral
    Version : 10.0.19041.1023
    PackageFullName : Microsoft.Windows.StartMenuExperienceHost_10.0.19041.1023_neutral_neutral_cw5n1h2txyewy
    InstallLocation :
    IsFramework : False
    PackageFamilyName : Microsoft.Windows.StartMenuExperienceHost_cw5n1h2txyewy
    PublisherId : cw5n1h2txyewy
    PackageUserInformation : {S-1-5-18 [S-1-5-18]: Installed, S-1-5-21-974199620-1516164726-3069099516-1001 [Tanya]:
    Installed}
    IsResourcePackage : False
    IsBundle : False
    IsDevelopmentMode : False
    NonRemovable : True
    IsPartiallyStaged : False
    SignatureKind : System
    Status : Ok

    Name : MicrosoftWindows.Client.CBS
    Publisher : CN=Microsoft Windows, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
    Architecture : X64
    ResourceId :
    Version : 120.2212.4190.0
    PackageFullName : MicrosoftWindows.Client.CBS_120.2212.4190.0_x64__cw5n1h2txyewy
    InstallLocation : C:\Windows\SystemApps\MicrosoftWindows.Client.CBS_cw5n1h2txyewy
    IsFramework : False
    PackageFamilyName : MicrosoftWindows.Client.CBS_cw5n1h2txyewy
    PublisherId : cw5n1h2txyewy
    PackageUserInformation : {S-1-5-21-974199620-1516164726-3069099516-1001 [Tanya]: Installed, S-1-5-18 [S-1-5-18]:
    Installed}
    IsResourcePackage : False
    IsBundle : False
    IsDevelopmentMode : False
    NonRemovable : True
    IsPartiallyStaged : False
    SignatureKind : System
    Status : Ok

    Name : MicrosoftWindows.UndockedDevKit
    Publisher : CN=Microsoft Windows, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
    Architecture : Neutral
    ResourceId : neutral
    Version : 10.0.19041.1023
    PackageFullName : MicrosoftWindows.UndockedDevKit_10.0.19041.1023_neutral_neutral_cw5n1h2txyewy
    InstallLocation : C:\Windows\SystemApps\MicrosoftWindows.UndockedDevKit_cw5n1h2txyewy
    IsFramework : False
    PackageFamilyName : MicrosoftWindows.UndockedDevKit_cw5n1h2txyewy
    PublisherId : cw5n1h2txyewy
    PackageUserInformation : {S-1-5-21-974199620-1516164726-3069099516-1001 [Tanya]: Installed, S-1-5-18 [S-1-5-18]:
    Installed}
    IsResourcePackage : False
    IsBundle : False
    IsDevelopmentMode : False
    NonRemovable : True
    IsPartiallyStaged : False
    SignatureKind : System
    Status : Ok

    Name : windows.immersivecontrolpanel
    Publisher : CN=Microsoft Windows, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
    Architecture : Neutral
    ResourceId : neutral
    Version : 10.0.2.1000
    PackageFullName : windows.immersivecontrolpanel_10.0.2.1000_neutral_neutral_cw5n1h2txyewy
    InstallLocation : C:\Windows\ImmersiveControlPanel
    IsFramework : False
    PackageFamilyName : windows.immersivecontrolpanel_cw5n1h2txyewy
    PublisherId : cw5n1h2txyewy
    PackageUserInformation : {S-1-5-21-974199620-1516164726-3069099516-1001 [Tanya]: Installed, S-1-5-18 [S-1-5-18]:
    Installed}
    IsResourcePackage : False
    IsBundle : False
    IsDevelopmentMode : False
    NonRemovable : True
    IsPartiallyStaged : False
    SignatureKind : System
    Status : Ok

    Name : NVIDIACorp.NVIDIAControlPanel
    Publisher : CN=D6816951-877F-493B-B4EE-41AB9419C326
    Architecture : X64
    ResourceId :
    Version : 8.1.963.0
    PackageFullName : NVIDIACorp.NVIDIAControlPanel_8.1.963.0_x64__56jybvy8sckqj
    InstallLocation : C:\Program Files\WindowsApps\NVIDIACorp.NVIDIAControlPanel_8.1.963.0_x64__56jybvy8sckqj
    IsFramework : False
    PackageFamilyName : NVIDIACorp.NVIDIAControlPanel_56jybvy8sckqj
    PublisherId : 56jybvy8sckqj
    PackageUserInformation : {S-1-5-21-974199620-1516164726-3069099516-1001 [Tanya]: Installed, S-1-5-18 [S-1-5-18]:
    Installed}
    IsResourcePackage : False
    IsBundle : False
    IsDevelopmentMode : False
    NonRemovable : False
    IsPartiallyStaged : False
    SignatureKind : Store
    Status : Ok

    Name : Microsoft.HEVCVideoExtension
    Publisher : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
    Architecture : X86
    ResourceId :
    Version : 2.0.60091.0
    PackageFullName : Microsoft.HEVCVideoExtension_2.0.60091.0_x86__8wekyb3d8bbwe
    InstallLocation : C:\Program Files\WindowsApps\Microsoft.HEVCVideoExtension_2.0.60091.0_x86__8wekyb3d8bbwe
    IsFramework : False
    PackageFamilyName : Microsoft.HEVCVideoExtension_8wekyb3d8bbwe
    PublisherId : 8wekyb3d8bbwe
    PackageUserInformation : {S-1-5-21-974199620-1516164726-3069099516-1001 [Tanya]: Installed, S-1-5-18 [S-1-5-18]:
    Installed}
    IsResourcePackage : False
    IsBundle : False
    IsDevelopmentMode : False
    NonRemovable : False
    IsPartiallyStaged : False
    SignatureKind : Store
    Status : Ok

    Name : Microsoft.VCLibs.140.00
    Publisher : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
    Architecture : X86
    ResourceId :
    Version : 14.0.30704.0
    PackageFullName : Microsoft.VCLibs.140.00_14.0.30704.0_x86__8wekyb3d8bbwe
    InstallLocation : C:\Program Files\WindowsApps\Microsoft.VCLibs.140.00_14.0.30704.0_x86__8wekyb3d8bbwe
    IsFramework : True
    PackageFamilyName : Microsoft.VCLibs.140.00_8wekyb3d8bbwe
    PublisherId : 8wekyb3d8bbwe
    PackageUserInformation : {S-1-5-18 [S-1-5-18]: Staged}
    IsResourcePackage : False
    IsBundle : False
    IsDevelopmentMode : False
    NonRemovable : False
    IsPartiallyStaged : False
    SignatureKind : Store
    Status : Ok

    Name : Microsoft.HEVCVideoExtension
    Publisher : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
    Architecture : X64
    ResourceId :
    Version : 2.0.60091.0
    PackageFullName : Microsoft.HEVCVideoExtension_2.0.60091.0_x64__8wekyb3d8bbwe
    InstallLocation : C:\Program Files\WindowsApps\Microsoft.HEVCVideoExtension_2.0.60091.0_x64__8wekyb3d8bbwe
    IsFramework : False
    PackageFamilyName : Microsoft.HEVCVideoExtension_8wekyb3d8bbwe
    PublisherId : 8wekyb3d8bbwe
    PackageUserInformation : {S-1-5-18 [S-1-5-18]: Staged}
    IsResourcePackage : False
    IsBundle : False
    IsDevelopmentMode : False
    NonRemovable : False
    IsPartiallyStaged : False
    SignatureKind : Store
    Status : Ok

    Name : Microsoft.VCLibs.140.00
    Publisher : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
    Architecture : X64
    ResourceId :
    Version : 14.0.30704.0
    PackageFullName : Microsoft.VCLibs.140.00_14.0.30704.0_x64__8wekyb3d8bbwe
    InstallLocation : C:\Program Files\WindowsApps\Microsoft.VCLibs.140.00_14.0.30704.0_x64__8wekyb3d8bbwe
    IsFramework : True
    PackageFamilyName : Microsoft.VCLibs.140.00_8wekyb3d8bbwe
    PublisherId : 8wekyb3d8bbwe
    PackageUserInformation : {S-1-5-18 [S-1-5-18]: Staged}
    IsResourcePackage : False
    IsBundle : False
    IsDevelopmentMode : False
    NonRemovable : False
    IsPartiallyStaged : False
    SignatureKind : Store
    Status : Ok

    Name : Microsoft.WebpImageExtension
    Publisher : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
    Architecture : X64
    ResourceId :
    Version : 1.0.52351.0
    PackageFullName : Microsoft.WebpImageExtension_1.0.52351.0_x64__8wekyb3d8bbwe
    InstallLocation : C:\Program Files\WindowsApps\Microsoft.WebpImageExtension_1.0.52351.0_x64__8wekyb3d8bbwe
    IsFramework : False
    PackageFamilyName : Microsoft.WebpImageExtension_8wekyb3d8bbwe
    PublisherId : 8wekyb3d8bbwe
    PackageUserInformation : {S-1-5-21-974199620-1516164726-3069099516-1001 [Tanya]: Installed, S-1-5-18 [S-1-5-18]:
    Installed}
    IsResourcePackage : False
    IsBundle : False
    IsDevelopmentMode : False
    NonRemovable : False
    IsPartiallyStaged : False
    SignatureKind : Store
    Status : Ok

    Of couse, there is no Realtek in this list as I've always used the HDA driver. But since The Realtek HD Audio manager wont install on systems with ALC4080 or later audio there is no need to stick with HDA - provided I can avoid the need for using the store or microsoft accounts.
     
  16. bala1

    bala1 MDL Member

    May 2, 2015
    179
    150
    10
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  17. Feartamixg

    Feartamixg MDL Addicted

    May 15, 2016
    786
    631
    30
    #25219 Feartamixg, Apr 11, 2023
    Last edited: Apr 11, 2023
    Is it possible to add an option to unpin the Microsoft Store icon from the taskbar, so it isn't shown on the taskbar on fresh installs?
     
  18. shyamsundarsoni

    shyamsundarsoni MDL Novice

    Jan 15, 2012
    16
    13
    0
    Hello dear MSMG,
    at line #7844 in Toolkit 13.3, you have to delete client package of SSH rather than Server Package.
    Please have a look there & replace in next release.
    Note - I know, this doesn't affect the working of Toolkit, but taking an opportunity to inform you.
    Thanks and Regards,