您的位置:首页 > 理论基础 > 计算机网络

javascript 调用cmd命令建立网络共享连接

2012-01-04 23:35 183 查看
建立目的电脑(Linux OS)的共享连接,目的电脑IP:192.168.17.211 共享文件夹prison 用户名 root 密码 88888888

<html>

<head>

<title>共享连接</title>

<meta http-equiv="pragma" content="no-cache">

<meta http-equiv="cache-control" content="no-cache">

<meta http-equiv="expires" content="0">

<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">

<meta http-equiv="description" content="This is my page">

<script type="text/javascript">

function addNet(){

var o = new ActiveXObject("WScript.Shell");

o.run("net use \\\\192.168.17.211\\prison 88888888 /USER:root",0);

}

function deleteNet(){

var o = new ActiveXObject("WScript.Shell");

o.run("net use \\\\192.168.17.211\\prison /del",0);

}

</script>

</head>

<body>

<input type="button" value="添加" onclick="addNet()">

<input type="button" value="删除" onclick="deleteNet()">

</body>

</html>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