Bonjour,
Je cherche à executer un script, au sein d'une page html, pour lancer un executable sur windows embedded CE 6. Le script ci-dessous marche trés bien sur internet explorer 8 mais il ne se passe rien sur winCE...
Savez-vous ce qui ne va pas?
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <script language="VBScript"> sub lancement() Set WshShell = CreateObject("WScript.Shell") WshShell.run "\Temp\executable.exe" end sub </script> <title>Document sans titre</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body> <input type="button" name="nom" value="MCP ROOT" onClick="lancement()"> </body> </html>
Merci
Partager