Vbscript

Cléora -  
 TOD -
Est-ce que c'est possible de lancer un fichier .exe en vbscript ?
Si oui comment ?

1 réponse

TOD
 
Set shell = CreateObject("WScript.Shell")
commande= "mon_exe.exe"
shell.Run commande, 5,true

par exemple...
0