メイン コンテンツにスキップ

無人インストールとアンインストール

Glasswall Meteor は、Windows Command Line Interface (CLI) を使用してサイレントインストールおよびアンインストールすることもできます。

インストール

無人インストールとは、ユーザーの介入なしにソフトウェアをインストールする手順です。

例: "Glasswall Meteor Setup.exe" /S /D="D:\My Files" --force-run

/S :silent
/D :install directory
/allusers - Install for all users (requires command to be executed as Admin)
/currentuser - Install for current user only (default)
--force-run :to run directly after installation

アンインストール

Windows では、アンインストーラーは推奨インストールディレクトリに用意されています。上記の例では、D:\My Files にあります。

デフォルトのインストールパスについては、付録 A を参照してください。

例: "D:\My Files\Uninstall Glasswall Meteor.exe” /S

/S :silent

定義済み設定

システム管理者は、ユーザーが UI 内で変更を行えないよう制限する設定でソフトウェアをインストールしたい場合があります。ソース JSON ファイルを参照でき、これはインストールコマンドの実行中に ../AppData/Roaming/Glasswall Meteor パス配下の ‘config’ フォルダーにコピーされます。

例: "Glasswall Meteor Setup 3.0.0.exe" /ConfigPath="C:\config.json"

デフォルトでは無効になっているサンプル config ファイルが、デフォルトで同じディレクトリにコピーされるため、‘ConfigPath’ の場所を指定する必要はありません。これは有効な config のテンプレートとして使用できます。

config ディレクトリに作成されるデフォルトの ‘config.json’ ファイルのサンプル:

{
"configActive": false,
"readOnlyUI": true,
"policyEditable": false,
"defaultManualCleanFolder": "C:\\Users\\userabc\\Desktop\\clean",
"auditFolder": "C:\\Users\\userabc\\Documents\\audit",
"Syncs": {
"syncId1": {
"name": "examplesync1",
"sourceFolder": "C:\\Users\\userabc\\Documents\\examplesource1",
"destFolder": "C:\\Users\\userabc\\Documents\\exampledest1"
},
"syncId2": {
"name": "examplesync2",
"sourceFolder": "C:\\Users\\userabc\\Documents\\examplesource2",
"destFolder": "C:\\Users\\userabc\\Documents\\exampledest2"
},
"syncId3": {
"name": "examplesync3",
"sourceFolder": "C:\\Users\\userabc\\Documents\\examplesource3",
"destFolder": "C:\\Users\\userabc\\Documents\\exampledest3"
},
"syncId4": {
"name": "examplesync4",
"sourceFolder": "C:\\Users\\userabc\\Documents\\examplesource4",
"destFolder": "C:\\Users\\userabc\\Documents\\exampledest4"
},
"syncId5": {
"name": "examplesync5",
"sourceFolder": "C:\\Users\\userabc\\Documents\\examplesource5",
"destFolder": "C:\\Users\\userabc\\Documents\\exampledest5"
}
}
}

例の説明:

  • この設定は現在無効であるため、起動時には無視されます。

  • ユーザーインターフェースは読み取り専用であり、ファイルパスは変更できません。

  • コンテンツ管理 policy は編集できません。

  • デフォルトの手動クリーンフォルダーは "C:\Users\userabc\Desktop\clean" にあります。

  • 監査フォルダーは "C:\Users\userabc\Documents\audit" にあります。

  • 5 つの sync が定義されており、それぞれに一意の sync ID があります。

    • 各 sync には、名前、ソースフォルダー、および宛先フォルダーがあります。
    • ソースフォルダーと宛先フォルダーは、ユーザーのコンピューター上のファイルパスを使用して指定されます。