Start Menu isn't opening on Windows Server 2016 Standard.

Sourav2044 65 Reputation points
2025-03-11T04:49:26.06+00:00

start menu-not working

I am getting the below error while trying to open Start Menu.And its happening for all the users, whether it be old or newly logged ones.

I have noticed this as well that the issue doesn't occur when I try to login using a local credential of the server but happens when someone uses ___domain credentials to login to the server . The server is ___domain joined .

Also, this issue have never happened before. The users started facing this issue since last Friday , that is on 7th Mar'25.

Windows Server 2016
Windows Server 2016
A Microsoft server operating system that supports enterprise-level management updated to data storage.
2,669 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Anonymous
    2025-03-12T07:01:34.05+00:00

    Hi Sourav,

    Thanks for your post. We suggest that you follow these steps and check if the issue persists:

    Method 1: Run the Start menu troubleshooter. After you've completed the troubleshooter, restart your device.

    Method 2: Use the Powershell command.

    1. Press Ctrl + Shift +Esc to open Task Manager.
    2. Click on File, and then choose Run New Task from the drop-down menu.
    3. Type powershell and click OK
    4. Right-click on PowerShell and select Run as administrator.
    5. Copy and paste the following command into the PowerShell prompt, then press Enter: Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
    6. Reboot your system.

    Method 3: If you are running a 3rd-party anti-virus software, then try to uninstall and reinstall it.

    Best Regards,

    Ian Xue


    If the Answer is helpful, please click "Accept Answer" and upvote it.


  2. Tyree, Drew Elliott 0 Reputation points
    2025-06-12T18:11:17.49+00:00

    This is actually the script:

    Get-AppxPackage -AllUsers | ForEach-Object { $packagePath = "$($_.InstallLocation)\AppXManifest.xml" if (Test-Path $packagePath) { Add-AppxPackage -DisableDevelopmentMode -Register $packagePath 
    
    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.