Windows 7:使用 unattend.xml 在安装过程中移动程序文件位置

Windows 7:使用 unattend.xml 在安装过程中移动程序文件位置

我计划使用 unattend.xml 创建 Windows 7 Ultimate 64 位安装程序用户程序数据在第二次驾驶中。

我发现了许多如何做到这一点的示例(见下文)。

不过我也想搬家程序文件也可以到第三个驱动器。

IE:

C:\Windows             [SSD]

D:\Users               [HDD1]
D:\ProgramData         [HDD1]

P:\Program Files       [HDD2]
P:\Program Files (x86) [HDD2]

我发现在 XP 中使用 unattend.txt 可以实现这一点,但我找到的有关 Win 7 的所有文档或示例都只提到用户程序数据, 不是程序文件

使用应答文件可以实现这个功能吗?

示例 unattend.xml用户程序数据

<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
 <settings pass="oobeSystem">
  <component name="Microsoft-Windows-Shell-Setup" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" processorArchitecture="amd64">
   <FolderLocations>
    <ProfilesDirectory>D:\Users</ProfilesDirectory>
    <ProgramData>D:\ProgramData</ProgramData>
   </FolderLocations>
  </component>
 </settings>
</unattend>

答案1

好吧,我没时间了,只能用用户程序数据设置

我手动将每个安装更改为 P:\

如果其他人有答案,请发布以供将来参考!

相关内容