Set WshShell = WScript.CreateObject("WScript.Shell") strDesktop = WshShell.SpecialFolders("Desktop") '特殊文件夹“桌面” rem 在桌面创建一个记事本快捷方式 set oShellLink = WshShell.CreateShortcut(strDesktop & "\蒙古网站.lnk") oShellLink.TargetPath = "C:\Program Files\Internet Explorer\iexplore.exe" '目标 oShellLink.Arguments = "http://www.mgl.cn/?desktop" '程序的参数 oShellLink.WindowStyle = 1 '参数1默认窗口激活,参数3最大化激活,参数7最小化 oShellLink.Hotkey = "" '快捷键 oShellLink.IconLocation = "C:\Program Files\Internet Explorer\iexplore.exe, 0" '图标 oShellLink.Description = "YYQQ每天为你推荐好听的免费音乐" '备注 oShellLink.WorkingDirectory = "C:\Program Files\Internet Explorer\" '起始位置 oShellLink.Save '创建保存快捷方式