windows - Issue with starting as network service -
i have app trying start network service..
this how it: sc create "app" binpath= "app path" obj= .\networkservice password= ""
but keep getting error - "the account name invalid or not exist, or password invalid account name specified."
any pointers on wrong...
the problem network service account must specified "nt authority\networkservice" , no password needed.
is, use command:
sc create "app" binpath= "app path" obj= "nt authority\networkservice"
Comments
Post a Comment