From b95de25502ef0ff3964c166a4756d5ccf95883e3 Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Mon, 1 Dec 2025 15:12:08 +0900 Subject: [PATCH] Update telemetry event properties in postInstall.ps1 Replaces the $process_person_profile property with a product property set to 'welsonjs' in the telemetry event payload for PostHog. This clarifies the product being tracked during installation. --- postInstall.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postInstall.ps1 b/postInstall.ps1 index 3a16ca4..d4406c5 100644 --- a/postInstall.ps1 +++ b/postInstall.ps1 @@ -99,7 +99,7 @@ if ($TelemetryProvider -and $TelemetryProvider.ToLower() -eq "posthog") { event = "app_installed" distinct_id = $finalDistinctId properties = @{ - "$process_person_profile" = $false # Anonymous event (no person profile) + product = "welsonjs" version = $Version os = "windows" source = "post-install.ps1"