AUSST 用例和命令参考

上次更新日期: 2026年8月14日

使用 AUSST 命令进行增量同步、产品筛选条件和清理操作。

配置 Adobe Update Server Setup Tool (AUSST) 时使用这些常用参考,以针对特定产品、版本或组进行选择性同步。AUSST 同步当前 Adobe 桌面应用程序和每个应用程序的最新上一个主要版本,Adobe Acrobat 除外,仅下载其当前版本。AUSST 不会同步我们不再销售的应用程序的更新。查找可供下载的应用程序的链接。

使用这些命令之前,您必须已执行一次性 --fresh 同步来设置内部更新服务器

完成初始设置后,使用增量同步从 Adobe Update Server 仅下载新的应用程序版本和更新:

WindowsAdobeUpdateServerSetupTool.exe --root="C:\inetpub\wwwroot\updates" --incremental

macOSAdobeUpdateServerSetupTool --root="/Library/WebServer/Documents/ausst/" --incremental

以下命令包含 SAP 代码(例如,产品 Photoshop 的 SAP 代码为 PHSP)。如果需要,请获取 SAP 代码的完整列表

用例

命令

同步所有产品和更新

旧版产品除外。

AdobeUpdateServerSetupTool.exe --root="<根文件夹>" --incremental

同步特定产品的最新更新。示例:Photoshop

AdobeUpdateServerSetupTool.exe --root="<根文件夹>" --incremental --filterProducts=<sap 代码>

 

AdobeUpdateServerSetupTool.exe --root="C:\inetpub\wwwroot\updates" --incremental --filterProducts="PHSP"

仅为特定组同步产品的最新版本。

AdobeUpdateServerSetupTool.exe --root="C:\inetpub\wwwroot\updates" --incremental --filterProducts="g1(PHSP)"

仅同步特定组的产品特定版本。为此,请指定 SAP 代码、主版本和子版本。

示例:组名:g1。 Photoshop v18.1.3。

PHSP#18.0#18.1.3

AdobeUpdateServerSetupTool.exe --root="C:\inetpub\wwwroot\updates" --incremental --filterProducts="g1(PHSP#18.0#18.1.3)"

为 g1 组生成客户端配置文件。

使用适用的产品版本,而不是指示性的 g1 版本。

AdobeUpdateServerSetupTool.exe --root="<root folder>" --genclientconf="<output folder>" --url="<URL Path to root folder>" --groupName=g1

为不同组同步不同版本。示例:组 g1 的 PHSP 18.3.1。为 g2 组同步 Dreamweaver 的最新版本。

 

使用适用的产品版本,而不是指示性的 g1 版本。

AdobeUpdateServerSetupTool.exe --root="<根文件夹>" --genclientconf="<输出文件夹>" --url="<根文件夹的 URL 路径>" -- groupName=g1

 

AdobeUpdateServerSetupTool.exe --root="<根文件夹>" --genclientconf="<输出文件夹>" --url="<根文件夹的 URL 路径>" -- groupName=g2

 

AdobeUpdateServerSetupTool.exe --root="C:\inetpub\wwwroot\updates" --incremental --filterProducts="g1(PHSP#18.0#18.1.3)|g2(DRWV)"

同步之前创建的群组的所有产品。

如果您已定义筛选条件/群组,使用增量选项时将会保留它们。

AdobeUpdateServerSetupTool.exe --root="<根文件夹>" --incremental

同步不属于任何组的所有产品和更新。 它会移除所有筛选条件/群组,并同步所有最新的应用程序和产品。

AdobeUpdateServerSetupTool.exe --root="<root folder>" --incremental --filterProducts="()"

获取包含产品的所有组。 在 filterFilePath 位置创建文件 groups.xml

AdobeUpdateServerSetupTool.exe --root="<root folder>" --gengroupconfig --filterFilePath="<output folder>\groups.xml"

删除不需要的过时产品.

AdobeUpdateServerSetupTool.exe --root="<root folder>" --cleanup

  • 清理选项根据与增量选项一起使用的最后一个过滤器删除在AUST服务器上下载的产品。 这意味着,要执行清理任务,您必须在增量选项的单独命令中运行它。
    此外,如果要在清理操作后保留某些产品,则必须在 filterProducts 中指定这些产品作为 incremental 选项的一部分。
    示例:要清理除 Photoshop 和 Illustrator 以外的所有产品,请分别运行以下命令:
  1. AdobeUpdateServerSetupTool.exe --root="<root folder>" --incremental --filterProducts="PHSP, ILST"
  2. AdobeUpdateServerSetupTool.exe --root="<root folder>" --cleanup
  • 由于不得紧接在 incremental 后使用 cleanup 选项,因此可检查上次与 incremental 选项一起使用的过滤器,如下所示:
    在命令窗口 (Windows) 或终端 (macOS) 中,运行以下命令:
    Windows
    powershell -command "& {Get-Content <ffc.xml 文件的路径> -Tail 5}"
    如果 FFC 文件在服务器上,则示例路径为:/<server>/ACC/services/ffc/products/ffc.xml
    macOS
    tail -f <ffc.xml 文件的路径>
    如果 FFC 文件在服务器上,则示例路径为:/<server>/ACC/services/ffc/products/ffc.xml
    这些命令将显示 ffc.xml 文件的最后几行
显示过滤器命令的 FFC XML 文件

  • 当您使用清理选项时,您将收到以下提示:

要避免此提示,请使用 slient 选项:

AdobeUpdateServerSetupTool.exe --root="<root folder>" --cleanup --silent

 

清理操作用例和命令

根据增量选项应用的上次过滤器,从 AUSST 服务器移除过时的产品。--cleanup 选项必须在增量操作后以单独的命令运行

AdobeUpdateServerSetupTool.exe --root="<root folder>" --cleanup

要在清理操作后保留某些产品,请在增量选项中将这些产品指定为 filterProducts 的一部分,并运行单独的命令。例如,要清理除 Photoshop 和 Illustrator 之外的所有产品,请分别运行以下命令:

  • AdobeUpdateServerSetupTool.exe --root="<root folder>" --incremental --filterProducts="PHSP, ILST"
  • AdobeUpdateServerSetupTool.exe --root="<root folder>" --cleanup

要检查您上次使用增量选项时使用的筛选器,请根据您的操作系统参考以下命令。

注释

例如,FFC 文件用作服务器路径

Windows:powershell -command "& {Get-Content <path for ffc.xml file> -Tail 5}"

示例:/<server>/ACC/services/ffc/products/ffc.xml

macOS: tail -f <ffc.xml 文件的路径>

示例: /<server>/ACC/services/ffc/products/ffc.xml

以下屏幕显示部分命令行
上述命令显示 ffc.xml 的最后几行

使用清理选项时,您将看到以下提示:

在清理选项期间会显示提示代码,需要输入才能继续。
清理提示需要输入才能继续。

要避免此提示,请使用静默选项:

AdobeUpdateServerSetupTool.exe --root="<根文件夹>" --cleanup –silent