TRAVAILLER AVEC DES ARGUMENTS
Voir : [http://technet.microsoft.com/en-us/library/ee156618.aspx|http://technet.microsoft.com/en-us/library/ee156618.aspx] Exemple : ligne de commande = test.vbs /Server:rrrrrrr /timeout:124412 /// __Méthode 1__ Set colNamedArguments = WScript.Arguments.Named strServer = colNamedArguments.Item("Server") strTimeout = colNamedArguments.Item("Timeout") Wscript.Echo "Server Name: " & strServer Wscript.Echo "Timeout (ms): " & strTimeout __Méthode 2__…