Categories
Archive
![]() Blogroll
|
Posted in Windows Powershell, Windows Server | 4 Comments | 1,626 views | 22/08/2009 10:28
Update: You can assign $false to confirm parameter: Remove-ADUser "User1" -Confirm:$False Thanks to Shay Levi.
Posted in Windows Powershell | No Comment | 1,259 views | 18/08/2009 12:55
I created this script to create active directory user with Powershell.
You can find included functions with search.
Posted in Windows Powershell, Windows Server | No Comment | 942 views | 18/08/2009 11:53
This is my simple Powershell script to create organizational units with Powershell.
This script creates an organizational unit under another one using some arguments.
Posted in Exchange Server | No Comment | 638 views | 18/08/2009 10:38
Finally, we can test Exchange Server 2010 RC. Now, Exchange Server 2010 is fully compatible with Windows Server 2008 R2 RC. http://www.microsoft.com/exchange/2010/en/us/try-it.aspx
Edit: Download link is now available on Microsoft Download Center.
Posted in Windows Powershell, Windows Server | No Comment | 1,009 views | 17/08/2009 10:59
Today, I created a Powershell script to check a service status and if it is stopped, that starts it.
Then add this to Cronjob and set it to run every 5 minutes. MEMTAS is a service name of Mail Enable.
Posted in Windows Powershell, Windows Server | No Comment | 869 views | 16/08/2009 20:28
This is my custom Powershell script to check OU in Active Directory.
As you see, it is too easy to check an Active Directory OU with Powershell.
Posted in Windows Powershell, Windows Server | 1 Comment | 727 views | 16/08/2009 20:16
I needed to check an user from Active Directory with Powershell so I wrote this.
Usage Sample: $Status = (Check-ADUser -UserID ysfozy).Status This script can search user from Active Directory and show you results. |