Board logo

标题: [已结]用批处理移动"我的文档"既然那么多障碍 [打印本页]

作者: hackate     时间: 2008-11-9 21:00    标题: [已结]用批处理移动"我的文档"既然那么多障碍

由于"我的文档"是只读属性..
我的目的要实现把"我的文档"移动到E盘

首先代码
attrib -r "C:\Documents and Settings\Administrator\My Documents" /s /d
move "C:\Documents and Settings\Administrator\My Documents" "e:\xxx\"
提示拒绝访问,我晕,看了下属性.C:\Documents and Settings\Administrator\My Documents还是只读的.真不知道怎么办了呢?

不知道哪位高手知道,能否告知呢

[ Last edited by HAT on 2008-11-11 at 23:55 ]
作者: tireless     时间: 2008-11-9 21:41
先修改注册表试试,修改以下两个位置:

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders

然后再 move。

参考这里:
通过注册表改变“我的文档”“收藏夹”“开始菜单”等的默认位置

——————————————————————————————————————

在资源管理器中直接删除都会弹出对话框:

---------------------------
删除
---------------------------
我的文档 是 Windows 系统文件夹,Windows 需要它才能正常运行,因此不能删除。
---------------------------
确定   
---------------------------

[ Last edited by tireless on 2008-11-9 at 21:43 ]
作者: BC     时间: 2008-11-9 21:57
我更相信的是
D:\>move /?
Moves files and renames files and directories.

To move one or more files:
MOVE [/Y | /-Y] [drive:][path]filename1[,...] destination

To rename a directory:
MOVE [/Y | /-Y] [drive:][path]dirname1 dirname2

  [drive:][path]filename1 Specifies the location and name of the file
                          or files you want to move.
  destination             Specifies the new location of the file. Destination
                          can consist of a drive letter and colon, a
                          directory name, or a combination. If you are moving
                          only one file, you can also include a filename if
                          you want to rename the file when you move it.
  [drive:][path]dirname1  Specifies the directory you want to rename.
  dirname2                Specifies the new name of the directory.

  /Y                      Suppresses prompting to confirm you want to
                          overwrite an existing destination file.
  /-Y                     Causes prompting to confirm you want to overwrite
                          an existing destination file.


  Quote:
Moves files and renames files and directories.

[ Last edited by BC on 2008-11-9 at 22:00 ]
作者: tireless     时间: 2008-11-9 22:24
对啊,用 move 移动文件夹不能“跨盘”。
作者: HAT     时间: 2008-11-10 10:30
建议楼主多到各大论坛的windows版块潜水学习,移动"我的文档"之类的文件夹并非你想象的那么简单。
作者: yishanju     时间: 2008-11-10 15:56
我怎么好像记得在哪有设置“我的文档” 路径, 好像是在组策略里。
作者: BWSkyer     时间: 2008-11-10 16:14


  Quote:
Originally posted by HAT at  10:30:
建议楼主多到各大论坛的windows版块潜水学习,移动"我的文档"之类的文件夹并非你想象的那么简单。

不是附件这样的嘛... So easy...

自己定义下目录在哪里, 移动...搞定~~
附件 1: wend.JPG (2008-11-10 16:14, 36.92 K)



作者: yishanju     时间: 2008-11-10 16:22
不过话说回来,楼主是想通过命令行来实现滴,
作者: HAT     时间: 2008-11-10 16:55    标题: Re 7楼

这个方法确是简单,但不适合批量操作,还有其他方法。
作者: hackate     时间: 2008-11-11 22:08
哈哈哈,谢谢大家的帮助...

后来还是先用XCOPY复制过去,然后RD掉我的文档..
再改注册表。.


谢谢楼上的朋友,谢谢TREE,BC朋友..
确实MOVE不能实现跨盘呢,呵呵
作者: HAT     时间: 2008-11-12 13:54
move 不能跨分区?

  Quote:
Microsoft Windows XP [版本 5.1.2600]
(C) 版权所有 1985-2001 Microsoft Corp.

C:\test>dir /b D:\*.txt
a.txt

C:\test>dir /b C:\test\*.txt
b.txt

C:\test>move D:\a.txt C:\test

C:\test>dir /b D:\*.txt
找不到文件

C:\test>dir /b C:\test\*.txt
a.txt
b.txt


作者: tireless     时间: 2008-11-12 14:00


  Quote:
『第 4 楼』:  

对啊,用 move 移动文件夹不能“跨盘”。