标题: [问题求助] [已解决]“求恢复链接文件夹的快捷方式”备份已由版主写好了,代码在15楼。 [打印本页]
作者: zhangop9 时间: 2011-9-7 21:26 标题: [已解决]“求恢复链接文件夹的快捷方式”备份已由版主写好了,代码在15楼。
本帖最后由 zhangop9 于 2011-9-9 23:01 编辑
“用VBS按需批量创建快捷方式”在网上找到的运行错误,求高手改一下方便系统重装时恢复快捷方式。- "F:\GreenTools\系统工具\CloseMonitor.scr'
- "#F:\GreenTools\TextTools\UltraEdit16\Uedit32.exe
- "F:\GreenTools\VirtualTools\VMware7\vmware.exe"
- "F:\GreenTools\Devtools\MyEclipse8\MyEclipse 8.x Latest\myeclipse.exe"
- "F:\GreenTools\网络工具\comunication\QQ2010\Bin\QQ.exe"
- "F:\GreenTools\网络工具\FlashXP3.6\flashfxp.exe"
- "F:\GreenTools\通讯\G3 eWalk\G3 eWalk.exe"
- "F:\GreenTools\Devtools\VC++6\Common\MSDev98\Bin\MSDEV.EXE"
- "===================================================
- 'Option Explicit
- Const ForReading = 1
- Const isCrerateShortcut=1
- "参数说明:1创建快捷方式;0删除快捷方式
- Set objFSO = CreateObject("Scripting.FileSystemObject")
- Set objTextFile = objFSO.OpenTextFile("添加常用应用程序到桌面图标.vbs", ForReading)
- Do Until objTextFile.AtEndOfStream
- Dim strNextLine
- Dim spIndex,program,path,pname,ShortcutName
- Dim WshShell
- set WshShell = WScript.CreateObject("WScript.Shell")
- "
- strNextLine = objTextFile.Readline
- strNextLine = Mid(strNextLine,2,Len(strNextLine))
- If(InStr(strNextLine,"=====")<>0) Then
- Exit Do
- End If
- spIndex=InStr(strNextLine,"#")
- If (spIndex=0) Then
- part=split(strNextLine,"\")
- program=strNextLine
- pname=part(UBound(part))
- path=Mid(strNextLine,1,InStr(strNextLine,pname)-1)
- ShortcutName=Mid(pname,1,InStr(pname,".")-1)
- "MsgBox ShortcutName
- "下面是创建或删除快捷方式
- strDesktop = WshShell.SpecialFolders("Desktop")
- If(isCrerateShortcut=1)Then "创建
- set oShellLink = WshShell.CreateShortcut(strDesktop & "\" & ShortcutName & ".lnk") "快捷方式的名字
- oShellLink.TargetPath = program "快捷方式里的“目标”
- oShellLink.WindowStyle = 1 "快捷方式里的“运行方式”:参数1默认窗口激活,参数3最大化激活,参数7最小化
- oShellLink.WorkingDirectory =path "快捷方式里的“起始位置”
- oShellLink.Description = "该快捷方式由VBS添加" "快捷方式里的“备注”
- oShellLink.Save
- ElseIf(isCrerateShortcut=0)Then "删除
- objFSO.DeleteFile strDesktop & "\" & ShortcutName & ".lnk"
- End If
- End If
- Loop
- objTextFile.Close
复制代码
作者: zhangop9 时间: 2011-9-8 00:21
求高手看一下!!!!
作者: broly 时间: 2011-9-8 00:38
- 'F:\GreenTools\系统工具\CloseMonitor.scr'
- '#F:\GreenTools\TextTools\UltraEdit16\Uedit32.exe
- 'F:\GreenTools\VirtualTools\VMware7\vmware.exe"
- 'F:\GreenTools\Devtools\MyEclipse8\MyEclipse 8.x Latest\myeclipse.exe"
- 'F:\GreenTools\网络工具\comunication\QQ2010\Bin\QQ.exe"
- 'F:\GreenTools\网络工具\FlashXP3.6\flashfxp.exe"
- 'F:\GreenTools\通讯\G3 eWalk\G3 eWalk.exe"
- 'F:\GreenTools\Devtools\VC++6\Common\MSDev98\Bin\MSDEV.EXE"
- '===================================================
- 'Option Explicit
- Const ForReading = 1
- Const isCrerateShortcut=1
- '参数说明:1创建快捷方式;0删除快捷方式
- Set objFSO = CreateObject("Scripting.FileSystemObject")
- Set objTextFile = objFSO.OpenTextFile("添加常用应用程序到桌面图标.vbs", ForReading)
- Do Until objTextFile.AtEndOfStream
- Dim strNextLine
- Dim spIndex,program,path,pname,ShortcutName
- Dim WshShell
- set WshShell = WScript.CreateObject("WScript.Shell")
- '
- strNextLine = objTextFile.Readline
- strNextLine = Mid(strNextLine,2,Len(strNextLine))
- If(InStr(strNextLine,"=====")<>0) Then
- Exit Do
- End If
- spIndex=InStr(strNextLine,"#")
- If (spIndex=0) Then
- part=split(strNextLine,"\")
- program=strNextLine
- pname=part(UBound(part))
- path=Mid(strNextLine,1,InStr(strNextLine,pname)-1)
- ShortcutName=Mid(pname,1,InStr(pname,".")-1)
- 'MsgBox ShortcutName
- '下面是创建或删除快捷方式
- strDesktop = WshShell.SpecialFolders("Desktop")
- If(isCrerateShortcut=1)Then '创建
- set oShellLink = WshShell.CreateShortcut(strDesktop & "\" & ShortcutName & ".lnk") '快捷方式的名字
- oShellLink.TargetPath = program '快捷方式里的“目标”
- oShellLink.WindowStyle = 1 '快捷方式里的“运行方式”:参数1默认窗口激活,参数3最大化激活,参数7最小化
- oShellLink.WorkingDirectory =path '快捷方式里的“起始位置”
- oShellLink.Description = "该快捷方式由VBS添加" '快捷方式里的“备注”
- oShellLink.Save
- ElseIf(isCrerateShortcut=0)Then'删除
- objFSO.DeleteFile strDesktop & "\" & ShortcutName & ".lnk"
- End If
- End If
- Loop
- objTextFile.Close
复制代码
作者: broly 时间: 2011-9-8 00:39
你要实现些什么样的功能啊?请详细说明
作者: zhangop9 时间: 2011-9-8 00:51
我的收藏文件夹下,链接文件夹中有很多目录,目录中有很多快捷方式,我想以文本的方式备份,下次系统重做系统后能恢复回来,不是简单的copy
作者: broly 时间: 2011-9-8 00:56
回复 5# zhangop9
以文本的形式备份?以后说明你的需求时最好把例子列举出来,帮助别人理解
作者: zhangop9 时间: 2011-9-8 01:24
F:\GreenTools\系统工具\CloseMonitor.scr
F:\GreenTools\TextTools\UltraEdit16\Uedit32.exe
F:\GreenTools\VirtualTools\VMware7\vmware.exe"
"F:\GreenTools\Devtools\MyEclipse8\MyEclipse 8.x Latest\myeclipse.exe"
"F:\GreenTools\网络工具\comunication\QQ2010\Bin\QQ.exe"
"F:\GreenTools\网络工具\FlashXP3.6\flashfxp.exe"
"F:\GreenTools\通讯\G3 eWalk\G3 eWalk.exe"
"F:\GreenTools\Devtools\VC++6\Common\MSDev98\Bin\MSDEV.EXE"
作者: broly 时间: 2011-9-8 07:57
楼主,我投降,我不得不承认自己智商不够高,看不懂你想要表达什么。
作者: zhangop9 时间: 2011-9-8 12:06
"%HOMEPATH%\Favorites\链接"
备份上面路径下的所有快捷方式,以文本方式,还原时以文本为根据还原
作者: broly 时间: 2011-9-8 17:17
回复 9# zhangop9
里面的快捷方式的后缀是什么?.url?全是网址的快捷方式?你好给给我举个例子吧
作者: zhangop9 时间: 2011-9-8 18:27
里面的快捷方式的后缀是.lnk,有子文件夹"每月工作"、“日常工作”等等
作者: broly 时间: 2011-9-9 00:39
- Dim wsh,wshSysEnv,objLink
- Dim objFSO,subFolders,subFolder,Folder,Files,File
- Dim strHOMEDRIVE,strHOMEPATH
- Dim strBackup,strLnkPath,strWorkingDirectory,strTargetPath
-
- Set wsh = CreateObject("WScript.Shell")
- Set wshSysEnv = wsh.Environment("Process")
-
- strHOMEDRIVE = wshSysEnv("HOMEDRIVE")
- strHOMEPATH = wshSysEnv("HOMEPATH")
-
- Set objFSo = CreateObject("Scripting.FileSystemObject")
-
- FindLinks(strHOMEDRIVE & strHOMEPATH & "\Favorites\链接")
-
- Set File = objFSO.CreateTextFile("LinkBackUp.txt",True)
- File.Write strBackup
- File.Close
-
- Set wsh = Nothing
- Set wshSysEnv = Nothing
- Set objFSO = Nothing
- Set Folder = Nothing
- Set subFolders = Nothing
- Set Files = Nothing
- Set File = Nothing
-
- MsgBox "Backup Succeed!",,"TIPs"
-
- Sub FindLinks(strPath)
- Set Folder = objFSO.GetFolder(strPath)
- Set subFolders = Folder.subFolders
- Set Files = Folder.Files
- For Each File In Files
- If LCase(objFSO.GetExtensionName(File.Path)) = "lnk" Then
- Set objLink = wsh.CreateShortcut(File.Path)
- strWorkingDirectory = objLink.WorkingDirectory
- strTargetPath = objLink.TargetPath
- strBackup = strBackup & _
- "LinkPath:" & File.Path & vbCrLf & _
- "LinkTargetPath:" & strTargetPath & vbCrLf & _
- "LinkWorkingDirectory:" & strTargetPath _
- & vbCrLf & vbCrLf
- End If
- Next
- For Each subFolder In subFolders
- FindLinks(subFolder.Path)
- Next
- End Sub
复制代码
作者: zhangop9 时间: 2011-9-9 08:47
本帖最后由 zhangop9 于 2011-9-9 08:49 编辑
备份没有问题,如何恢复到原处,最好是个vbs能一键恢复回去
作者: broly 时间: 2011-9-9 14:32
回复 13# zhangop9
晚上先
作者: broly 时间: 2011-9-9 22:27
备份部分(12楼代码有点错了,现在改回来):- Dim wsh,wshSysEnv,objLink
- Dim objFSO,subFolders,subFolder,Folder,Files,File
- Dim strHOMEDRIVE,strHOMEPATH
- Dim strBackup,strLnkPath,strWorkingDirectory,strTargetPath
-
- Set wsh = CreateObject("WScript.Shell")
- Set wshSysEnv = wsh.Environment("Process")
-
- strHOMEDRIVE = wshSysEnv("HOMEDRIVE")
- strHOMEPATH = wshSysEnv("HOMEPATH")
-
- Set objFSo = CreateObject("Scripting.FileSystemObject")
-
- FindLinks(strHOMEDRIVE & strHOMEPATH & "\Favorites\链接")
-
- Set File = objFSO.CreateTextFile("LinkBackUp.txt",True)
- File.Write strBackup
- File.Close
-
- Set wsh = Nothing
- Set wshSysEnv = Nothing
- Set objFSO = Nothing
- Set Folder = Nothing
- Set subFolders = Nothing
- Set Files = Nothing
- Set File = Nothing
-
- MsgBox "Backup Succeed!",,"TIPs"
-
- Sub FindLinks(strPath)
- Set Folder = objFSO.GetFolder(strPath)
- Set subFolders = Folder.subFolders
- Set Files = Folder.Files
- For Each File In Files
- If LCase(objFSO.GetExtensionName(File.Path)) = "lnk" Then
- Set objLink = wsh.CreateShortcut(File.Path)
- strWorkingDirectory = objLink.WorkingDirectory
- strTargetPath = objLink.TargetPath
- strBackup = strBackup & _
- "LinkPath:" & File.Path & vbCrLf & _
- "LinkTargetPath:" & strTargetPath & vbCrLf & _
- "LinkWorkingDirectory:" & strWorkingDirectory _
- & vbCrLf & vbCrLf
- End If
- Next
- For Each subFolder In subFolders
- FindLinks(subFolder.Path)
- Next
- End Sub
复制代码
还原部分:- Dim wsh,objFSO,f,Folder,strTxtLine,ary,objLink
- Dim strLnkPath,strWorkingDirectory,strTargetPath
-
- set wsh = CreateObject("WScript.Shell")
- Set objFSO = CreateObject("Scripting.FileSystemObject")
- Set f = objFSO.OpenTextFile("LinkBackUp.txt",1)
-
- While Not f.AtEndOfStream
- strTxtLine = f.ReadLine
- If strTxtLine <> "" Then
- ary = Split(strTxtLine,":",-1)
- ReDim Preserve ary(3)
- Select Case ary(0)
- Case "LinkPath"
- strLnkPath = ary(1) & ":" & ary(2)
- Case "LinkTargetPath"
- strTargetPath = ary(1) & ":" & ary(2)
- Case "LinkWorkingDirectory"
- strWorkingDirectory = ary(1) & ":" & ary(2)
- CreateLnk strLnkPath,strTargetPath,strWorkingDirectory
- End Select
- End If
- Wend
-
- f.Close
-
- Set wsh = Nothing
- Set objFSO = Nothing
- Set f= Nothing
-
- MsgBox "Restore Succeed!",Tips
-
- Sub CreateLnk(strLnkPath,strTargetPath,strWorkingDirectory)
- Folder = Left(strLnkPath,InStrRev(strLnkPath,"\"))
- If Not objFSO.FolderExists(Folder) Then
- objFSO.CreateFolder Folder
- End If
- Set objLink = wsh.CreateShortcut(strLnkPath)
- objLink.TargetPath = strTargetPath
- objLink.WorkingDirectory = strWorkingDirectory
- objLink.Save
- Set objLink = Nothing
- End Sub
复制代码
作者: zhangop9 时间: 2011-9-10 18:23
晚上,有时间再搞搞好不好,最好能分开备份,url一个文本,lnk一个文本,路径改到收藏夹"%HOMEPATH%\Favorites“,这样就有通用性了
作者: Batcher 时间: 2011-9-10 19:22
回复 16# zhangop9
以后发帖求助,有什么需求最好在顶楼一次说完。
作者: zhangop9 时间: 2011-9-10 20:59
本帖最后由 zhangop9 于 2011-9-10 21:08 编辑
不好意思,只是后来才想到这个方法能比较好的解决问题,以后想好再说,但是有时需求是慢慢才知道的,所以比较难搞一点,那个发在dos版的那个帖子可以删除的谢谢你的指正!
作者: broly 时间: 2011-9-15 23:12
最后一次写,楼主自重,下不为例- '备份部分
-
- Dim wsh,wshSysEnv,objLink,objUrl
- Dim objFSO,subFolders,subFolder,Folder,Files,File
- Dim strHOMEDRIVE,strHOMEPATH
- Dim strBackup,strLnkPath,strWorkingDirectory,strTargetPath
-
- Set wsh = CreateObject("WScript.Shell")
- Set wshSysEnv = wsh.Environment("Process")
-
- strHOMEDRIVE = wshSysEnv("HOMEDRIVE")
- strHOMEPATH = wshSysEnv("HOMEPATH")
-
- Set objFSO = CreateObject("Scripting.FileSystemObject")
-
- FindLinks(strHOMEDRIVE & strHOMEPATH & "\Favorites\链接")
-
- Set File = objFSO.CreateTextFile("BackUp_lnk.txt",True)
- File.Write strBackup
- File.Close
-
- strBackup = ""
- FindUrls(strHOMEDRIVE & strHOMEPATH & "\Favorites\链接")
-
- Set File = objFSO.CreateTextFile("BackUp_url.txt",True)
- File.Write strBackup
- File.Close
-
- Set wsh = Nothing
- Set wshSysEnv = Nothing
- Set objFSO = Nothing
- Set Folder = Nothing
- Set subFolders = Nothing
- Set Files = Nothing
- Set File = Nothing
-
- MsgBox "Backup Succeed!",,"TIPs"
-
- Sub FindLinks(strPath)
- Set Folder = objFSO.GetFolder(strPath)
- Set subFolders = Folder.subFolders
- Set Files = Folder.Files
- For Each File In Files
- If LCase(objFSO.GetExtensionName(File.Path)) = "lnk" Then
- Set objLink = wsh.CreateShortcut(File.Path)
- strWorkingDirectory = objLink.WorkingDirectory
- strTargetPath = objLink.TargetPath
- strBackup = strBackup & _
- "LinkPath:" & File.Path & vbCrLf & _
- "LinkTargetPath:" & strTargetPath & vbCrLf & _
- "LinkWorkingDirectory:" & strWorkingDirectory _
- & vbCrLf & vbCrLf
- End If
- Next
- For Each subFolder In subFolders
- FindLinks(subFolder.Path)
- Next
- End Sub
-
- Sub FindUrls(strPath)
- Set Folder = objFSO.GetFolder(strPath)
- Set subFolders = Folder.subFolders
- Set Files = Folder.Files
- For Each File In Files
- If LCase(objFSO.GetExtensionName(File.Path)) = "url" Then
- Set objUrl = objFSO.OpenTextFile(File.Path,1)
- strBackup = strBackup & _
- objUrl.ReadAll & vbCrLf & _
- "#" & File.Path & vbCrLf & vbCrLf
- objUrl.Close
- End If
- Next
- For Each subFolder In subFolders
- FindUrls(subFolder.Path)
- Next
- End Sub
复制代码
- '还原部分
-
- Dim wsh,objFSO,f,Folder,strTxtLine,ary,objLink,objUrl
- Dim strLnkPath,strWorkingDirectory,strTargetPath,strRestore
-
- set wsh = CreateObject("WScript.Shell")
- Set objFSO = CreateObject("Scripting.FileSystemObject")
- Set f = objFSO.OpenTextFile("BackUp_lnk.txt",1)
-
- While Not f.AtEndOfStream
- strTxtLine = f.ReadLine
- If strTxtLine <> "" Then
- ary = Split(strTxtLine,":",-1)
- ReDim Preserve ary(3)
- Select Case ary(0)
- Case "LinkPath"
- strLnkPath = ary(1) & ":" & ary(2)
- Case "LinkTargetPath"
- strTargetPath = ary(1) & ":" & ary(2)
- Case "LinkWorkingDirectory"
- If ary(2) <> "" Then
- strWorkingDirectory = ary(1) & ":" & ary(2)
- End If
- CreateLnk strLnkPath,strTargetPath,strWorkingDirectory
- End Select
- End If
- Wend
-
- f.Close
-
- Set f = objFSO.OpenTextFile("BackUp_url.txt",1)
-
- While Not f.AtEndOfStream
- strTxtLine = f.ReadLine
- If Left(strTxtLine,1)="#" Then
- Folder = Left(strLnkPath,InStrRev(strLnkPath,"\"))
- If Not objFSO.FolderExists(Folder) Then
- objFSO.CreateFolder Folder
- End If
- Set objUrl = objFSO.CreateTextFile(Right(strTxtLine,Len(strTxtLine)-1),True)
- objUrl.Write strRestore
- objUrl.Close
- Else
- strRestore = strRestore & _
- strTxtLine & vbCrLf
- End If
- Wend
-
- f.Close
-
- Set wsh = Nothing
- Set objFSO = Nothing
- Set f= Nothing
- Set objUrl = Nothing
-
-
- MsgBox "Restore Succeed!",Tips
-
- Sub CreateLnk(strLnkPath,strTargetPath,strWorkingDirectory)
- Folder = Left(strLnkPath,InStrRev(strLnkPath,"\"))
- If Not objFSO.FolderExists(Folder) Then
- objFSO.CreateFolder Folder
- End If
- Set objLink = wsh.CreateShortcut(strLnkPath)
- objLink.TargetPath = strTargetPath
- objLink.WorkingDirectory = strWorkingDirectory
- objLink.Save
- Set objLink = Nothing
- End Sub
复制代码
作者: wc726842270 时间: 2011-9-15 23:48
规范性不错,可惜我今天早上才明白它的重要性,呵呵,又落后了
作者: zhangop9 时间: 2011-9-16 11:27
19楼的代码“备份”没有问题,“还原”的代码有一点小问题,要先建目录才能还原。有一个备份文本为空的时候报错。
作者: broly 时间: 2011-9-16 12:23
本帖最后由 broly 于 2011-9-16 19:18 编辑
还原部分(原来那个有地方顺序错了)- '还原部分
-
- Dim wsh,objFSO,f,Folder,strTxtLine,ary,objLink,objUrl
- Dim strLnkPath,strWorkingDirectory,strTargetPath,strRestore
-
- set wsh = CreateObject("WScript.Shell")
- Set objFSO = CreateObject("Scripting.FileSystemObject")
- Set f = objFSO.OpenTextFile("BackUp_lnk.txt",1)
-
- While Not f.AtEndOfStream
- strTxtLine = f.ReadLine
- If strTxtLine <> "" Then
- ary = Split(strTxtLine,":",-1)
- ReDim Preserve ary(3)
- Select Case ary(0)
- Case "LinkPath"
- strLnkPath = ary(1) & ":" & ary(2)
- Case "LinkTargetPath"
- strTargetPath = ary(1) & ":" & ary(2)
- Case "LinkWorkingDirectory"
- If ary(2) <> "" Then
- strWorkingDirectory = ary(1) & ":" & ary(2)
- End If
- CreateLnk strLnkPath,strTargetPath,strWorkingDirectory
- End Select
- End If
- Wend
-
- f.Close
-
- Set f = objFSO.OpenTextFile("BackUp_url.txt",1)
-
- While Not f.AtEndOfStream
- strTxtLine = f.ReadLine
- Folder = Left(strLnkPath,InStrRev(strLnkPath,"\"))
- If Not objFSO.FolderExists(Folder) Then
- objFSO.CreateFolder Folder
- End If
- If Left(strTxtLine,1)="#" Then
- Set objUrl = objFSO.CreateTextFile(Right(strTxtLine,Len(strTxtLine)-1),True)
- objUrl.Write strRestore
- objUrl.Close
- strRestore = ""
- Else
- strRestore = strRestore & _
- strTxtLine & vbCrLf
- End If
- Wend
-
- f.Close
-
- Set wsh = Nothing
- Set objFSO = Nothing
- Set f= Nothing
- Set objUrl = Nothing
-
-
- MsgBox "Restore Succeed!",Tips
-
- Sub CreateLnk(strLnkPath,strTargetPath,strWorkingDirectory)
- Folder = Left(strLnkPath,InStrRev(strLnkPath,"\"))
- If Not objFSO.FolderExists(Folder) Then
- objFSO.CreateFolder Folder
- End If
- Set objLink = wsh.CreateShortcut(strLnkPath)
- objLink.TargetPath = strTargetPath
- objLink.WorkingDirectory = strWorkingDirectory
- objLink.Save
- Set objLink = Nothing
- End Sub
复制代码
作者: zhangop9 时间: 2011-9-16 19:00
lnk还原没有问题,url还原后都是打开一个网站的,就一个网站
作者: broly 时间: 2011-9-16 19:19
回复 23# zhangop9
sorry,已修正
作者: zhangop9 时间: 2011-9-16 19:29
本帖最后由 zhangop9 于 2011-9-16 23:26 编辑
回复 24# broly
我的 链接文件夹下还有下一级目录,还原时还要新建目录结构如:选用软件、系统更新,不然就报错很不方便!!!!
LinkPath:\Personal\\Favorites\链接\系统更新\9.字体路径.bat.lnk
LinkTargetPath:D:\Personal\setup\字体路径.bat
LinkWorkingDirectory:D:\Personal\Adobe Reader V8\AdobeAcrobatReader
LinkPath:D:\Personal\Favorites\链接\选用软件\Foxit PDF Creator.lnk
LinkTargetPath:D:\Personal\pdf\Foxit PDF Creator 3.0.1.0109 x86\!)绿化.exe
LinkWorkingDirectory:D:\Personal\pdf\Foxit PDF Creator 3.0.1.0109 x86
LinkPath:D:\Personal\Favorites\链接\选用软件\开机映射网络磁盘批处理.lnk.lnk
LinkTargetPath:D:\Personal\自动登录脚本\自动登录网络共享盘\开机映射网络磁盘批处理.bat
LinkWorkingDirectory:D:\Personal\自动登录脚本\自动登录网络共享盘
LinkPath:D:\Personal\Favorites\链接\选用软件\快速定位注册表.vbs.lnk
LinkTargetPath:D:\Personal\自动登录脚本\安装脚本\快速定位注册表.vbs
LinkWorkingDirectory:D:\Personal\校时\网络校时
作者: zhangop9 时间: 2011-9-16 19:32
本帖最后由 zhangop9 于 2011-9-16 23:25 编辑
可以用了,谢谢,目录想想办法自己搞吧
作者: wc726842270 时间: 2011-9-23 11:59
其实,这个也可以用P来完成。当然有用WINRAR了,这方面的帮助,还是“百度或GOOGLE”一下比较好
关键字:WINRAR管理清除桌面文件或图标(绝对路径没有改变的情况下)
欢迎光临 批处理之家 (http://bathome.net./) |
Powered by Discuz! 7.2 |