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 the Services console, configure the General settings.

B.
From Windows PowerShell, run Set-Service and specify the -StartupType parameter.

C.
From a command prompt, run sc.exe and specify theconfig parameter.

D.
From a command prompt, run sc.exe and specify theprivs parameter.

Explanation:
A: General settings only allow you to stop, start and set type/paramaters B: Set-Service provides a way for you
to change the Description, StartupType, or DisplayName of a service
C: Modifies service configuration
D: Sets the response/action on service failure
http://windows.microsoft.com/en-us/windows-vista/using-system-configuration http://technet.microsoft.com/enus/library/ee176963.aspx http://technet.microsoft.com/en-us/library/cc990290(v=ws.10).aspx http://technet.
microsoft.com/en-us/library/cc738230(v=ws.10).aspx



Leave a Reply 6

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


Ex

Ex

Correct answer is C.

Sc config
– Specifies the service name returned by the getkeyname operation.
obj= { | }
Specifies a name of an account in which a service will run, or
specifies a name of the Windows driver object in which the driver will run. The default setting is LocalSystem.

More information : https://technet.microsoft.com/en-us/library/cc990290.aspx

Regarding A :
https://technet.microsoft.com/en-us/library/cc755249.aspx
To specify the user account that the service can use to log on, click the Log On tab.
It is not in the General tab.

Ex

Ex

Correct answer is C.

Sc config
ServiceName – Specifies the service name returned by the getkeyname operation.
obj= { AccountName | ObjectName}
Specifies a name of an account in which a service will run, or
specifies a name of the Windows driver object in which the driver will run. The default setting is LocalSystem.

sharma

sharma

thanks mate!!!! ex