Showing posts with label Quest Active Directory CMDLET. Show all posts
Showing posts with label Quest Active Directory CMDLET. Show all posts

Thursday, October 3, 2013

System Center 2012 Configuration Manager Folder Creation Automation

I have created a script that will automate folder creation in SCCM 2012.  It is a simple script with no parameters.  You just run the script and follow the instructions.  If you want to bulk folder create the text file must be in the format where the folder names is per line.

Example.

folder name 1
folder name 2
folder name 3
folder name 4
.....

Here is a walk through.

Get Help:

Get-Help.
Single Folder Creation:

Single folder creation. 
Bulk Folder Creation:

Bulk folder creation. 
Click the download link to give it a try.

CM2012 Node Folder Creation v2.0

Monday, August 27, 2012

Find AD Stale Computers

Active Directory Stale Computer Report

I have created a nice PowerShell script to find your stale / outdated objects in Active Directory.  With being a SCCM Administrator it is crucial you have a healthy AD environment.  

Requirements:

Quest Active Directory CMDLET

Usage: 
.\AD_StaleComputer_Cleanup.ps1 -DC "Domain Controller" -Old "PC Not logged in for X amount days" -Path "Path of the folder you want the report saved too"
Example:
.\AD_StaleComputer_Cleanup.ps1 -DC "DCServer01" -Old 90 -Path "C:\Path\of\Folder"


AD_StaleComputer_Cleanup.ps1 v1.0.0.1