Question : Have vbs script pull computer names from a file then run

I am running this script to change a value in registry remotely in a Vista Enterprise environment.

What i have posted here works, what I am trying to figure out how can i change line 3 to pull multiple computer names from a text file or csv (what ever is easier doesn't matter) so it will go and make the change one at a time instead of just changing one.

Any ideas of how it should move on if a computer isn't online would be great also.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
Const HKEY_LOCAL_MACHINE = &H80000002

strComputer = "COMPUTERNAME"


Set objRegistry = GetObject("winmgmts:\\" & _ 
    strComputer & "\root\default:StdRegProv")
 
strKeyPath = "SOFTWARE\Microsoft\Windows\CurrentVersion\policies\system"
strValueName = "ScForceOption"

strValue = 0

objRegistry.SetDWORDValue HKEY_LOCAL_MACHINE,strKeyPath,strValueName,strValue

If IsNull(strValue) Then
    Wscript.Echo "The registry key does not exist."
ElseIf strValue = 1 Then
    Wscript.Echo "Force Smart Card Logon is now enabled on " & strComputer
ElseIf strValue = 0 Then
    Wscript.Echo "Force Smart Card Logon is now disabled on " & strComputer
End If


rem Use DOS prompt with admin rights. Useage: cscript ***.vbs //nologo //S

Answer : Have vbs script pull computer names from a file then run

atikmdag.sys is what i get.
Check for latest Ati drivers from laptops website
Random Solutions  
 
programming4us programming4us