Vbscript

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

1 réponse

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

    par exemple...
    0