Windows에서 에이전트를 설치 제거하는 두 가지 방법이 있습니다. 이 두 방법 모두 에이전트를 제거하나 호스트에 있는 C:\ProgramData\Datadog
구성 폴더를 제거하지 않습니다.
프로그램 추가 또는 제거
- CTRL 및 Esc 키를 누르거나 Windows 키를 사용해 Windows Search를 실행합니다.
add
를 검색하고 프로그램 추가 또는 제거를 클릭합니다.Datadog Agent
를 검색하고 제거를 클릭합니다.
PowerShell
참고: WinRM을 활성화해 다음 명령을 사용합니다.
다음 PowerShell 명령의 하나를 사용해 재부팅하지 않고 에이전트를 제거할 수 있습니다.
start-process msiexec -Wait -ArgumentList ('/log', 'C:\uninst.log', '/q', '/x', (Get-CimInstance -ClassName Win32_Product -Filter "Name='Datadog Agent'" -ComputerName .).IdentifyingNumber, 'REBOOT=ReallySuppress')
/norestart
사용:
start-process msiexec -Wait -ArgumentList ('/log', 'C:\uninst.log', '/norestart', '/q', '/x', (Get-CimInstance -ClassName Win32_Product -Filter "Name='Datadog Agent'" -ComputerName .).IdentifyingNumber)
Windows에서 에이전트를 설치 제거하는 두 가지 방법이 있습니다. 이 두 방법 모두 에이전트를 제거하나 호스트에 있는 C:\ProgramData\Datadog
구성 폴더를 제거하지 않습니다.
참고: 에이전트 < v5.12.0의 경우, 에이전트를 설치할 때 사용한 원 계정으로 에이전트를 설치 제거해야 합니다. 그러지 않으면 완벽하게 제거되지 않을 수 있습니다.
프로그램 추가 또는 제거
- CTRL 및 Esc 키를 누르거나 Windows 키를 사용해 Windows Search를 실행합니다.
add
를 검색하고 프로그램 추가 또는 제거를 클릭합니다.Datadog Agent
를 검색하고 제거를 클릭합니다.
PowerShell
참고: WinRM을 활성화해 다음 명령을 사용합니다.
다음 PowerShell 명령을 사용해 재부팅하지 않고 에이전트를 제거할 수 있습니다.
start-process msiexec -Wait -ArgumentList ('/log', 'C:\uninst.log', '/norestart', '/q', '/x', (Get-CimInstance -ClassName Win32_Product -Filter "Name='Datadog Agent'" -ComputerName .).IdentifyingNumber)