Yippppppeee, I have now got my script working.

I done the ting that no one likes doing, read up on the Microsoft Web site. lol

Here is my starter script that I can now muck around with.

Thanks for all your help.
code:
  
$username = lisa.battman

$adsDomain = GetObject("LDAP://OU=Testing,DC=qeh-tr,DC=sthames,DC=nhs,DC=uk")

$adsUser = $adsDomain.Create("user","cn="+$username)
$adsUser.Put("sAMAccountName", $username)
$adsUser.SetInfo


$adsUser.LastName = "Battman"
$adsUser.FirstName = "Lisa"
$adsUser.SetInfo
$adsUser.SetPassword "aa123456"
$adsUser.AccountDisabled = False
$adsUser.SetInfo

Richard Farthing