win10的js文件-shell脚本-开启移动热点
作者:互联网
***===========第一步***
(function()
{var
wShell=WScript.CreateObject("WScript.Shell");
}
)();
解释说明
***===========第二步***
(function()
{var
wShell=WScript.CreateObject("WScript.Shell");
wShell.Exec("%windir%\\system32\\cmd.exe /c \"start ms-settings:network\"");
}
)();
解释说明
***===========第三步***
(function()
{var
wShell=WScript.CreateObject("WScript.Shell");
wShell.Exec("%windir%\\system32\\cmd.exe /c \"start ms-settings:network\"");
WScript.Sleep(3000);wShell.SendKeys("{TAB}{DOWN 6}{ENTER}{TAB} ");
WScript.Sleep(1000);wShell.SendKeys("{ }");
}
)();
解释说明
详细http://www.360doc.com/content/13/1010/05/11675837_320365472.shtml
***===========第四步***
保存为 .js文件 双击运行(管理员方式运行)
标签:function,shell,WScript,CreateObject,js,var,Shell,win10,wShell 来源: https://blog.csdn.net/weixin_48835367/article/details/112003221