【轉】轉移Package Cache檔案夾,轉移Windows Installer檔案夾

來源:互聯網
上載者:User

標籤:

詳見http://blogs.msdn.com/b/heaths/archive/2014/02/11/how-to-relocate-the-package-cache.aspx

(注意:若Windows自動更新之後導致Windows installer檔案路徑找不到,可以在磁碟管理中,重新把installer的虛擬盤映射到C:\Windows installer)

 

在CMD開啟diskpart工具

diskpart

 

建立一個最大為16G空間的虛擬磁碟

create vdisk file="E:\VHD\Cache.vhd" type=expandable maximum=16384

 

串連並建立分區

select vdisk file="E:\VHD\Cache.vhd"

attach vdisk

create partition primary

 

格式化分區,卷名Package Cache,盤符P

format fs=ntfs label="Package Cache" quick 

assign letter=P

exit

 

拷貝Package Cache到剛建立的虛擬磁碟P中

robocopy "%ProgramData%\Package Cache" P:\ /e /copyall /move /zb

 

...等待.....

 

mkdir "%ProgramData%\Package Cache" 

echo y | cacls foo /s:"O:BAG:DUD:PAI(A;OICIID;FA;;;BA)(A;OICIID;FA;;;SY)(A;OICIID;FRFX;;;BU)(A;OICIID;FRFX;;;WD)"

 

查看P盤的GUID

mountvol 

並將Package Cache目錄指向

mountvol "%ProgramData%\Package Cache" \\?\Volume{xxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}\

 

卸載盤符P

diskpart

select vdisk file="E:\VHD\Cache.vhd" 

select partition 1

remove letter=P

exit

 

 

開機自動掛載虛擬磁碟,並刪除盤符

echo select vdisk file=E:\VHD\Cache.vhd > E:\VHD\Cache.txt

echo attach vdisk >> E:\VHD\Cache.txt

schtasks /create /ru system /sc onstart /rl highest /tn "Attach Package Cache" /tr "%SystemRoot%\System32\diskpart.exe /s E:\VHD\Cache.txt"

 

 

 

 

 

同以此方法,建立C:\Windows\Installer的虛擬磁碟

 

在CMD開啟diskpart工具

diskpart

 

建立一個最大為16G空間的虛擬磁碟

create vdisk file="E:\VHD\Installer.vhd" type=expandable maximum=16384

 

串連並建立分區

select vdisk file="E:\VHD\Installer.vhd" 

attach vdisk

create partition primary

 

格式化分區,卷名Package Cache,盤符Q

format fs=ntfs label="Installer" quick 

assign letter=Q

exit

 

拷貝Package Cache到剛建立的虛擬磁碟Q中

robocopy "C:\Windows\Installer" Q:\ /e /copyall /move /zb

 

...等待.....

 

mkdir "C:\Windows\Installer" 

echo y | cacls foo /s:"O:BAG:DUD:PAI(A;OICIID;FA;;;BA)(A;OICIID;FA;;;SY)(A;OICIID;FRFX;;;BU)(A;OICIID;FRFX;;;WD)"

 

查看P盤的GUID

mountvol 

並將Installer目錄指向

mountvol "C:\Windows\Installer" \\?\Volume{xxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}\

 

卸載盤符P

diskpart

select vdisk file="E:\VHD\Installer.vhd" 

select partition 1

remove letter=Q

exit

 

 

開機自動掛載虛擬磁碟,並刪除盤符

echo select vdisk file=E:\VHD\Installer.vhd > E:\VHD\Installer.txt

echo attach vdisk >> E:\VHD\Installer.txt

schtasks /create /ru system /sc onstart /rl highest /tn "Attach Installer" /tr "%SystemRoot%\System32\diskpart.exe /s E:\VHD\Installer.txt"

【轉】轉移Package Cache檔案夾,轉移Windows Installer檔案夾

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.