Powershell Error

Anonymous
2020-06-18T10:15:06+00:00

My PC is in Turkish Language btw, and this is the error I got, it's say 3 apps need to be clossed but how ? Apps are these I think

1.Microsoft.Windows.ShellExperienceHost

2.Microsoft.Windows.StartMenuExperienceH ost_10.0.19041.1_neutral_neutral_cw5n1h2txyewy. 

3.MicrosoftWindows.Client.CBS_120.2202.1

30.0_x64__cw5n1h2txyewy. 

How am I suppose to close windows client ?!?

I was doing these steps https://answers.microsoft.com/en-us/windows/forum/windows_10-start/start-menu-lagdelay/576bff03-91e6-4402-9a1f-d9213674466a?auth=1

CMD Errors:

Add-AppxPackage : Deployment failed with HRESULT: 0x80073D02, Paket, değiştirdiği kaynaklar şu anda kullanımda olduğund an yüklenemedi.                                                                                                         error 0x80073D02: Unable to install because the following apps need to be closed Microsoft.Windows.ShellExperienceHost_ 10.0.19041.1_neutral_neutral_cw5n1h2txyewy.                                                                             NOTE: For additional information, look for [ActivityId] c39f201f-4538-0001-f540-9fc33845d601 in the Event Log or use th e command line Get-AppPackageLog -ActivityID c39f201f-4538-0001-f540-9fc33845d601                                       At line:1 char:94                                                                                                       + ...  | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.I ...                                         +                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~                                                 + CategoryInfo          : NotSpecified: (C:\Windows\Syst...ppXManifest.xml:String) [Add-AppxPackage], Exception         + FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand                                                                                                                              Add-AppxPackage : Deployment failed with HRESULT: 0x80073D02, Paket, değiştirdiği kaynaklar şu anda kullanımda olduğund an yüklenemedi.                                                                                                         error 0x80073D02: Unable to install because the following apps need to be closed Microsoft.Windows.StartMenuExperienceH ost_10.0.19041.1_neutral_neutral_cw5n1h2txyewy.                                                                         NOTE: For additional information, look for [ActivityId] c39f201f-4538-0001-2f42-9fc33845d601 in the Event Log or use th e command line Get-AppPackageLog -ActivityID c39f201f-4538-0001-2f42-9fc33845d601                                       At line:1 char:94                                                                                                       + ...  | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.I ...                                         +                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~                                                 + CategoryInfo          : NotSpecified: (C:\Windows\Syst...ppXManifest.xml:String) [Add-AppxPackage], Exception         + FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand Add-AppxPackage : Deployment failed with HRESULT: 0x80073D02, Paket, değiştirdiği kaynaklar şu anda kullanımda olduğundan yüklenemedi.error 0x80073D02: Unable to install because the following apps need to be closed MicrosoftWindows.Client.CBS_120.2202.130.0_x64__cw5n1h2txyewy.NOTE: For additional information, look for [ActivityId] c39f201f-4538-0002-d23e-9fc33845d601 in the Event Log or use the command line Get-AppPackageLog -ActivityID c39f201f-4538-0002-d23e-9fc33845d601At line:1 char:94+ ...  | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.I ...+                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~+ CategoryInfo          : NotSpecified: (C:\Windows\Syst...ppXManifest.xml:String) [Add-AppxPackage], Exception+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand

Windows for business | Windows Server | User experience | PowerShell

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question. To protect privacy, user profiles for migrated questions are anonymized.

0 comments No comments
{count} votes
Accepted answer
  1. Anonymous
    2020-06-18T10:36:58+00:00

    Greetings,

    My name is Rhaine, I'm Independent Community Volunteer. I’m so glad assisting you today

    I am also using Windows 10. Let us work together to sort this out.

    Are you experiencing delayed with the start menu or delayed? I tried to run with same pc and I got the same prompt with the Powershell.

    If you are getting those errors with the Powershell command it is fine because there are apps running in the background.

    You can perform a cleanboot in your device.

    • This process will eliminate 3rd party application running in the background of your computer along with services that are not needed to run windows. If there's any conflicting 3rd party application that causes the issue on your computer, this process will stop it.
    1. Open the run box by pressing the Windows Key + R and type msconfig
    2. System Configuration Utility box will open and by default you are on general tab.
    3. On the General tab, click the selective startup and make sure that load system service and load startup items both have checked mark.
    4. Click on services tab
    5. Put a check mark on Hide All Microsoft Services > This is a very important part as if you miss to click on this, computer might not boot properly or permanently and will end up on clean installation.
    6. Once Hide all Microsoft Services have checked mark on it, click on Disable All
    7. Click on the Startup Tab and click open task manager. This will open another window which contains all your startup applications on the administrator account.
    8. Disable all application that you're not using. You can simply just click on them and select disable.
    9. Click OK , Apply and close the configuration utility
    10. Restart your pc.

    Once done restarting your pc go to powershell.

    1. Press Windows Key + R
    2. Type powershell right click and run it as administrator
    3. Copy and paste this command

    Get-AppXPackage -AllUsers |Where-Object {$_.InstallLocation -like "*SystemApps*"} | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}

    1. Wait until it finishes.
    2. Once done your start menu should not be delayed anymore.

    I hope that the information above helps. Have a nice day ahead and be safe.

    Please let me know how it goes.

    Warm Regards,

    Rhaine C.

    10 people found this answer helpful.
    0 comments No comments

5 additional answers

Sort by: Most helpful
  1. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more

  2. Anonymous
    2020-06-18T11:01:23+00:00

    Thank you, I'll try it now

    0 comments No comments
  3. Anonymous
    2020-06-18T11:21:17+00:00

    Greetings,

    I appreciate your swift response, Please let me know how it goes if your start menu is working now . If you have any questions please let me know I'll be more than happy to help.

    Have a wonderful day ahead , stay safe.

    With Warm Regards,

    Rhaine C.

    0 comments No comments
  4. Anonymous
    2020-06-18T11:32:07+00:00

    It didn't work :( but 1 error is gone now.

    3 people found this answer helpful.
    0 comments No comments