无忧启动论坛

 找回密码
 注册
搜索
系统gho:最纯净好用系统下载站广告联系 微信:wuyouceo QQ:184822951
查看: 64498|回复: 97
打印 上一主题 下一主题

一键转移个人资料 v1.0 (build 2011.06.24)

    [复制链接]
跳转到指定楼层
#
发表于 2011-6-24 13:19:51 | 只看该作者 回帖奖励 |正序浏览 |阅读模式
一键转移个人资料 v1.0

    重装系统之后,我习惯在"一键GHOST备份系统"之前将个人资料永久转移到D盘,
目的很简单:避免"一键GHOST恢复系统"后,新近产生的个人资料丢失,另外,可以减小GHO体积。
个人资料包括:桌面、收藏夹、我的文档、共享文档、cookies,
本程序采用批处理方式制作,优点是:执行效率高、节省时间;开放源代码,便于分享、扩展与提高。


    希望大家试用并提出宝贵意见.
    有任何问题请 回复此贴,不要发新贴。


无忧论坛 DOS讨论区 版主 gmy 制作
2011.6.24

一键转移个人资料v1.0.bat 源代码
  1. @echo off
  2. cls
  3. echo 欢迎使用 一键转移个人资料 v1.0
  4. echo.
  5. echo 转移的目标路径是
  6. echo D:\桌面
  7. echo D:\收藏夹
  8. echo D:\我的文档
  9. echo D:\共享文档
  10. echo D:\我的文档\cookies
  11. echo.
  12. echo 按任意键开始转移。
  13. pause >nul
  14. if not exist d:\ goto end
  15. md D:\桌面
  16. md D:\收藏夹
  17. md D:\我的文档
  18. md D:\共享文档
  19. md D:\我的文档\cookies
  20. REM 默认路径
  21. xcopy "C:\Documents and Settings\%USERNAME%\桌面\*.*" D:\桌面 /e /h /c /y
  22. xcopy "%ALLUSERSPROFILE%\桌面\*.*" D:\桌面 /e /h /c /y
  23. xcopy "C:\Documents and Settings\%USERNAME%\Favorites\*.*" D:\收藏夹 /e /h /c /y
  24. xcopy "%ALLUSERSPROFILE%\Favorites\*.*" D:\收藏夹 /e /h /c /y
  25. xcopy "C:\Documents and Settings\%USERNAME%\My Documents\*.*" D:\我的文档 /e /h /c /y
  26. xcopy "%ALLUSERSPROFILE%\Documents\*.*" D:\共享文档 /e /h /c /y
  27. xcopy "C:\Documents and Settings\%USERNAME%\cookies\*.*" D:\我的文档\cookies /e /h /c /y
  28. REM 兼容其它优化程序设置的路径
  29. xcopy "D:\My Documents\desktop\*.*" D:\桌面 /e /h /c /y
  30. xcopy "D:\My Documents\桌面\*.*" D:\桌面 /e /h /c /y
  31. xcopy "D:\desktop\*.*" D:\桌面 /e /h /c /y
  32. xcopy "D:\My Documents\Favorites\*.*" D:\收藏夹 /e /h /c /y
  33. xcopy "D:\My Documents\收藏夹\*.*" D:\收藏夹 /e /h /c /y
  34. xcopy "D:\Favorites\*.*" D:\收藏夹 /e /h /c /y
  35. xcopy "D:\My Documents\*.*" D:\我的文档 /e /h /c /y
  36. xcopy "D:\My Documents\cookies\*.*" D:\我的文档\cookies /e /h /c /y
  37. xcopy "D:\cookies\*.*" D:\我的文档\cookies /e /h /c /y
  38. regedit /s newdir.reg
  39. cls
  40. echo 执行完毕,重启才能生效,请关闭正在使用的其它软件,按任意键将重启电脑。
  41. pause >nul
  42. shutdown -r
  43. :end
