首页 / 办公指南 / 什么是vbs脚本?vbs脚本常用经典代码有哪些?
什么是vbs脚本?vbs脚本常用经典代码有哪些?
从事计算机编程的朋友们自然需要用到各种各样的脚本了,记住这些脚本语言,可以让我们快速的实现编程的目的,那么,大家在编程的过程中是不是也经常用到脚本语言呢?什么是vbs脚本语言?vbs脚本常用经典代码有哪些?如果各位朋友们想要获得更多关于vbs脚本的相关知识的话,就需要跟随着福昕知翼的小编一起来认真的研究下面的内容,相信大家在工作中也一定会用到的。
什么是vbs脚本
VBS是基于Visual Basic的脚本语言。VBS的全称是:Microsoft Visual Basic Script Edition。(微软公司可视化BASIC脚本版)。其语言类似Visual Basic(VB)。
vbs脚本常用经典代码
1、VBS获取系统安装路径
/*先定义这个变量是获取系统安装路径的,然后我们用“&strWinDir&”调用这个变量。*/
setWshShell = WScript.CreateObject("WScript.Shell")
strWinDir= WshShell.ExpandEnvironmentStrings("%WinDir%")
2、VBS获取C:/Program Files路径
msgboxCreateObject("WScript.Shell").ExpandEnvironmentStrings("%ProgramFiles%")
3、VBS获取C:/Program Files/Common Files路径
msgboxCreateObject("WScript.Shell").ExpandEnvironmentStrings("%CommonProgramFiles%")
4、给桌面添加网址快捷方式
setgangzi = WScript.CreateObject("WScript.Shell")
strDesktop= gangzi.SpecialFolders("Desktop")
setoShellLink = gangzi.CreateShortcut(strDesktop & "/InternetExplorer.lnk")
oShellLink.TargetPath= "http://www.fendou.info"
oShellLink.Description= "Internet Explorer"
oShellLink.IconLocation= "%ProgramFiles%/Internet Explorer/iexplore.exe, 0"
oShellLink.Save
5、给收藏夹添加网址
ConstADMINISTRATIVE_TOOLS = 6
SetobjShell = CreateObject("Shell.Application")
SetobjFolder = objShell.Namespace(ADMINISTRATIVE_TOOLS)
SetobjFolderItem = objFolder.Self
SetobjShell = WScript.CreateObject("WScript.Shell")
strDesktopFld= objFolderItem.Path
SetobjURLShortcut = objShell.CreateShortcut(strDesktopFld & "/奋斗Blog.url")
objURLShortcut.TargetPath= "http://www.fendou.info/"
objURLShortcut.Save
6、删除指定目录指定后缀文件
OnError Resume Next
Setfso = CreateObject("Scripting.FileSystemObject")
fso.DeleteFile"C:/*.vbs", True
Setfso = Nothing
7、VBS改主页
SetoShell = CreateObject("WScript.Shell")
oShell.RegWrite"HKEY_CURRENT_USER/Software/Microsoft/InternetExplorer/Main/Start Page","http://www.fendou.info"
8、VBS加启动项
SetoShell=CreateObject("Wscript.Shell")
oShell.RegWrite"HKLM/Software/Microsoft/Windows/CurrentVersion/Run/cmd","cmd.exe"
什么是vbs脚本语言?vbs脚本常用经典代码有哪些?对于这些问题,相信福昕知翼的小编已经在上文为各位朋友们进行了非常全面的解答,不知道大家都认真的记下这些vbs脚本常用经典代码了吗?这也是我们经常会用到的内容,总之,希望大家可以继续关注和喜欢我们分享的内容。
本文地址: https://www.docer365.com/zn-1827.html
版权声明:除非特别标注,否则均为本站原创文章,转载时请以链接形式注明文章出处.