Win7用戶文件夾轉移
找到四種方法:第三種和第四種最好用。
1、mklink法:
使 用Windows XP時習慣將“我的文檔”文件夾重定向到其他盤上,這樣重裝系統時丟失的數據少一點。在Win 7/Vista下情況有了變化,所有的用戶數據都被放到了“C:\Users\用戶名”這個地方,不但包括“我的文檔”“我的圖片”等用戶自己的檔,還包括用戶的設定檔、IE的cookie、收藏夾、上網的臨時檔等等。可惜的是默認情況下這個檔夾還是位於系統盤,如果能放到別的盤,那麼重裝系統之
後,用戶所有的設置、數據將和重裝前一樣,那會多麼方便呀。
關於Windows 7/vista下如何實現系統和用戶文件分區存放,這篇文章是很好的參考,其中關鍵步驟引用如下:
1. 在“計算機管理”裡把Administrator用戶啟動,注銷後用Administrator登錄;
2. 把“C:\Users\我的用戶名”整個目錄移到其它盤上,假設移到“D:\我的用戶名”;
3. 用mklink.exe創建目錄鏈接:mklink.exe /D C:\Users\我的用戶名
D:\我的用戶名,提示會顯示鏈接已經建立,並且會有“<==>”這樣一個符號告訴你這兩個目錄是等同的;4. 重新登錄你自己的帳號,發現一切都沒有變化,變化的只是你的文件將和系統分離,它們將更安全!
5. 下次重裝時,還用同一個用戶名,先用Administrator登錄後把新系統中的”C:\Users\我的用戶名”刪除(否則mklink.exe會報無法創建鏈接),再用第3步把你位於D盤上的目錄重新做下鏈接即可
不過有些地方說得不是很清楚,我照著做時遇到了一些問題,下面是解決辦法和注意事項:
一、如何啟用administrator帳戶
我的電腦(右鍵)–>管理–>本地用戶和組(在左邊的選項欄裡)–>用戶–>右邊窗口找到Administrator–>右鍵打開Administrator屬性,找到下面的帳戶禁用那裡,把那個禁用的勾勾去掉,點擊確定。
二、無法移動“C:\Users\用戶名”文件夾?
換用administrator登錄之後,試圖把“C:\Users\用戶名”整個目錄移到“D:\用戶名”,卻發現有些檔無法移動,無法刪除。
各種辦法都想盡了,UAC關了,權限全開了,甚至把這個用戶帳號本身刪除了,但它遺留下來的User檔夾就是刪不了!此時真是感覺很無力,真不知道微軟是怎麼想的……還好裝有雙系統,切換到另一個系統下面,這個系統下面的東西還不是想怎麼刪就怎麼刪,哼,死微軟~~
避免這種事情的辦法呢,就是真正要用的那個用戶名,最好創建之後,登錄一次,什麼也別做,馬上換administrator。什麼也別做,免得沒留神哪個操作又鎖定了什麼檔導致無法移動;但是一定要登陸一次,讓Windows初始化一些設置,否則的話,下次登陸Windows很可能自作聰明地給你建一個名為“用戶名.計算機名”的文件夾,讓你水中撈月一場空……
三、mklink命令的用法
Win+r,輸入cmd,打開命令列介面。輸入:
mklink /D C:\Users\用戶名 D:\用戶名
雖然按理說Windows系統是大小寫不敏感的,但在我這參數/D一定要大寫才能成功,也不知中了什麼邪。
這樣弄完之後,再換用那個用戶名重新登陸——外表感覺不到有任何差別,但是內在卻美了許多 :)
2、創建.bat文件:
Win7用戶檔夾轉移,自己用批處理寫的。可以自行選擇用戶檔夾位置,修改了用戶檔夾的下載、遊戲存檔、桌面、音樂、收藏夾、圖片、視頻、文檔、緩存及IE臨時檔夾的位置,其他檔夾可以自行修改(不建議),如需修改將行首的 :: 刪除即可(Shell Folders及User Shell Folders需要同時修改)。
以下是批處理內容,直接復制保存為.bat檔就能使用
@echo off
echo
============================================
echo .
echo .
echo By Terrorist
echo .
echo .
echo
============================================
echo
將用戶檔夾轉移到(直接回車將轉移至D:\Users\%USERNAME%\):
set /p UserFolderPath=
if not
defined UserFolderPath set UserFolderPath=D:\Users\%USERNAME%\
xcopy
“%USERPROFILE%” “%UserFolderPath%” /e /c /k /q /y /h
reg
add “HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell
Folders” /v “{374DE290-123F-4565-9164-39C4925E467B}” /d
“%UserFolderPath%\Downloads” /f
reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell
Folders” /v “{4C5C32FF-BB9D-43B0-B5B4-2D72E54EAAA4}” /d “%UserFolderPath%\Saved
Games” /f
reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell
Folders” /v “{56784854-C6CB-462B-8169-88E350ACB882}” /d
“%UserFolderPath%\Contacts” /f
reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell
Folders” /v “{7D1D3A04-DEBB-4115-95CF-2F29DA2920DA}” /d
“%UserFolderPath%\Searches” /f
reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell
Folders” /v “{BFB9D5E0-C6A9-404C-B2B2-AE6DB6AF4968}” /d “%UserFolderPath%\Links”
/f
reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell
Folders” /v “Desktop” /d “%UserFolderPath%\Desktop”
/f
reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell
Folders” /v “Favorites” /d “%UserFolderPath%\Favorites”
/f
reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell
Folders” /v “My Music” /d “%UserFolderPath%\Music”
/f
reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell
Folders” /v “My Pictures” /d “%UserFolderPath%\Pictures”
/f
reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell
Folders” /v “My Video” /d “%UserFolderPath%\Videos”
/f
reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell
Folders” /v “Personal” /d “%UserFolderPath%\Documents”
/f
::reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell
Folders” /v “{1B3EA5DC-B587-4786-B4EF-BD1DC332AEAE}” /d
“%UserFolderPath%\AppData\Roaming\Microsoft\Windows\Libraries” /f
::reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell
Folders” /v “{A520A1A4-1780-4FF6-BD18-167343C5AF16}” /d
“%UserFolderPath%\AppData\LocalLow” /f
::reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell
Folders” /v “Administrative Tools” /d
“%UserFolderPath%\AppData\Roaming\Microsoft\Windows\Start
Menu\Programs\Administrative Tools” /f
::reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell
Folders” /v “AppData” /d
“%UserFolderPath%\AppData\Roaming” /f
reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell
Folders” /v “Cache” /d
“%UserFolderPath%\AppData\Local\Microsoft\Windows\Temporary Internet Files”
/f
::reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell
Folders” /v “CD Burning” /d
“%UserFolderPath%\AppData\Local\Microsoft\Windows\Burn\Burn” /f
reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell
Folders” /v “Cookies” /d
“%UserFolderPath%\AppData\Roaming\Microsoft\Windows\Cookies” /f
::reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell
Folders” /v “History” /d
“%UserFolderPath%\AppData\Local\Microsoft\Windows\History” /f
::reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell
Folders” /v “Local AppData” /d
“%UserFolderPath%\AppData\Local” /f
::reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell
Folders” /v “NetHood” /d
“%UserFolderPath%\AppData\Roaming\Microsoft\Windows\Network Shortcuts” /f
::reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell
Folders” /v “PrintHood” /d
“%UserFolderPath%\AppData\Roaming\Microsoft\Windows\Printer Shortcuts” /f
::reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell
Folders” /v “Programs” /d “%UserFolderPath%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs” /f
::reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell
Folders” /v “Recent” /d
“%UserFolderPath%\AppData\Roaming\Microsoft\Windows\Recent” /f
::reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell
Folders” /v “SendTo” /d
“%UserFolderPath%\AppData\Roaming\Microsoft\Windows\SendTo” /f
::reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell
Folders” /v “Start Menu” /d
“%UserFolderPath%\AppData\Roaming\Microsoft\Windows\Start Menu” /f
::reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell
Folders” /v “Startup” /d
“%UserFolderPath%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup”
/f
::reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell
Folders” /v “Templates” /d
“%UserFolderPath%\AppData\Roaming\Microsoft\Windows\Templates”
/f
reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell
Folders” /v “{374DE290-123F-4565-9164-39C4925E467B}” /d
“%UserFolderPath%\Downloads” /f
reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell
Folders” /v “{4C5C32FF-BB9D-43B0-B5B4-2D72E54EAAA4}” /d
“%UserFolderPath%\Saved Games” /f
reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell
Folders” /v “{56784854-C6CB-462B-8169-88E350ACB882}” /d
“%UserFolderPath%\Contacts” /f
reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell
Folders” /v “{7D1D3A04-DEBB-4115-95CF-2F29DA2920DA}” /d
“%UserFolderPath%\Searches” /f
reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell
Folders” /v “{BFB9D5E0-C6A9-404C-B2B2-AE6DB6AF4968}” /d
“%UserFolderPath%\Links” /f
reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell
Folders” /v “Desktop” /d “%UserFolderPath%\Desktop”
/f
reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell
Folders” /v “Favorites” /d “%UserFolderPath%\Favorites”
/f
reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell
Folders” /v “My Music” /d “%UserFolderPath%\Music”
/f
reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell
Folders” /v “My Pictures” /d “%UserFolderPath%\Pictures”
/f
reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell
Folders” /v “My Video” /d “%UserFolderPath%\Videos”
/f
reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell
Folders” /v “Personal” /d “%UserFolderPath%\Documents”
/f
reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell
Folders” /v “PrintHood” /d
“%UserFolderPath%\AppData\Roaming\Microsoft\Windows\Printer Shortcuts” /f
::reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell
Folders” /v “AppData” /d
“%UserFolderPath%\AppData\Roaming” /f
reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell
Folders” /v “Cache” /d
“%UserFolderPath%\AppData\Local\Microsoft\Windows\Temporary Internet Files”
/f
reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell
Folders” /v “Cookies” /d
“%UserFolderPath%\AppData\Roaming\Microsoft\Windows\Cookies” /f
::reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell
Folders” /v “History” /d
“%UserFolderPath%\AppData\Local\Microsoft\Windows\History” /f
::reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell
Folders” /v “Local AppData” /d
“%UserFolderPath%\AppData\Local” /f
::reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell
Folders” /v “NetHood” /d
“%UserFolderPath%\AppData\Roaming\Microsoft\Windows\Network Shortcuts” /f
::reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell
Folders” /v “Programs” /d
“%UserFolderPath%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs” /f
::reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell
Folders” /v “Recent” /d
“%UserFolderPath%\AppData\Roaming\Microsoft\Windows\Recent” /f
::reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell
Folders” /v “SendTo” /d
“%UserFolderPath%\AppData\Roaming\Microsoft\Windows\SendTo” /f
::reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell
Folders” /v “Start Menu” /d
“%UserFolderPath%\AppData\Roaming\Microsoft\Windows\Start Menu” /f
::reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell
Folders” /v “Startup” /d
“%UserFolderPath%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup”
/f
::reg add
“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell
Folders” /v “Templates” /d
“%UserFolderPath%\AppData\Roaming\Microsoft\Windows\Templates”
/f
echo
注銷或重啟後生效!
pause>nul
3、mklink的另一種方法
如果你用的是Windows 7操作系統,還遇到想Windows 7操作系統中把“用戶檔夾”設置在非系統盤問題,沒關系。本文為你詳解Windows 7操作系統把“用戶檔夾”設置在非系統盤。
注意:以下假設你想把用戶檔夾設置在D盤,且假定D盤是NTFS分區。
一、在安裝Windows
7操作系統的過程中,要求輸入用戶名及密碼的時候,先不如輸入任何資訊,按“Shift+F10”呼出DOS視窗,輸入以下命令:
robocopy “C:\Users” “D:\Users” /E /COPYALL /XJ
rmdir “C:\Users” /S /Q
mklink /J “C:\Users” “D:\Users”
而後關閉DOS窗口,按部就班繼續安裝直至完成。
如此安裝的Windows 7操作系統,所有“用戶特殊檔夾”(User Special Folder)的內容都已經被設置在D盤(非系統盤)上。
二、如果想要移動已安裝好的Windows 7操作系統中的用戶檔夾,那麼就要按以下步驟操作(稍微麻煩一點,並且過程中可能會出現無法拷貝檔的情況):
0. 關閉所有應用程式;
1. 按一下“Windows”鍵,輸入“計算機管理”之後按“Enter”,呼出“計算機管理器”;
2.
鼠標點擊“Administrator”,選擇屬性,而後在隨後的對話框中去掉“帳戶已禁用”之前的勾,而後關閉“計算機管理器”;
3.
注銷當前用戶(注意,不是“切換用戶”),而後以“Administrator”登錄
4. 打開命令列窗口,輸入以下命令:robocopy
“C:\Users” “D:\Users” /E /COPYALL /XJ /XD “C:\Users\Administrator”
5.
注銷Administrator,重新用你的用戶名登錄Windows 7操作系統,而後到“計算機管理器”裡禁用Administrator;
6.
以管理員身份打開一個DOS視窗,輸入以下命令:
rmdir “C:\Users” /S /Q
mklink /J “C:\Users”
“D:\Users”
操作以上步驟,你就成功的完成Windows 7操作系統把“用戶檔夾”設置在非系統盤中。
也可以直接使用「個人文件轉移工具 pft_1.8」小軟件,可把常見的用戶資料夾搬遷到自訂位置:
DOS之家官方站: http://doshome.com/yj
本文引自:http://www.zreading.cn/ican/2010/01/win7-user-cut/
發佈留言