Showing tag results for Richard Siddaway

Nov 4, 2013
Post comments count0
Post likes count0

The Admin’s First Steps: Capacity Planning Part 1

Doctor Scripto

Summary: Richard Siddaway talks about using Windows PowerShell to collect data for capacity planning.  Hey, Scripting Guy! I’ve just starting learning Windows PowerShell and I understand how to use it as a scripting language and shell. I’ve been told to start performing capacity planning for my servers and was wondering how I can u...

Scripting Guy!Windows PowerShellscripting techniques
Oct 27, 2013
Post comments count0
Post likes count0

PowerTip: Use CIM Cmdlets to Find WMI Classes

Doctor Scripto

Summary: Use the CIM cmdlets in Windows PowerShell to find associated WMI classes. How can I find the associated classes for a WMI object? Use the Windows PowerShell 3.0 CIM cmdlets.First get the WMI object for which you want find the associated classes:$group = Get-CimInstance -ClassName Win32_Group  -Filter "Name = 'Administra...

Windows PowerShellscripting techniquesPowerTip
Oct 27, 2013
Post comments count0
Post likes count0

The Admin’s First Steps: Local Group Membership

Doctor Scripto

Summary: Richard Siddaway talks about using Windows PowerShell to discover the membership of local groups.  Hey, Scripting Guy! I’ve just starting using Windows PowerShell to administer my systems, and I’ve been told I need to check the membership of local groups on all my servers. How can I do that? — AK  Hello AK, Hono...

Scripting Guy!Windows PowerShellscripting techniques
Oct 20, 2013
Post comments count0
Post likes count0

PowerTip: Find Members of Critical Groups with PowerShell

Doctor Scripto

Summary: Use Windows PowerShell to find the members of critical groups.  How can I use Windows PowerShell to track who is a member of my Domain Admins group?  Use Get-ADGroupMember, and add as many groups as you want to the list by using the           SamAccountName for the groups: "Schema Admins", "Domain Ad...

Windows PowerShellPowerTipActive Directory
Oct 20, 2013
Post comments count0
Post likes count0

The Admin’s First Steps: Empty Groups

Doctor Scripto

Summary: Richard Siddaway talks about using Windows PowerShell to discover Active Directory groups that have no members.  Hey, Scripting Guy! I’ve just starting using Windows PowerShell to administer my systems, and I’ve been told I need to audit our Active Directory to discover any empty groups. How can I do that? —TL  ...

Scripting Guy!Windows PowerShellscripting techniques