8000 DOCS-10440 - Windows Agent installation by iadjivon · Pull Request #29329 · DataDog/documentation · GitHub
[go: up one dir, main page]

Skip to content

DOCS-10440 - Windows Agent installation #29329

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/en/agent/basic_agent_usage/windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ When the install finishes, you are given the option to launch the Datadog Agent
1. Open PowerShell with **Administrator** privileges.
2. Run the following command to install the D 5AAA atadog Agent:
{{< code-block lang="powershell" >}}
$p = Start-Process -Wait -PassThru msiexec -ArgumentList '/qn /i https://windows-agent.datadoghq.com/datadog-agent-7-latest.amd64.msi /log C:\Windows\SystemTemp\install-datadog.log APIKEY="<DATADOG_API_KEY>"'
$p = Start-Process -Wait -PassThru msiexec -ArgumentList '/qn /i https://windows-agent.datadoghq.com/datadog-agent-7-latest.amd64.msi /log C:\Windows\SystemTemp\install-datadog.log APIKEY="<DATADOG_API_KEY>" SITE="<DATADOG_SITE>"'
if ($p.ExitCode -ne 0) {
Write-Host "msiexec failed with exit code $($p.ExitCode) please check the logs at C:\Windows\SystemTemp\install-datadog.log" -ForegroundColor Red
}
Expand Down
Loading
0