Windows Server 2019 problem with menu start and blank icons

Adam Grzywiński 6 Reputation points
2020-09-27T08:59:32.257+00:00

Hello,

I have a problem with menu start and blank shortcuts in desktop in Windows Server 2019.

In administrator account everything works fine, but when I log in to another user then the start menu does not work and the icons on the desktop are blank. It is impossible to run any shortcut and create a new folder, etc.
User can open explorer and manually opens files from disks.

In event manager i saw an EventID 10010 - The server did not register with DCOM within the required timeout.

I'm trying:

  1. sfc /scannow
  2. DISM commands
  3. Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”} --
  4. Deleting SharedAccess keys in HKLM
  5. Creating new user with Administrator rights
  6. Windows Server full updated

Nothing helped.

If anyone has any suggestions it would be appreciated.

Windows Server 2019
Windows Server 2019
A Microsoft server operating system that supports enterprise-level management updated to data storage.
3,456 questions
Windows Server
Windows Server
A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.
12,119 questions
0 comments No comments
{count} vote

2 answers

Sort by: Most helpful
  1. Carl Fan 241 Reputation points
    2020-09-28T08:40:46.333+00:00

    Hi, You mean that only the built-in administrator user is normal, and even the newly created administrator account, desktop icon is not normal, right? Have you tried to delete Tile cache and check the result. Open below locations and confirm that if icon of applications are correctly displays: %ProgramData%\Microsoft\Windows\Start Menu\Programs %AppData%\Microsoft\Windows\Start Menu\Programs

    Please check below:

    1. HKEY_CLASSES_ROOT\lnkfile\shellex\IconHandler, make sure it has subentry as below: Name: (Default) Type: REG_SZ Data: {00021401-0000-0000-c000-000000000046}
    2. Stop explorer.exe via Task Manager.
    3. Deleted iconcache database:
      cd %userprofile%\\appdata\\local
      attrib -h IconCache.db
      del IconCache.db
      

    Also I saw you found the EventID 10010 in Event Viewer. It refers to DCOM permission. Have you seen the APPID or CLSID? Try to add the DCOM permission in Registry. Some steps below to add the permission. https://social.technet.microsoft.com/Forums/windowsserver/en-US/4763f80d-d113-4ddc-8578-01bbf4152e31/event-id-10016-dcom-error-source-microsoftwindowsdistributedcom-level-error?forum=winserverDS

    Hope this helps and please help to accept as Answer if the response is useful. Best Regards, Carl

    2 people found this answer helpful.

  2. Adam Grzywiński 6 Reputation points
    2020-09-28T08:52:23.447+00:00

    Thanks for your feedback.

    Problem was resolved yesterday.
    The problem was incorrect permissions on the Root key in the registry.
    After changes, everything works fine.