Creative, Informative and Entertaining Stuff for everyone

Sunday September 5th 2010

Categories

Archives

Calender

September 2010
S M T W T F S
« Jul    
 1234
567891011
12131415161718
19202122232425
2627282930  

How to execute local system command by using javascript

Bookmark and Share

<script type=”text/javascript”>
MyObject = new ActiveXObject( “WScript.Shell”)
MyObject.Run(“cmd”) ;
</script>

In second line instead of “cmd” you can execute any command of your system , it could me “notepad.exe” or any other command .

Leave a Reply