1 Star 0 Fork 0

红日初升/updateHosts

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
addToStartup.js 479 Bytes
一键复制 编辑 原始数据 按行查看 历史
function CreateShortcut(target_path)
{
wsh = new ActiveXObject('WScript.Shell');
link = wsh.CreateShortcut(wsh.SpecialFolders("Startup") + '\\updateHosts.lnk');
link.TargetPath = '"' + wsh.CurrentDirectory + '\\start.vbs"';
link.Arguments = '"' + wsh.CurrentDirectory + '\\start.vbs"';
link.WindowStyle = 7;
link.Description = 'updateHosts';
link.WorkingDirectory = wsh.CurrentDirectory;
link.Save();
}
function main()
{
CreateShortcut();
}
main();
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/rscs/updateHosts.git
git@gitee.com:rscs/updateHosts.git
rscs
updateHosts
updateHosts
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385