复制代码
newdir.reg 源代码
  1. Windows Registry Editor Version 5.00
  2. [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\DocFolderPaths]
  3. "Administrator"="D:\\我的文档"
  4. [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders]
  5. "Personal"="D:\\我的文档"
  6. "CommonPictures"="D:\\我的文档\\My Pictures"
  7. "CommonMusic"="D:\\我的文档\\My Music"
  8. "CommonVideo"="D:\\我的文档\\My Videos"
  9. "Common Favorites"="D:\\收藏夹"
  10. "Common Desktop"="C:\\Documents and Settings\\All Users\\桌面"
  11. "Common Documents"="D:\\共享文档"
  12. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders]
  13. "Personal"="D:\\我的文档"
  14. "My Pictures"="D:\\我的文档\\My Pictures"
  15. "My Music"="D:\\我的文档\\My Music"
  16. "My Video"="D:\\我的文档\\My Videos"
  17. "Cookies"="D:\\我的文档\\Cookies"
  18. "Favorites"="D:\\收藏夹"
  19. "Desktop"="D:\\桌面"
  20. [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders]
  21. "Personal"=hex(2):44,00,3a,00,5c,00,11,62,84,76,87,65,63,68,00,00
  22. "CommonPictures"=hex(2):44,00,3a,00,5c,00,11,62,84,76,87,65,63,68,5c,00,4d,00,79,\
  23.   00,20,00,50,00,69,00,63,00,74,00,75,00,72,00,65,00,73,00,00,00
  24. "CommonMusic"=hex(2):44,00,3a,00,5c,00,11,62,84,76,87,65,63,68,5c,00,4d,00,79,00,\
  25.   20,00,4d,00,75,00,73,00,69,00,63,00,00,00
  26. "CommonVideo"=hex(2):44,00,3a,00,5c,00,11,62,84,76,87,65,63,68,5c,00,4d,00,79,00,\
  27.   20,00,56,00,69,00,64,00,65,00,6f,00,73,00,00,00
  28. "Common Favorites"=hex(2):44,00,3a,00,5c,00,36,65,cf,85,39,59,00,00
  29. "Common Desktop"=hex(2):25,00,41,00,4c,00,4c,00,55,00,53,00,45,00,52,00,53,00,\
  30.   50,00,52,00,4f,00,46,00,49,00,4c,00,45,00,25,00,5c,00,4c,68,62,97,00,00
  31. "Common Documents"=hex(2):44,00,3a,00,5c,00,71,51,ab,4e,87,65,63,68,00,00
  32. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders]
  33. "Personal"=hex(2):44,00,3a,00,5c,00,11,62,84,76,87,65,63,68,00,00
  34. "My Pictures"=hex(2):44,00,3a,00,5c,00,11,62,84,76,87,65,63,68,5c,00,4d,00,79,\
  35.   00,20,00,50,00,69,00,63,00,74,00,75,00,72,00,65,00,73,00,00,00
  36. "My Music"=hex(2):44,00,3a,00,5c,00,11,62,84,76,87,65,63,68,5c,00,4d,00,79,00,\
  37.   20,00,4d,00,75,00,73,00,69,00,63,00,00,00
  38. "My Video"=hex(2):44,00,3a,00,5c,00,11,62,84,76,87,65,63,68,5c,00,4d,00,79,00,\
  39.   20,00,56,00,69,00,64,00,65,00,6f,00,73,00,00,00
  40. "Cookies"=hex(2):44,00,3a,00,5c,00,11,62,84,76,87,65,63,68,5c,00,43,00,6f,00,\
  41.   6f,00,6b,00,69,00,65,00,73,00,00,00
  42. "Favorites"=hex(2):44,00,3a,00,5c,00,36,65,cf,85,39,59,00,00
  43. "Desktop"=hex(2):44,00,3a,00,5c,00,4c,68,62,97,00,00
复制代码
下载地址见附件:



[ 本帖最后由 gmy 于 2011-6-24 16:08 编辑 ]

1KEY_MOVE.rar

1.97 KB, 下载次数: 1966, 下载积分: 无忧币 -2

一键转移个人资料_20110624

点评

www.xuexi366.com/BOOK/674/ 骗个明星当老婆  发表于 2015-3-3 11:50

评分

参与人数 1无忧币 +3 收起 理由
weiling103 + 3 很给力!

查看全部评分

94#
发表于 2023-1-14 14:25:56 | 只看该作者
多谢提供一键转移个人资料的脚本啊,一款很经典的软件
回复

使用道具 举报

93#
发表于 2022-12-31 23:45:26 | 只看该作者
感谢分享
回复

使用道具 举报

