Unable To Set Application Identity Service to Start Automatically
Asked Answered
T

3

6

On Windows 10 Enterprise laptops I found the AppIDSvc was stopped and its Startup Type was set to Manual (Trigger start). When I attempted to change the Startup Type to Automatic via the GUI, it produced the error "Access is denied" even though services.msc from run from an elevated cmd prompt.

The only way to work around this was to edit the registry and changing Start=2 at HKLM\SYSTEM\CurrentControlSet\Services\AppIDSvc.

I was able to start the service manually. Also I have modified the registry permission to "Full Control". I tried to reinstall Windows from ISO but the problem persists. Unfortunately Microsoft doesn't reply to this problem clearly on MSDN and Support Forum.

Themselves answered 15/5, 2016 at 13:8 Comment(0)
T
5

Microsoft docs say: Starting with Windows 10, the Application Identity service is now a protected process. Because of this, you can no longer manually set the service Startup type to Automatic. They provide a way to start with GPO, although I don't have such setting as they are referring to. https://technet.microsoft.com/en-us/itpro/windows/keep-secure/configure-the-application-identity-service

Threat answered 9/9, 2016 at 2:26 Comment(0)
P
0

Try running in an elevated powershell:

sc.exe config appidsvc start= auto

Plainclothesman answered 11/12, 2023 at 21:54 Comment(1)
Valid code, but won't work due to AppIDSvc being protected process.Mycorrhiza
E
0

You can using powershell to setup AppID Service

Set-Service -Name AppID -Startup Automatic

After reboot system, AppIDSvc will start automatic.

If you want to stop AppIdSvc, you can execute

Set-Service -Name AppID -Startup Manual

After reboot system, AppIDSvc will stopped.

You can use

sc config appidsvc start=auto

to config AppIdSvc start after reboot. But you can't use

sc config appidsvc start=disabled

to stop AppIdSvc.

Encephaloma answered 27/2 at 4:28 Comment(2)
Valid code, but won't work due to AppIDSvc being protected process.Mycorrhiza
It's worked in my environment (No AD)Encephaloma

© 2022 - 2024 — McMap. All rights reserved.