You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
372 B
10 lines
372 B
<SCRIPT LANGUAGE="JavaScript" defer>
|
|
var parentwin = external.menuArguments;
|
|
var doc = parentwin.document;
|
|
var clicklink = external.menuArguments.event.srcElement;
|
|
var clickhref = clicklink.href;
|
|
|
|
var command = "bits_ie.exe /CREATEJOB "+clickhref;
|
|
var WshShell = new ActiveXObject("WScript.Shell");
|
|
WshShell.Run(command);
|
|
</SCRIPT>
|