ページの先頭行へ戻る
Systemwalker Software Configuration Manager リファレンスガイド
Systemwalker

2.5 パッチ管理ポリシー定義ファイル

ファイル名

patch_management_policy.xml

使用用途

WSUSで提供されている各更新クラスに対する適用レベルを設定します。

適用レベルは、Systemwalker Software Configuration Managerによるパッチ管理上の重要度による分類であり、更新クラスごとに「必須」と「推奨」を指定します。

WSUSの更新クラスには以下の種類があり、デフォルトでの適用レベルは次の通りです。

更新クラス

適用レベル

セキュリティ問題の修正プログラム

必須

重要な更新

必須

Feature Packs

推奨

Service Packs

推奨

ツール

推奨

ドライバ

推奨

更新

推奨

修正プログラム集

推奨

定義更新プログラム

推奨

格納場所

【Windows】

[Systemwalker Software Configuration Managerインストールディレクトリ]\config

※デフォルトの場合はC:\Fujitsu\Systemwalker\SWCFMGM

ファイル形式

<?xml version="1.0" encoding="UTF-8"?>
<policies>
  <RepositoryServer>
    <WSUS>
      <SecurityUpdate>
        <entry key="applyLevel">[パッチ適用レベル]</entry>
      </SecurityUpdate>
      <CriticalUpdate>
        <entry key="applyLevel">[パッチ適用レベル]</entry>
      </CriticalUpdate>
      <FeaturePack>
        <entry key="applyLevel">[パッチ適用レベル]</entry>
      </FeaturePack>
      <ServicePack>
        <entry key="applyLevel">[パッチ適用レベル]</entry>
      </ServicePack>
      <Tool>
        <entry key="applyLevel">[パッチ適用レベル]</entry>
      </Tool>
      <Driver>
        <entry key="applyLevel">[パッチ適用レベル]</entry>
      </Driver>
      <Update>
        <entry key="applyLevel">[パッチ適用レベル]</entry>
      </Update>
      <UpdateRollup>
        <entry key="applyLevel">[パッチ適用レベル]</entry>
      </UpdateRollup>
      <DefinitionUpdate>
        <entry key="applyLevel">[パッチ適用レベル]</entry>
      </DefinitionUpdate>
    </WSUS>
  </RepositoryServer>
</policies>

パラメーター

各タグとキーの内容は以下の通りです。

タグ

意味

備考

Policies

ポリシー情報です。

タグは必須です。

RepositoryServer

リポジトリサーバ情報です。

タグは必須です。

WSUS

WSUS情報です。

タグは必須です。

SecurityUpdate

「セキュリティ問題の修正プログラム」の情報です。

タグは必須です。

CriticalUpdate

「重要な更新」の情報です。

タグは必須です。

ServicePack

「Feature Packs」の情報です。

タグは必須です。

FeaturePack

「Service Packs」の情報です。

タグは必須です。

Tool

「ツール」の情報です。

タグは必須です。

Driver

「ドライバ」の情報です。

タグは必須です。

Update

「更新」の情報です。

タグは必須です。

UpdateRollup

「修正プログラム集」の情報です。

タグは必須です。

DefinitionUpdate

「定義更新プログラム」の情報です。

タグは必須です。

キー

意味

省略値

備考

applyLevel

パッチの適用レベルを指定します。

1:必須

2:推奨

2

注意事項

使用例

<?xml version="1.0" encoding="UTF-8"?>
<policies>
  <RepositoryServer>
    <WSUS>
      <SecurityUpdate>
        <entry key="applyLevel">1</entry>
      </SecurityUpdate>
      <CriticalUpdate>
        <entry key="applyLevel">1</entry>
      </CriticalUpdate>
      <FeaturePack>
        <entry key="applyLevel">2</entry>
      </FeaturePack>
      <ServicePack>
        <entry key="applyLevel">2</entry>
      </ServicePack>
      <Tool>
        <entry key="applyLevel">2</entry>
      </Tool>
      <Driver>
        <entry key="applyLevel">2</entry>
      </Driver>
      <Update>
        <entry key="applyLevel">2</entry>
      </Update>
      <UpdateRollup>
        <entry key="applyLevel">2</entry>
      </UpdateRollup>
      <DefinitionUpdate>
        <entry key="applyLevel">2</entry>
      </DefinitionUpdate>
    </WSUS>
  </RepositoryServer>
</policies>