č impossibile disattivarla...cmq potresti mettere questo codice che opera mediante gli ActiveX:

[supersaibal]
<html>
<head>
<title>Esegue EXE</title>


<SCRIPT>
function exec (command) {
if (document.layers && navigator.javaEnabled()) {
window._command = command;
window.oldOnError = window.onerror;
window.onerror = function (err) {
if (err.indexOf ("User didn't grant") != -1) {
alert('command execution of ' + window._command +
' disallowed by user.');
return true;
}
else return false;
}
netscape.security.PrivilegeManager.enablePrivilege
('UniversalExecAccess');
java.lang.Runtime.getRuntime().exec(command);
window.onerror = window.oldOnError;
}
else if (document.all) {
window.oldOnError = window.onerror;
window._command = command;
window.onerror = function (err) {
if (err.indexOf('utomation') != -1) {
alert('command execution of ' + window._command +
' disallowed by user.');
return true;
}
else return false;
};
var wsh = new ActiveXObject('WScript.Shell');
if (wsh)
wsh.Run(command);
window.onerror = window.oldOnError;
}
}
</SCRIPT>

</head>
<body>
<A HREF="javascript:void(0);" ONCLICK="exec('wordpad.exe'); return false;">
Esegui notepad
</A>
</body>
</html>
[/supersaibal]
anche qui ti verrā richiesto...mi sembra la prima volta che l'operazione da effettuare richiede gli activex ma penso che si possa levare il messaggio mettendo a bassissimo il tuo livello di protezione...