html code that executes wsh code through javascript

295 Views Asked by At

I'm stuck on this code...I'm trying to get the html page to, when you click the link, call the bms function, which should open internet explorer, go to google, and fill the search textbox with the word "test". This isn't exactly the website or word I want to use, but I needed to change it since the actual website/words are sensitive information. I want to use this through IE since our processes go through this browswer, specific with also using the -nomerge function. My code is below. Thanks for the help!

<html>
<head>    
<script>
var WshShell = new ActiveXObject("WScript.Shell");
function BMS()
{
WshShell.Run("iexplore.exe -nomerge http://google.com");
WScript.Sleep (5000);
WshShell.SendKeys ("test");
WScript.Quit();
}
</script>
</head>
<a href="#" onclick="javascript:BMS();">BMS</a>
<br /><br />
<a href="#" onclick="javascript:DAY();">DAY</a>
</html>​
1

There are 1 best solutions below

1
On

Dont be thrown off by jade; it's just quicker. Just note I'm placing scripts just before the closing body tag.

html
  head
    title foo
  body // body tag added
    p notice that i've not declared script yet. Preference/good practice.
    a#bsdTrigger(href='#') foo    
    a#ssddTrigger(href='#') bar
    //- scripte here

The Important-ish part: here's a pen

 (function() {
    // now the variable will not pollute your global ns
    var WshShell = {}; //ignore the OR only because there is no Active thing

    WshShell.log = function() { // fake behavior for testing
        console.log(arguments);
    } 

    var bsd = function BSD() {
        WshShell.log("foo");
        window.alert('foo!');
        return false;
    }

    document.getElementById("bsdTrigger").addEventListener('click', bsd);
})();

I hope this helps... It's very generic and contrived, but you'd employ the exact same methods in doing what you're trying to do.