vote up 1 vote down star

I am trying to create a powershell script to automate user creation which is working great using ADSI. However I need to set the following properties and I am not sure how (or if ADSI can even do this):

  • Log on as a service
  • Allow logon locally

Any ideas how to do this?

flag

2 Answers

vote up 1 vote down check

The solution to working with GPO's in PowerShell is via a COM+ object called GPMgmt.GPM which is part of the Group Policy Management Console feature. The best article for information I could find on this is: http://technet.microsoft.com/en-us/magazine/cc162355.aspx

I have yet to be able to figure out how to set those specific values though.

link|flag
vote up 0 vote down

That is group policy settings.

Log on as a service: Gives the account permission to log onto that spesific machine, and execute a service

Log on locally: Allows you to log on locally

Are you running this under a specified credential?

You can get to this screen by:

  1. Start/Run and type in mmc
  2. Add Remove snappin
  3. Select Group Policy
  4. Open Computer/Windows Settings/ Local Policies/ User Rights Assignment.

Screenshot

alt text Hope it helps, and you might want to run this past your network admin, if your not the network admin ;)

Cheers Rihan

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.