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.
This commit is contained in:
Namhyeon, Go 2025-12-01 15:12:08 +09:00
parent 1c7d9e3b32
commit b95de25502

View File

@ -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"