How should you configure Service1?

Your network contains an Active Directory domain named contoso.com. The domain contains a server
named Server1. Server1 runs Windows Server 2012.
You create a group Managed Service Account named gservice1.
You need to configure a service named Service1 to run as the gservice1 account.
How should you configure Service1?

Your network contains an Active Directory domain named contoso.com. The domain contains a server
named Server1. Server1 runs Windows Server 2012.
You create a group Managed Service Account named gservice1.
You need to configure a service named Service1 to run as the gservice1 account.
How should you configure Service1?

A.
From a command prompt, run sc.exe and specify the config parameter.

B.
From a command prompt, run sc.exe and specify the sdset parameter.

C.
From the Services console, configure the General settings.

D.
From Windows PowerShell, run Set-Service and specify the -PassThrough parameter.

Explanation:
To specify a binary path for the NEWSERVICE service, type:
sc config NewService binpath= “ntsd -d c:\\windows\\system32\\NewServ.exe”
Sc config
https://technet.microsoft.com/en-us/library/cc990290.aspx
http://technet.microsoft.com/en-us/library/cc738230(v=ws.10).aspx



Leave a Reply 1

Your email address will not be published. Required fields are marked *


Will

Will

To get help on the “sc config,” Start Command Prompt and Type:
sc config

Here’s the output:

DESCRIPTION:
Modifies a service entry in the registry and Service Database.
USAGE:
sc config [service name] …

OPTIONS:
NOTE: The option name includes the equal sign.
A space is required between the equal sign and the value.
type=
start=
error=
binPath=
group=
tag=
depend=
obj=
DisplayName=
password=

Correct command line answer:
sc config Service1 obj= “.\gservice1″ password=””

Great write up on using sc config here:
http://stackoverflow.com/questions/308298/how-to-set-windows-service-username-and-password-through-commandline

I would probably just go to Services.msc, right click the gservice1 and click Properties, then change the logon in the logon tab before resorting to the command line for this task.