|
Available from version |
0.0.12 |
|---|---|
|
Necessity |
Optional |
Description
The setting defines additional remarks sources that are loaded alongside the primary data source specified by Remarks. A separate data source is created for each entry.
Each entry supports the same data source types as Remarks (HTTP/HTTPS URL, local file path, Azure Blob Storage), including the option to specify a fallback path.
Example
Bash
defaults write "ibi.aws.client" "AdditionalRemarks" -array "https://server.example.internal/remarks2.ibi" "/Path/To/remarks3.ibi"
Example (MDM)
XML
...
<dict>
<key>mcx_preference_settings</key>
<dict>
<key>AdditionalRemarks</key>
<array>
<string>https://server.example.internal/remarks2.ibi</string>
<string>/Path/To/remarks3.ibi</string>
</array>
</dict>
</dict>
...