Showing results for Active Directory - Scripting Blog [archived]

Feb 7, 2015
0
0

Weekend Scripter: Use PowerShell to Delegate Administrator of RODCs

Doctor Scripto
Doctor Scripto

Summary: Microsoft PFE, Ian Farr, discusses using Windows PowerShell to delegate administrator of RODC. Microsoft Scripting Guy, Ed Wilson, is here. Today we have Honorary Scripting Guy and Microsoft PFE, Ian Farr, back for more words of wisdom... Welcome to the third post in a four part series about securing and managing read-only domain controlle...

Scripting Guy!Windows PowerShellguest blogger
Dec 9, 2014
0
0

Use PowerShell to Get BIOS Information on Remote Servers

Doctor Scripto
Doctor Scripto

Summary: Microsoft Scripting Guy, Ed Wilson, talks about using Windows PowerShell to retrieve BIOS information from remote servers.  Hey, Scripting Guy! I really hope you can help me. I need to get a list of basic BIOS information from our servers. All of the servers that I need are listed in a single organizational unit (OU) in Active Directo...

Scripting Guy!Windows PowerShellscripting techniques
Nov 28, 2014
0
0

PowerTip: Use PowerShell to Get List of FSMO Role Holders

Doctor Scripto
Doctor Scripto

Summary: Use Windows PowerShell to get a list of FSMO role holders in Active Directory.  I use NETDOM QUERY FSMO to list my domain controllers that hold the FSMO roles, but can I do it with Windows PowerShell?  As usual, there is more than one way to do most things in Windows PowerShell, but here are some syntax examples to meet your need...

Scripting Guy!Windows PowerShellguest blogger
Nov 28, 2014
0
0

Active Directory Week: Essential Steps for PowerShell when Upgrading

Doctor Scripto
Doctor Scripto

Summary: Learn three essential steps for Windows PowerShell when upgrading from Windows Server 2003. Microsoft Scripting Guy, Ed Wilson, is here. Today we have the final post in the series about Active Directory PowerShell by Ashley McGlone. Before you begin, you might enjoy reading these posts from the series: Over the years Microsoft has...

Scripting Guy!Windows PowerShellguest blogger
Nov 27, 2014
0
0

PowerTip: Use PowerShell to Work with Active Directory Date Fields

Doctor Scripto
Doctor Scripto

Summary: Use Windows PowerShell to work with Active Directory date fields.  How can I Use Windows PowerShell to work with date fields in Active Directory?  Try the following techniques: # Password last set within the last 30 days? $pwdLastSet = Get-ADUser Administrator -Properties pwdLastSet |      Select-Object -...

Scripting Guy!Windows PowerShellPowerTip