Re: Local Goup membership

Tech Tip: Click here to run a free scan for Windows Errors and optimize PC performance





"Jeffery Hicks" wrote:

Carlos wrote:
Hi Mr. Jeffrey Hicks,
I also need this script, I tried it and it works.
I have use a script from the repository to connect the AD and retrieve all
the computer accounts. Then, I used your script below to connect to the
individual computer and detect who are the members of administrators group in
each computer. However, If the computer that I wish to connect is updated
with SP2 and Firewall is On and Exception File and Print Sharing is OFF, I
can not connect to that machine any more.

My problem now, is how I can turn on the Exception File and Print Sharing to
a remote PC? Or do you have any suggestion on how I can connect to that
computer?

Thanks

"Jeffery Hicks" wrote:

akhdar wrote:
Hi friends,
can any one help me to create a scripte to list local administrators group
on domain computers.
Thanks
This is very easy using ADSI and the WinNT provider:

strComputer="someserver"
Set objLocalAdmins=GetObject("WinNT://" & strComputer &
"/Administrators,Group")

Set memberList=objLocalAdmins.Members
For Each member In memberList
WScript.Echo member.name
Next

--
Jeffery Hicks
SAPIEN Technologies - Scripting, Simplified.

blog: http://blog.SAPIEN.com
Community: http://www.scriptinganswers.com
Training: http://www.ScriptingTraining.com
Books: http://www.SAPIENPress.com
Editor: http://www.primalscript.com
Tools: http://www.scriptingoutpost.com

"Those who forget to script it are doomed to repeat it."



You can do most of that via Group policy. Otherwise you have to
manually configure the desktop because you can't get to it remotely to
make the changes!

--
Jeffery Hicks
SAPIEN Technologies - Scripting, Simplified.

blog: http://blog.SAPIEN.com
Community: http://www.scriptinganswers.com
Training: http://www.ScriptingTraining.com
Books: http://www.SAPIENPress.com
Editor: http://www.primalscript.com
Tools: http://www.scriptingoutpost.com

"Those who forget to script it are doomed to repeat it."


.



Relevant Pages

  • Re: Giving only read access to all of AD to a domain admin
    ... enforced with Group Policy or script. ... up with this group in the Administrators group. ... Restricted Groups enforced with Group Policy ... members but aren't listed in the policy are removed). ...
    (microsoft.public.windows.server.active_directory)
  • Re: Local Goup membership
    ... I also need this script, I tried it and it works. ... individual computer and detect who are the members of administrators group in ... is how I can turn on the Exception File and Print Sharing to ... "Jeffery Hicks" wrote: ...
    (microsoft.public.windowsxp.wmi)
  • Re: Local Goup membership
    ... I have use a script from the repository to connect the AD and retrieve all the computer accounts. ... I used your script below to connect to the individual computer and detect who are the members of administrators group in each computer. ... "Jeffery Hicks" wrote: ... Editor: http://www.primalscript.com ...
    (microsoft.public.windowsxp.wmi)
  • Re: Local Goup membership
    ... I also need this script, I tried it and it works. ... individual computer and detect who are the members of administrators group in ... is how I can turn on the Exception File and Print Sharing to ... "Jeffery Hicks" wrote: ...
    (microsoft.public.windowsxp.wmi)
  • Re: List Members of a Group (with user input)
    ... Wscript.Echo "No members" ... Dim objRootDSE, objTrans, strNetBIOSDomain, strGroup ... I would like one that does not require editing of the script each time. ... Dim UserCount, gga, CNgga ...
    (microsoft.public.scripting.vbscript)