92#
发表于 2022-12-8 15:46:00 | 只看该作者

简洁高效!!!强烈支持
回复

使用道具 举报

91#
发表于 2022-12-4 01:04:07 | 只看该作者
感谢分享
回复

使用道具 举报

90#
发表于 2022-11-22 10:15:48 | 只看该作者
用不了了,改了一下,全搞乱了
回复

使用道具 举报

89#
发表于 2022-11-21 14:23:29 | 只看该作者
谢谢分享
回复

使用道具 举报

88#
发表于 2021-2-24 06:08:12 | 只看该作者
感谢分享!
回复

使用道具 举报

87#
发表于 2021-2-18 13:50:01 来自手机 | 只看该作者
谢谢分享!
回复

使用道具 举报

86#
发表于 2019-7-18 15:30:27 来自手机 | 只看该作者
强烈支持
回复

使用道具 举报

85#
发表于 2018-10-30 13:17:56 | 只看该作者
楼主没有考虑更新?
回复

使用道具 举报

84#
发表于 2018-4-24 21:58:40 | 只看该作者
想都没想到原来这里历史很悠久
回复

使用道具 举报

83#
发表于 2018-2-26 13:54:55 | 只看该作者
haoyongma
回复

使用道具 举报

82#
发表于 2018-2-22 09:00:47 | 只看该作者
不错呀,感谢分享
回复

使用道具 举报

81#
发表于 2017-11-17 13:43:57 | 只看该作者
想问下大神,dos6.22怎么安装,不通过虚拟机,直接安装在硬盘上
回复

使用道具 举报

80#
发表于 2017-8-14 10:44:30 | 只看该作者
以前写过AU3版本
回复

使用道具 举报

79#
发表于 2017-5-8 21:02:44 | 只看该作者
看起来很强大啊,马上来试试看!
回复

使用道具 举报

78#
发表于 2017-2-4 15:57:46 | 只看该作者
共同发展!学习才会进步,谢了












父亲妈妈fuqinmm.com
明星资料fuqinmm.com
电视剧更新fuqinmm.com
明星资讯fuqinmm.com
电视剧剧情fuqinmm.com
明星资料 fuqinmm.com/mingxing/
搞笑视频fuqinmm.com/shipin/joke.html
热门电影fuqinmm.com/dianying/
父亲妈妈视频fuqinmm.com/shipin/
好看的电影fuqinmm.com/dianying/
最新上映的电影fuqinmm.com/dianying/
最热门的综艺节目fuqinmm.com/zongyi/
好看的综艺节目fuqinmm.com/zongyi/
热门电视剧fuqinmm.com/dianshi/
好的的电视剧fuqinmm.com/dianshi/
回复

使用道具 举报

77#
发表于 2016-12-26 13:23:28 | 只看该作者
看标题,就想起了一键ghost的一款工具,进来一看自主的名称,果然如此。
很好用的小工具,一直在使用之
回复

使用道具 举报

76#
发表于 2016-9-22 23:47:28 | 只看该作者

厉害啊,高手的高手
回复

使用道具 举报

75#
发表于 2016-8-31 17:15:27 | 只看该作者
批处理可以的
回复

使用道具 举报

74#
发表于 2016-7-20 21:41:40 | 只看该作者
先下载先,以后有用
回复

使用道具 举报

73#
发表于 2016-3-18 09:45:20 | 只看该作者
鉴定完毕!
回复

使用道具 举报

