diff --git a/ee/maintained-apps/inputs/winget/chrome-remote-desktop.json b/ee/maintained-apps/inputs/winget/chrome-remote-desktop.json new file mode 100644 index 0000000000..a76851c5de --- /dev/null +++ b/ee/maintained-apps/inputs/winget/chrome-remote-desktop.json @@ -0,0 +1,10 @@ +{ + "name": "Chrome Remote Desktop", + "slug": "chrome-remote-desktop/windows", + "package_identifier": "Google.ChromeRemoteDesktopHost", + "unique_identifier": "Chrome Remote Desktop Host", + "installer_arch": "x86", + "installer_type": "msi", + "installer_scope": "machine", + "default_categories": ["Productivity"] +} diff --git a/ee/maintained-apps/outputs/apps.json b/ee/maintained-apps/outputs/apps.json index cbf027e8dd..488b8bf799 100644 --- a/ee/maintained-apps/outputs/apps.json +++ b/ee/maintained-apps/outputs/apps.json @@ -477,6 +477,13 @@ "unique_identifier": "com.openai.chat", "description": "ChatGPT Desktop is OpenAI's official ChatGPT desktop app for macOS, providing seamless access to AI-powered conversations and assistance." }, + { + "name": "Chrome Remote Desktop", + "slug": "chrome-remote-desktop/windows", + "platform": "windows", + "unique_identifier": "Chrome Remote Desktop Host", + "description": "Chrome Remote Desktop is an app that allows admins to help troubleshoot through the Google Chrome browser." + }, { "name": "Cisco Jabber", "slug": "cisco-jabber/darwin", diff --git a/ee/maintained-apps/outputs/chrome-remote-desktop/windows.json b/ee/maintained-apps/outputs/chrome-remote-desktop/windows.json new file mode 100644 index 0000000000..6739605562 --- /dev/null +++ b/ee/maintained-apps/outputs/chrome-remote-desktop/windows.json @@ -0,0 +1,23 @@ +{ + "versions": [ + { + "version": "148.0.7778.23", + "queries": { + "exists": "SELECT 1 FROM programs WHERE name = 'Chrome Remote Desktop Host' AND publisher = 'Google LLC';", + "patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM programs WHERE name = 'Chrome Remote Desktop Host' AND publisher = 'Google LLC' AND version_compare(version, '148.0.7778.23') < 0);" + }, + "installer_url": "https://dl.google.com/release2/misc/acrsfvl3wyga6uijvhfjjoxbji3a_148.0.7778.23/remoting-host.msi", + "install_script_ref": "8959087b", + "uninstall_script_ref": "44518c74", + "sha256": "9ff875846f3fc5889f195d7b523e6fb6d4c2a0ecfbac9551284d95c62a9342f7", + "default_categories": [ + "Productivity" + ], + "upgrade_code": "{2B21F767-E157-4FA6-963C-55834C1433A6}" + } + ], + "refs": { + "44518c74": "# 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('{2B21F767-E157-4FA6-963C-55834C1433A6}')) {\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" + } +} diff --git a/frontend/pages/SoftwarePage/components/icons/ChromeRemoteDesktop.tsx b/frontend/pages/SoftwarePage/components/icons/ChromeRemoteDesktop.tsx new file mode 100644 index 0000000000..c0e7166acd --- /dev/null +++ b/frontend/pages/SoftwarePage/components/icons/ChromeRemoteDesktop.tsx @@ -0,0 +1,14 @@ +import * as React from "react"; + +import type { SVGProps } from "react"; + +const ChromeRemoteDesktop = (props: SVGProps) => ( + + + +); +export default ChromeRemoteDesktop; diff --git a/frontend/pages/SoftwarePage/components/icons/index.ts b/frontend/pages/SoftwarePage/components/icons/index.ts index 6d28cfcba5..8aa968c7b2 100644 --- a/frontend/pages/SoftwarePage/components/icons/index.ts +++ b/frontend/pages/SoftwarePage/components/icons/index.ts @@ -14,6 +14,7 @@ import Bluej from "./Bluej"; import BurpSuiteCommunity from "./BurpSuiteCommunity"; import Cavalry from "./Cavalry"; import Charles from "./Charles"; +import ChromeRemoteDesktop from "./ChromeRemoteDesktop"; import ConnectFonts from "./ConnectFonts"; import CrashPlan from "./CrashPlan"; import DruvaInSync from "./DruvaInSync"; @@ -332,6 +333,7 @@ export const SOFTWARE_NAME_TO_ICON_MAP = { charles: Charles, "chatgpt atlas": ChatGptAtlas, chatgpt: ChatGpt, + "chrome remote desktop": ChromeRemoteDesktop, "cisco jabber": CiscoJabber, "citrix workspace": CitrixWorkspace, claude: Claude, diff --git a/website/assets/images/app-icon-chrome-remote-desktop-60x60@2x.png b/website/assets/images/app-icon-chrome-remote-desktop-60x60@2x.png new file mode 100644 index 0000000000..3776b089c8 Binary files /dev/null and b/website/assets/images/app-icon-chrome-remote-desktop-60x60@2x.png differ