fleet/ee/maintained-apps/outputs/inkscape/windows.json
fleet-release 1258a68ab8
Update Fleet-maintained apps (#37738)
Automated ingestion of latest Fleet-maintained app data.

Co-authored-by: mostlikelee <16102903+mostlikelee@users.noreply.github.com>
2025-12-29 21:55:10 -06:00

22 lines
1.9 KiB
JSON

{
"versions": [
{
"version": "1.4.3",
"queries": {
"exists": "SELECT 1 FROM programs WHERE name = 'Inkscape' AND publisher = 'Inkscape';"
},
"installer_url": "https://media.inkscape.org/dl/resources/file/inkscape-1.4.3.msi",
"install_script_ref": "8959087b",
"uninstall_script_ref": "57fe5f4f",
"sha256": "d80842f349bec6505129e48a56495c6f337884693e5a18e505dbbc5d7afc2266",
"default_categories": [
"Productivity"
],
"upgrade_code": "{4D5FEDAA-84A0-48BE-BD2A-08246398361A}"
}
],
"refs": {
"57fe5f4f": "# Fleet uninstalls app by finding all related product codes for the specified upgrade code\n$inst = New-Object -ComObject \"WindowsInstaller.Installer\"\n$timeoutSeconds = 300 # 5 minute timeout per product\n\nforeach ($product_code in $inst.RelatedProducts(\"{4D5FEDAA-84A0-48BE-BD2A-08246398361A}\")) {\n $process = Start-Process msiexec -ArgumentList @(\"/quiet\", \"/x\", $product_code, \"/norestart\") -PassThru\n \n # Wait for process with timeout\n $completed = $process.WaitForExit($timeoutSeconds * 1000)\n \n if (-not $completed) {\n Stop-Process -Id $process.Id -Force -ErrorAction SilentlyContinue\n Exit 1603 # ERROR_UNINSTALL_FAILURE\n }\n \n # If the uninstall failed, bail\n if ($process.ExitCode -ne 0) {\n Write-Output \"Uninstall for $($product_code) exited $($process.ExitCode)\"\n Exit $process.ExitCode\n }\n}\n\n# All uninstalls succeeded; exit success\nExit 0\n",
"8959087b": "$logFile = \"${env:TEMP}/fleet-install-software.log\"\n\ntry {\n\n$installProcess = Start-Process msiexec.exe `\n -ArgumentList \"/quiet /norestart /lv ${logFile} /i `\"${env:INSTALLER_PATH}`\"\" `\n -PassThru -Verb RunAs -Wait\n\nGet-Content $logFile -Tail 500\n\nExit $installProcess.ExitCode\n\n} catch {\n Write-Host \"Error: $_\"\n Exit 1\n}\n"
}
}