Skip to content

Commit 346fafd

Browse files
authored
Update _index.md (#30611)
The run command for a silent Windows Private Location Installation via CLI is incorrect and inconsistent with the required deployment property for the worker configuration filepath. WORKERCONFIG_FILEPATH has been corrected to the below, as has the filepath recommendation, which should point the the config the user has downloaded via the UI. The service will not install correctly with WORKERCONFIG_FILEPATH. CONFIG_FILEPATH=<path_to_your_worker_config_file>
1 parent a0ca29c commit 346fafd

File tree

1 file changed

+3
-3
lines changed
  • content/en/synthetics/platform/private_locations

1 file changed

+3
-3
lines changed

content/en/synthetics/platform/private_locations/_index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -645,13 +645,13 @@ Once the process is complete, click **Finish** on the installation completion pa
645645
- In a PowerShell Terminal:
646646

647647
```powershell
648-
Start-Process msiexec "/i datadog-synthetics-worker-{{< synthetics-worker-version "synthetics-windows-pl" >}}.amd64.msi /quiet /qn WORKERCONFIG_FILEPATH=C:\ProgramData\Datadog-Synthetics\worker-config.json";
648+
Start-Process msiexec "/i datadog-synthetics-worker-{{< synthetics-worker-version "synthetics-windows-pl" >}}.amd64.msi /quiet /qn CONFIG_FILEPATH=<path_to_your_worker_config_file>";
649649
```
650650

651651
- Or in a Command Terminal:
652652

653653
```cmd
654-
msiexec /i datadog-synthetics-worker-{{< synthetics-worker-version "synthetics-windows-pl" >}}.amd64.msi /quiet /qn WORKERCONFIG_FILEPATH=C:\ProgramData\Datadog-Synthetics\worker-config.json
654+
msiexec /i datadog-synthetics-worker-{{< synthetics-worker-version "synthetics-windows-pl" >}}.amd64.msi /quiet /qn CONFIG_FILEPATH=<path_to_your_worker_config_file>
655655
```
656656

657657
Additional parameters can be added:
@@ -663,7 +663,7 @@ Additional parameters can be added:
663663
| LOGGING_ENABLED | When enabled, this configures file logging. These logs are stored in the installation directory under the logs folder. | 0 | `--enableFileLogging` | 0: Disabled<br>1: Enabled |
664664
| LOGGING_VERBOSITY | Configures the logging verbosity for the program. This affects console and file logs. | This affects console and file logs. | `-vvv` | `-v`: Error<br>`-vv`: Warning<br>`-vvv`: Info<br>`vvvv`: Debug |
665665
| LOGGING_MAXDAYS | Number of days to keep file logs on the system before deleting them. Can be any number when running an unattended installation. | 7 | `--logFileMaxDays` | Integer |
666-
| WORKERCONFIG_FILEPATH | This should be changed to the path to your Synthetics Private Location Worker JSON configuration file. Wrap this path in quotes if your path contains spaces. | <None> | `--config` | String |
666+
| CONFIG_FILEPATH | This should be changed to the path to your Synthetics Private Location Worker JSON configuration file. Wrap this path in quotes if your path contains spaces. | <None> | `--config` | String |
667667

668668
[101]: https://ddsynthetics-windows.s3.amazonaws.com/datadog-synthetics-worker-{{< synthetics-worker-version "synthetics-windows-pl" >}}.amd64.msi
669669

0 commit comments

Comments
 (0)