Docs » Splunk Distribution of the OpenTelemetry Collector の利用開始 » Collector for Windowsを使い始める » Collector for Windows のアンインストール

Collector for Windows のアンインストール 🔗

以下の手順に従って、Splunk Distribution of the OpenTelemetry Collector for Windows をアンインストールしてください。

Windowsのコントロールパネルを使用してアンインストールする 🔗

If you installed the Collector with the installer script, the Collector can be uninstalled from Programs and Features in the Windows Control Panel. The configuration files might persist in \ProgramData\Splunk\OpenTelemetry Collector and \opt\td-agent after uninstall.

PowerShellを使ってアンインストールする 🔗

PowerShell を使用して Collector for Windows をアンインストールすることもできます:

$MyProgram = Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\uninstall\* | Where { $_.DisplayName -eq "Splunk OpenTelemetry Collector" }

if (!$MyProgram) { throw "Splunk OpenTelemetry Collector is not installed" }

cmd /c $MyProgram.UninstallString

このページは 2025年04月10日 に最終更新されました。