72#
发表于 2016-1-29 21:25:49 | 只看该作者
献个丑:
  1. @echo off
  2. title 命令提示符
  3. if "%1"=="/?" goto help
  4. if "%1"=="/h" goto help
  5. if "%1"=="/H" goto help
  6. if "%1"=="/u" goto original
  7. if "%1"=="/U" goto original
  8. title 转移系统资料文件夹的位置-向导
  9. :input
  10. cls
  11. echo 当前系统资料文件夹的名称及位置:
  12. echo.
  13. for /f "tokens=2*" %%a in ('REG QUERY "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v Personal ^|findstr "Personal"') do set MD=%%b
  14. echo 『我的文档』
  15. if "%MD%"=="" set MD=%USERPROFILE%\My Documents
  16. echo %MD%
  17. echo.
  18. for /f "tokens=3*" %%a in ('REG QUERY "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v "My Music" ^|findstr "Music"') do set MM=%%b
  19. echo 『我的音乐』
  20. if "%MM%"=="" set MM=%USERPROFILE%\My Documents\My Music
  21. echo %MM%
  22. echo.
  23. for /f "tokens=3*" %%a in ('REG QUERY "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v "My Video" 2^>nul^|findstr "Video"') do set MV=%%b
  24. echo 『我的视频』
  25. if "%MV%"=="" set MV=%USERPROFILE%\My Documents\My Videos
  26. echo %MV%
  27. echo.
  28. for /f "tokens=3*" %%a in ('REG QUERY "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v "My Pictures" ^|findstr "Pictures"') do set MP=%%b
  29. echo 『图片收藏夹』
  30. if "%MP%"=="" set MP=%USERPROFILE%\My Documents\My Pictures
  31. echo %MP%
  32. echo.
  33. for /f "tokens=2*" %%a in ('REG QUERY "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v Favorites ^|findstr "Favorites"') do set F=%%b
  34. echo 『收藏夹』
  35. if "%F%"=="" set F=%USERPROFILE%\Favorites
  36. echo %F%
  37. echo.
  38. for /f "tokens=2 delims={}" %%a in ('REG QUERY HKCU\Identities /v "Default User ID" 2^>nul^|findstr /i "Default"') do @set O=%%a
  39. for /f "tokens=3*" %%a in ('REG QUERY "HKCU\Identities\{%O%}\Software\Microsoft\Outlook Express\5.0" /v "Store Root" 2^>nul^|findstr "Store"') do @set OE=%%b
  40. echo 『Outlook Express』
  41. if "%OE%"=="" set OE=%USERPROFILE%\Local Settings\Application Data\Identities\{88888888-8888-8888-8888-888888888888}\Microsoft\Outlook Express\
  42. echo %OE%
  43. echo.
  44. set /P OK="请输入一个指令或目标驱动器:[H | Q | U | drive:] "
  45. if "%OK%"=="h" set h=1&goto help
  46. if "%OK%"=="H" set h=1&goto help
  47. if "%OK%"=="q" echo.&echo 正在退出. . .&call :ProcDelay 200&goto end
  48. if "%OK%"=="Q" echo.&echo 正在退出. . .&call :ProcDelay 200&goto end
  49. if "%OK%"=="u" goto original
  50. if "%OK%"=="U" goto original
  51. if not exist %OK%\nul goto input
  52. xcopy "%MD%\*.*" "%OK%\My Documents" /q /h /r /y>nul 2>nul
  53. xcopy "%F%\*.*" "%OK%\My Documents\Favorites" /s /q /h /r /y>nul 2>nul
  54. rd "%F%" /s /q>nul 2>nul
  55. :: xcopy "%MM%\*.*" "%OK%\My Documents\My Music" /s /q /h /r /y>nul 2>nul
  56. :: rd "%MM%" /s /q>nul 2>nul
  57. :: xcopy "%MP%\*.*" "%OK%\My Documents\My Pictures" /s /q /h /r /y>nul 2>nul
  58. :: rd "%MP%" /s /q>nul 2>nul
  59. xcopy "%MV%\*.*" "%OK%\My Documents\My Videos" /s /q /h /r /y>nul 2>nul
  60. rd "%MV%" /s /q>nul 2>nul
  61. xcopy "%OE%\*.*" "%OK%\My Documents\Outlook Express" /s /q /h /r /y>nul 2>nul
  62. rd "%OE%" /s /q>nul 2>nul
  63. rd "%MD%" /q>nul 2>nul
  64. reg delete "HKCU\Identities\{%O%}" /f>nul
  65. reg add "HKCU\Identities" /v "Default User ID" /t REG_SZ /d "{88888888-8888-8888-8888-888888888888}" /f>nul
  66. reg add "HKCU\Identities" /v "Last User ID" /t REG_SZ /d "{88888888-8888-8888-8888-888888888888}" /f>nul
  67. reg add "HKCU\Identities\{88888888-8888-8888-8888-888888888888}" /v "User ID" /t REG_SZ /d "{88888888-8888-8888-8888-888888888888}" /f>nul
  68. reg add "HKCU\Identities\{88888888-8888-8888-8888-888888888888}\Software\Microsoft\Outlook Express\5.0" /v "Store Root" /t REG_EXPAND_SZ /d "%OK%\My Documents\Outlook Express\" /f>nul
  69. reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v "Favorites" /t REG_SZ /d "%OK%\My Documents\Favorites" /f>nul
  70. reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v "My Music" /t REG_SZ /d "%OK%\My Documents\My Music" /f>nul
  71. reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v "My Pictures" /t REG_SZ /d "%OK%\My Documents\My Pictures" /f>nul
  72. reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v "My Video" /t REG_SZ /d "%OK%\My Documents\My Videos" /f>nul
  73. reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v "Personal" /t REG_SZ /d "%OK%\My Documents" /f>nul
  74. reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" /v "Favorites" /t REG_EXPAND_SZ /d "%OK%\My Documents\Favorites" /f>nul
  75. reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" /v "My Pictures" /t REG_EXPAND_SZ /d "%OK%\My Documents\My Pictures" /f>nul
  76. reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" /v "Personal" /t REG_EXPAND_SZ /d "%OK%\My Documents" /f>nul
  77. echo.
  78. echo 文件夹内容已经转移,注册表信息已经更改,重新启动后生效!
  79. call :ProcDelay 400
  80. goto end
  81. :original
  82. reg add "HKCU\Identities" /v "Default User ID" /t REG_SZ /d "{88888888-8888-8888-8888-888888888888}" /f>nul
  83. reg add "HKCU\Identities" /v "Last User ID" /t REG_SZ /d "{88888888-8888-8888-8888-888888888888}" /f>nul
  84. reg add "HKCU\Identities\{88888888-8888-8888-8888-888888888888}" /v "User ID" /t REG_SZ /d "{88888888-8888-8888-8888-888888888888}" /f>nul
  85. reg add "HKCU\Identities\{88888888-8888-8888-8888-888888888888}\Software\Microsoft\Outlook Express\5.0" /v "Store Root" /t REG_EXPAND_SZ /d "%USERPROFILE%\Local Settings\Application Data\Identities\{88888888-8888-8888-8888-888888888888}\Microsoft\Outlook Express\" /f>nul
  86. reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v "Favorites" /t REG_SZ /d "%USERPROFILE%\Favorites" /f>nul
  87. reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v "My Music" /t REG_SZ /d "%USERPROFILE%\My Documents\My Music" /f>nul
  88. reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v "My Pictures" /t REG_SZ /d "%USERPROFILE%\My Documents\My Pictures" /f>nul
  89. reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v "My Video" /t REG_SZ /d "%USERPROFILE%\My Documents\My Videos" /f>nul
  90. reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v "Personal" /t REG_SZ /d "%USERPROFILE%\My Documents" /f>nul
  91. reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" /v "Favorites" /t REG_EXPAND_SZ /d "%%USERPROFILE%%\Favorites" /f>nul
  92. reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" /v "My Pictures" /t REG_EXPAND_SZ /d "%%USERPROFILE%%\My Documents\My Pictures" /f>nul
  93. reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" /v "Personal" /t REG_EXPAND_SZ /d "%%USERPROFILE%%\My Documents" /f>nul
  94. if not "%MD%"=="%USERPROFILE%\My Documents" xcopy "%MD%\*.*" "%USERPROFILE%\My Documents" /q /h /r /y>nul 2>nul
  95. if not "%F%"=="%USERPROFILE%\Favorites" xcopy "%F%\*.*" "%USERPROFILE%\Favorites" /s /q /h /r /y>nul 2>nul
  96. if not "%F%"=="%USERPROFILE%\Favorites" rd "%F%" /s /q>nul 2>nul
  97. :: if not "%MM%"=="%USERPROFILE%\My Documents\My Music" xcopy "%MM%\*.*" "%USERPROFILE%\My Documents\My Music" /s /q /h /r /y>nul 2>nul
  98. :: if not "%MM%"=="%USERPROFILE%\My Documents\My Music" rd "%MM%" /s /q>nul 2>nul
  99. :: if not "%MP%"=="%USERPROFILE%\My Documents\My Pictures" xcopy "%MP%\*.*" "%USERPROFILE%\My Documents\My Pictures" /s /q /h /r /y>nul 2>nul
  100. :: if not "%MP%"=="%USERPROFILE%\My Documents\My Pictures" rd "%MP%" /s /q>nul 2>nul
  101. if not "%MV%"=="%USERPROFILE%\My Documents\My Videos" xcopy "%MV%\*.*" "%USERPROFILE%\My Documents\My Videos" /s /q /h /r /y>nul 2>nul
  102. if not "%MV%"=="%USERPROFILE%\My Documents\My Videos" rd "%MV%" /s /q>nul 2>nul
  103. if not "%OE%"=="%USERPROFILE%\Local Settings\Application Data\Identities\{88888888-8888-8888-8888-888888888888}\Microsoft\Outlook Express" xcopy "%OE%\*.*" "%USERPROFILE%\Local Settings\Application Data\Identities\{88888888-8888-8888-8888-888888888888}\Microsoft\Outlook Express" /s /q /h /r /y>nul 2>nul
  104. if not "%OE%"=="%USERPROFILE%\Local Settings\Application Data\Identities\{88888888-8888-8888-8888-888888888888}\Microsoft\Outlook Express" rd "%OE%" /s /q>nul 2>nul
  105. if not "%MD%"=="%USERPROFILE%\My Documents" rd "%MD%" /q>nul 2>nul
  106. echo.
  107. echo 注册表信息已经恢复,文件夹内容已经转移,重新启动后生效!
  108. call :ProcDelay 400
  109. goto end
  110. :help
  111. if "%h%"=="1" echo.
  112. echo 转移系统资料文件夹的位置。
  113. echo.
  114. echo DATAMOVE [drive:] [/U] [/Q] [/H]
  115. echo.
  116. echo   drive:  指定要转移到的目标驱动器
  117. echo   /U      恢复系统默认值
  118. echo   /Q      向导中退出
  119. echo   /H      显示帮助信息
  120. echo.
  121. echo 不加任何参数键入 DATAMOVE,可以启动一个向导。
  122. echo.
  123. echo 目标驱动器将自动添加文件夹路径 My Documents。
  124. echo.
  125. echo 命令行开关 /U 会将更改过的系统注册表信息还原。
  126. echo 它不会还原回您之前已更改系统的任何值,而直接
  127. echo 还原回系统的默认值。
  128. echo.
  129. if "%h%"=="1" pause&set h=&goto input
  130. goto end

  131. :ProcDelay number
  132. Setlocal EnableExtensions
  133. for /f "tokens=1-4 delims=:. " %%h in ("%TIME%") do set start_=%%h%%i%%j%%k
  134.      :wait_
  135.      for /f "tokens=1-4 delims=:. " %%h in ("%TIME%") do set now_=%%h%%i%%j%%k
  136.      set /a diff_=%now_%-%start_%
  137. if %diff_% lss %1 goto wait_
  138. Endlocal

  139. :end
  140. set MD=
  141. set MM=
  142. set MV=
  143. set MP=
  144. set F=
  145. set O=
  146. set OE=
  147. set OK=
  148. set h=
复制代码
回复

使用道具 举报

71#
发表于 2015-9-20 18:40:31 | 只看该作者
回复一下楼主
最新的1.56转移版本,在win10专业版下,转移也出现许多问题。。。
许多文件图标丢失。。。
回复

使用道具 举报

70#
发表于 2015-8-25 17:59:41 | 只看该作者
p whp wh这个好,收藏了
回复

使用道具 举报

69#
发表于 2015-7-30 20:56:37 | 只看该作者
GMY老大,更新一下,支持win10啊,谢谢老大
回复

使用道具 举报

68#
发表于 2015-4-9 13:37:36 | 只看该作者
感谢楼主发帖
回复

使用道具 举报

67#
发表于 2015-4-6 07:42:17 | 只看该作者
不错,谢谢分享!
回复

使用道具 举报

66#
发表于 2015-3-6 07:53:00 | 只看该作者
不错,支持一下。
回复

使用道具 举报

65#
发表于 2015-3-2 08:44:32 | 只看该作者
下载备用,谢谢楼主分享
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|Archiver|捐助支持|无忧启动 ( 闽ICP备05002490号-1 )

闽公网安备 35020302032614号

GMT+8, 2024-3-29 18:03

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表