Share via

How to Disable Enterprise App Management Server service in windows server 2022 ?

Mohamed khairy 171 Reputation points
2026-02-25T03:38:18.7633333+00:00

Hi Gents,

Please advise how to disable Enterprise Service Management Services in Windows Server 2022. i have tried to disable it from the Service Snap-in, but the disable drop menu is deemed (Cannot change its status, as in the screenshot). Also, I tried to disable this from GPO. Trying to disable it from GPO only stops it but does not disable it. Any advice??

User's image

Windows for business | Windows Server | Directory services | Active Directory
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Marcin Policht 81,705 Reputation points MVP Volunteer Moderator
    2026-02-25T04:32:49.83+00:00

    Try the following while running with SYSTEM privileges. First open an elevated Command Prompt and launch a SYSTEM shell:

    psexec -i -s cmd.exe
    

    If PsExec is not installed, download it from Microsoft Sysinternals and run the command from its directory. In the SYSTEM command window, set the service startup type to disabled:

    reg add "HKLM\SYSTEM\CurrentControlSet\Services\EntAppSvc" /v Start /t REG_DWORD /d 4 /f
    

    Confirm the change:

    reg query "HKLM\SYSTEM\CurrentControlSet\Services\EntAppSvc" /v Start
    

    Ensure the value is 0x4.

    Then reboot the OS


    If the above response helps answer your question, remember to "Accept Answer" so that others in the community facing similar issues can easily find the solution. Your contribution is highly appreciated.

    hth

    Marcin


Your answer

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