답변

0

예, 자바 스크립트를 통해 가능합니다.

var executeShell = function(){ 
    var oShell = new ActiveXObject("Shell.Application"); 
    var commandtoRun = "C:\\Windows\\notepad.exe"; 
    oShell.ShellExecute(commandtoRun,"","","open","1"); 
}; 


<a href="#execute" onclick="executeShell();return false;">Run an exe</a> 
:

귀하의 경우에는

Running .exe from Javascript

, 당신은 단지 코드의 그 라인 함수를 만든 다음 하이퍼 링크를 만들 필요가 : 여기에 작동하는 솔루션 예입니다

관련 문제