VBScript - Configurer les WINS

VBScript - Configurer les WINS - VB/VBA/VBS - Programmation

Marsh Posté le 21-05-2008 à 13:22:51    

Bonjour,
 
Je travaille dans l'administration de serveurs et j'ai besoin de créer un script pour que tous mes postes aient les bons WINS.
J'ai le script qui va bien mais le souci : je ne parviens pas à paramétrer le 3eme wins !
 
Voici le code :
 

Code :
  1. ' This code configures two WINS servers
  2. ' ------ SCRIPT CONFIGURATION ------
  3. strComputer = "."
  4. strW1 = "10.0.0.1"
  5. strW2 = "10.0.0.2"
  6. ' --------- END CONFIGURATION ------
  7. Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2" )
  8. Set nics = objWMIService.ExecQuery _
  9. ("SELECT * FROM Win32_NetworkAdapterConfiguration WHERE IPEnabled = True" )
  10. For Each nic In nics
  11.   intSetWINS = nic.SetWINSServer ("10.8.230.137", "10.152.51.254" )
  12. Next


 
 
 
J'ai tenté ça, mais sans succès :
 

Code :
  1. ' This code configures two WINS servers
  2. ' ------ SCRIPT CONFIGURATION ------
  3. strComputer = "."
  4. strW1 = "10.0.0.1"
  5. strW2 = "10.0.0.2"
  6. strW3 = "10.0.0.3"
  7. ' --------- END CONFIGURATION ------
  8. Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2" )
  9. Set nics = objWMIService.ExecQuery _
  10. ("SELECT * FROM Win32_NetworkAdapterConfiguration WHERE IPEnabled = True" )
  11. For Each nic In nics
  12.   intSetWINS = nic.SetWINSServer ("10.8.230.137", "10.152.51.254", "10.152.55.254" )
  13. Next


 
 
Merci beaucoup par avance !  :jap:

Reply

Marsh Posté le 21-05-2008 à 13:22:51   

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed