Summary: Use this one-line Windows PowerShell command to display a blinking message.
Is there a one-line command that I could use to blink a message in the Windows PowerShell console to get the users attention?
Pipe a range of numbers to the Foreach-Object cmdlet (% is an alias), clear the screen in the Begin&...
Summary: Use Windows PowerShell to create a report for a Windows failover cluster.
Microsoft Scripting Guy, Ed Wilson, is here. Welcome back guest blogger, Rhys Campbell…
I’m involved in the administration of several Failover Clusters, and I wanted to be able to easily report on these and get an alert for any changes in status. ...
Summary: Use Active Directory PoweShell cmdlets to add a computer to a security group.
How can I use Windows PowerShell to add a computer to a security group?
Use the Add-ADGroupMember cmdlet, and remember to use the SAM account name on the computer:
To add a computer called “STATION01” to a security group ...
Summary: Tonight, our Admin friend learns to migrate group memberships.
Microsoft Scripting Guy, Ed Wilson, here. If you missed it, be sure to watch Sean’s video: Just Script It! Also to catch up with our story, read:
‘Twas the Night of Before Scripting: Part 1
‘Twas the Night of Before Scripting: Part 2
‘...
Summary: Use Windows PowerShell to get a list of group members in Active Directory.
How can I use Windows PowerShell to regularly show who is in an Active Directory group, for example, Domain Admins?
To show who is in the Domain Admins group in Active Directory, run the following command:
Get-ADGroupMember DomainAdmins
If you&rsquo...