Wscript.Shell 对象详细介绍!!特好的东西第1/2页
作者 佚名
来源 ASP编程
浏览
发布时间 2013-07-09
给出。要得到 WshSpecialFolders 对象,请使用 WshShell.SpecialFolders 属性。 ProgID N/A 文件名 WSHom.Ocx CLSID IID 下表描述与 WshSpecialFolders 对象关联的属性。 属性 描述 Item 指定文件夹的完整路径(默认)。 Count 枚举项的数目。 length 枚举项的数目 (JScript) 。 WshSpecialFolders.Item Item 属性返回由 strFolderName 指定的文件夹的完整路径。它是默认属性。 语法 WshShell.SpecialFolders.Item("strFolderName") = strFolderPath WshShell.SpecialFolders("strFolderName") = strFolderPath 注释 若请求的文件夹 (strFolderName) 不可用,则 WshShell.SpecialFolders("strFolderName") 返回 NULL。例如,Windows 95 没有 AllUsersDesktop 文件夹,如果 strFolderName = AllUsersDesktop,则返回 NULL。 Windows 95 和 Windows NT 4.0 操作系统提供下列指定文件夹: AllUsersDesktop AllUsersStartMenu AllUsersPrograms AllUsersStartup Desktop Favorites Fonts MyDocuments NetHood PrintHood Programs Recent SendTo StartMenu Startup Templates 示例 '''' This fragment returns the full path for the Windows Desktop folder Set WshShell = Wscript.CreateObject("Wscript.Shell") StrMyDesktop = WshShell.SpecialFolders("Desktop") '''' List all special folders For Each strFolder In WshShell.SpecialFolders MsgBox strFolder Next 请参阅 WshShell.SpecialFolders 属性 WshShell.CreateShortcut CreateShortcut 方法创建 WshShortcut 对象并将其返回。如果快捷方式标题以 .url 结尾,就会创建 WshURLShortcut 对象。 语法 WshShell.CreateShortcut(strPathname) = objShortcut 示例 '''' This code fragment creates a shortcut '''' to the currently executing script Set WshShell = Wscript.CreateObject("Wscript.Shell") Set oShellLink = WshShell.CreateShortcut("Current Script.lnk") oShellLink.TargetPath = Wscript.ScriptFullName oShellLink.Save Set oUrlLink = WshShell.CreateShortcut("Microsoft Web Site.URL") oUrlLink.TargetPath = "http://www.microsoft.com" oUrlLink.Save 请参阅 WshShortcut 对象、WshUrlShortcut 对象 WshShortcut 对象 该对象未直接给出。要获得 WshShortcut 对象,请使用 WshShell.CreateShortcut 方法。 ProgID N/A 文件名 WSHom.Ocx CLSID F935DC28-1CF0-11d0-ADB9-00C04FD58A0B IID F935DC27-1CF0-11d0-ADB9-00C04FD58A0B 下表说明和 WshShortcut 对象有关的属性。 属性 说明 Arguments 快捷方式对象的参数。 Description 快捷方式对象的说明。 Hotkey 快捷方式对象的热键。 IconLocation 快捷方式对象的图标位置。 TargetPath 快捷方式对象的目标路径。 WindowStyle 快捷方式对象的窗口样式。 Wo***ngDirectory 快捷方式对象的工作目录。 下表说明与 WshShortcut 对象有关的方法。 方法 说明 Save 将快捷方式存储到指定的文件系统中。 WshShortcut.Arguments Arguments 属性提供快捷方式对象的参数。 语法 WshShortcut.Arguments = strArguments WshShortcut.Description Description 属性提供快捷方式对象的说明。 语法 WshShortcut.Description = strDescription WshShortcut.Hotkey HotKey 属性提供快捷方式对象的热键。热键是启动或切换程序的键盘快捷方式。 语法 WshShortcut.HotKey = strHotKey 注释 strHotKey 的BNF语法如下: Hotkey ::= modifier* keyname modifier ::= "ALT+" | "CTRL+" | "SHIFT+" | "EXT+" keyname ::= "A" .. "Z" | "0".. "9" | "Back" | "Tab" | "Clear" | "Return" | "Escape" | "Space" | "Prior" | ... 所有键的名称都可以在 WINUSER.H 中找到。热键不区分大小写。 热键只能激 |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于Wscript.Shell 对象详细介绍!!特好的东西第1/2页的所有评论