Skal fra HTA Kører MSI og VBS filer.
Er ved at lave en installations menu i HTA og skal derfor kunne køre MSI og VBS filer fra HTA'en.Neden stående kode giver mig error: Object required: 'WScript'
<html>
<head>
<title>My HTML Application</title>
<script language="vbscript">
sub RunMSI
Currentdir="\\myDir"
FileDir="\Folder"
File="\fil.msi"
Set WshShell = WScript.CreateObject("WScript.Shell")
MyCmd = "msiexec.exe /i " & Currentdir & FileDir & File & " ALLUSERS=2 /norestart /qn"
Wshshell.run MyCmd,0,True
End Sub
</script>
<hta:application
applicationname="MyHTA"
>
</head>
<body>
<input id=Choose class="button" type="button" value=" > " name="run_button" onClick="RunMSI">
</body>
</html>
Et eksembel på hvordan man kører VBS og MSI filer vil blive påskønnet.