3

Is there any way to access and view the certificate store of the LocalService account?

I would like to add and delete certificates. (Using Windows Server 2008 R2)

I tried:

runas /user:"NT AUTHORITY\LocalService" mmc.exe

Also:

schtasks /create /sc once /st 09:36 /f /tr mmc.exe /tn taskname /ru LOCALSERVICE
schtasks /run /TN "taskname"

Without luck :(

tshepang
  • 12,111
  • 21
  • 91
  • 136
Cobaia
  • 1,503
  • 3
  • 22
  • 41

1 Answers1

4

Someone here suggested using PsExec for running commands with a service account.

Run psexec as administrator:

psexec -i -u "nt authority\local service" cmd.exe

In the new command window run:

certmgr.msc

I do not know if this will solve you problem, it is just a suggestion...

Community
  • 1
  • 1
molholm
  • 1,992
  • 3
  • 25
  • 29