<html><head>
<title>Lancer le bloc-notes depuis une page Web</title>
<base target="_self"></head>
<body>
<SCRIPT LANGUAGE="vbscript">
sub button_go
dim wsh
set wsh = CreateObject("Wscript.Shell")
'7 = attendre que la commande rende la main
wsh.Run "notepad.exe",7,TRUE
end sub
</SCRIPT>
<input type=button name=button1 value="Bloc-notes" onclick=button_go>
</body></html>