遠離C目錄日記4 6 2020

2021-10-04 19:32:52 字數 3745 閱讀 7277

作業系統的自己全新(format)安裝

個人需求為之後(新)安裝軟體不在以下目錄產生檔案體積:

%windows%\installer

%windows%\softwaredistribution

%programdata%

%program files%\common files

%program files (x86)%\common files

使用系統內建administrator賬戶操作 / 在安全模式下操作

第一步:把原

installer

softwaredistribution

programdata

program files

program files (x86)目錄中的所有資料照原樣拷貝過去:xcopy;

xcopy c:\windows\installer d:\sysdir\installer\ /e /h /k /x /y /b /c

xcopy c:\windows\softwaredistribution d:\sysdir\softwaredistribution\ /e /h /k /x /y /b /c

xcopy c:\programdata d:\programdata\ /e /h /k /x /y /b /c

xcopy 「c:\program files」 「d:\program files\」 /e /h /k /x /y /b /c

xcopy 「c:\program files (x86)」 「d:\program files (x86)\」 /e /h /k /x /y /b /c

hkey_current_user\software\microsoft\windows\currentversion\explorer\shell folders

hkey_current_user\software\microsoft\windows\currentversion\explorer\user shell folders

【programdata】

hkey_local_machine\software\microsoft\windows nt\currentversion\profilelist

[hkey_local_machine\software\microsoft\windows nt\currentversion\profilelist] 下的 programdata 資料

原為 %systemdrive%\programdata,

改為 d:\programdata

hkey_local_machine\software\microsoft\windows\currentversion\explorer\shell folders

【programfilesdir】【commonfilesdir】

【programfilesdir (x86)】【commonfilesdir (x86)】

computer\hkey_local_machine\software\microsoft\windows\currentversion

computer\hkey_local_machine\software\wow6432node\microsoft\windows\currentversion

如:

cmd /c junction64 c:\windows\installer d:\sysdir\installer

cmd /c junction64 c:\windows\softwaredistribution d:\sysdir\softwaredistribution

重啟電腦

注意項:按個人需求修改,一樣無益

以上參考了

題外:又想安裝和使用軟體,又想在作業系統盤完全不展開任何檔案的使用它

mulithis

cmd(administrator)指令[pe下操作]

xcopy c:\users d:\users\ /e /h /k /x /y /b /c

rmdir 「c:\users」 /s /q

mklink /j 「c:\users」 「d:\users」

xcopy c:\programdata d:\programdata\ /e /h /k /x /y /b /c

rmdir 「c:\programdata」 /s /q

mklink /j 「c:\programdata」 「d:\programdata」

xcopy 「c:\program files (x86)」 「d:\program files (x86)」 /e /h /k /x /y /b /c

rmdir 「c:\program files (x86)」 /s /q

mklink /j 「c:\program files (x86)」 「d:\program files (x86)」

xcopy 「c:\program files」 「d:\program files」 /e /h /k /x /y /b /c

rmdir 「c:\program files」 /s /q

mklink /j 「c:\program files」 「d:\program files」

xcopy c:\windows\installer d:\sysdir\installer\ /e /h /k /x /y /b /c

rmdir 「c:\windows\installer」 /s /q

mklink /j 「c:\windows\installer」 「d:\windows\installer」

xcopy c:\windows\softwaredistribution d:\sysdir\softwaredistribution\ /e /h /k /x /y /b /c

rmdir 「c:\windows\softwaredistribution」 /s /q

mklink /j 「c:\windows\softwaredistribution」 「d:\windows\softwaredistribution」

修改了

C 學習日記

1611 3 李旗偉 2016年10月5日 連續5天總結 內容a.概括 a 運算子與表示式80 b 流程控制語句45 b.具體內容 在進行了對運算子與表示式的學習後,嘗試了簡單的資料輸入,但結果總是出人預料,自認為會成功的每次運算失敗,搞得我都快失去信心了,還好我知道凡事要堅持,只因心中有夢,才堅持...

C 學習日記

1611 3 李旗偉 2016年10月6日 連續6天總結 內容a.概括 a 程式的基本控制結構95 b 選擇結構60 b.具體內容 以昨天所學為基礎,今日了另乙個世界的學習 流程控制結構。今天,主要學習了程式的基本控制結構,對此已有了基本的認識,並且嘗試了輸入,也小有成績。此外,還對選擇結構進行了淺...

C 學習日記

1611 3 李旗偉 2016年10月7日 連續7天總結 內容a.概括 a 選擇結構100 b 迴圈結構80 c 控制執行順序的語句40 b.具體內容 今天,首先將昨天的殘留完成了 選擇結構,其次,學習了迴圈結構,並基本掌握其知識要領,然後簡單地進行了控制執行順序的語句的粗略了解,雖然幾乎沒弄清楚,...