Windows

Topics for windows sysadmins are found here.
Powershell scripts are shared to empahsize the importance of automation.

Most Recent

Article Image

An Object Oriented script to automate the tasks of Resetting Passwords, Enabling, and Disabling accounts in Active Directory. Prompts user to select which of the three action to perform. The script also allows parameters to be given, which will bypass the options and go perform the given actions. The Cmdlets used to perform these actions are Enable-ADAccount, Set-ADAccountPassword, and Disable-ADAccount.

Article Image

Creating users in Active Directory is a very common task, but can be tedious to do manually. This led me to create this Object Oriented script which also supports parameters. This same object will be used in my other AD posts to allow you to add them together easily into one script. Main Cmdlet used will be New-ADUser.