The code follows. It could have been written a lot tydier but i have only just started looking at VB scripts. First 8 lines is where I read in the password from a file this is so password can be inputted on a web page and will automatically change the admin passwords Via group policy in windows 2000. Let me know if it doesn't make sense..... Works though which is a good sign!!!!
Cheers
on error resume next
Const ForReading = 1, ForWriting = 2, ForAppending = 8
Dim fso, ts, strg
Set fso = CreateObject("Scripting.FileSystemObject"

Set ts = fs

penTextFile("\\SERVER1\passwords\sitename.txt", ForReading)
Dim password
counter = 0
do while not ts.AtEndOfStream
counter = counter+1
password = ts.readline
loop
password = Replace(password, """", ""

ts.close
Dim objNet
Set objNet = Createobject("WScript.Network"

Dim AdminName
Dim GuestName
AdminName = "uk01admin"
GuestName = "uk01guest"
Dim computer
computer = objNet.ComputerName
If InStr(1, computer, "wlap" ,VBTextcompare) > 0 Then
Dim User1
Dim User2
Set User1 = GetObject ("WinNT://" & computer & "/"& AdminName &"",user)
Call User1.SetPassword(password)
Set User2 = GetObject ("WinNT://" & computer & "/"& GuestName &"",user)
Call User2.SetPassword(password)
end if
If InStr(1, computer, "wwks" ,VBTextcompare) > 0 Then
Dim User3
Dim User4
Set User3 = GetObject ("WinNT://" & computer & "/"& AdminName &"",user)
Call User3.SetPassword(password)
Set User4 = GetObject ("WinNT://" & computer & "/"& GuestName &"",user)
Call User4.SetPassword(password)
end if
Set objNet = Nothing