文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>2003策略移动用户收藏夹VBS脚本

2003策略移动用户收藏夹VBS脚本

时间:2010-04-20  来源:edgeman03

' *****************************************************************************
' TEST SCRIPT - movefavorite.vbs
' *****************************************************************************
'  作用: 修改并移动用户收藏夹路径
'  作者: brinkman
'  日期: 11:21 2010-04-16
'  Copyright (c) SunWill
' *****************************************************************************
Option Explicit '取得当前用户名称
Dim username
username=CreateObject("Wscript.Shell").ExpandEnvironmentStrings("%username%")
'定义收藏夹根位置
Dim sPath
sPath="D:\SunWill\"&username&"\Favorites"
'修改注册表中收藏夹位置
Dim OperationRegistry
Set OperationRegistry=WScript.CreateObject("WScript.Shell")
OperationRegistry.RegWrite "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders\Favorites",sPath,"REG_EXPAND_SZ"
'移动收藏夹位置
On Error Resume Next
Const OverwriteExisting = True
Dim WshSysEnv,UserProfilePath,objFSO set WshSysEnv = CreateObject("Wscript.Shell").Environment("PROCESS")
UserProfilePath = WshSysEnv("userprofile")
set objFSO=CreateObject("Scripting.FileSystemObject") objFSO.CreateFolder sPath
objFSO.CopyFile UserProfilePath & "\Favorites\*" , sPath&"\", OverwriteExisting
objFSO.CopyFolder UserProfilePath & "\Favorites\*" , sPath&"\", OverwriteExisting
 
相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载