Files
Allen Houchins 5e5578cd5b Add Adobe Creative Cloud as a Windows FMA (#44101)
This pull request adds full support for managing Adobe Creative Cloud on
Windows via Winget, including installation, uninstallation, and
detection. It introduces new manifest and script files, as well as
updates to the application metadata and output definitions.

**Adobe Creative Cloud for Windows integration:**

* Added a new Winget manifest file `adobe-creative-cloud.json` that
defines how to install and uninstall Adobe Creative Cloud, specifying
installer details and script paths.
* Implemented a PowerShell install script
(`adobe_creative_cloud_install.ps1`) that performs a silent installation
using the official stub executable and handles errors gracefully.
* Implemented a PowerShell uninstall script
(`adobe_creative_cloud_uninstall.ps1`) that finds and invokes the
official Adobe uninstaller, including logic to stop related processes
and search both registry and known paths.

**Application metadata and output updates:**

* Added a new entry for Adobe Creative Cloud (Windows) to the
`apps.json` output file, ensuring it appears in application listings
with the correct metadata.
* Created a new output definition file (`windows.json`) for Adobe
Creative Cloud, specifying detection queries, installer URL, script
references, SHA256 hash, and category.
2026-05-26 13:04:08 -05:00

13 lines
509 B
JSON

{
"name": "Adobe Creative Cloud",
"slug": "adobe-creative-cloud/windows",
"package_identifier": "Adobe.CreativeCloud",
"unique_identifier": "Adobe Creative Cloud",
"install_script_path": "ee/maintained-apps/inputs/winget/scripts/adobe_creative_cloud_install.ps1",
"uninstall_script_path": "ee/maintained-apps/inputs/winget/scripts/adobe_creative_cloud_uninstall.ps1",
"installer_arch": "x86",
"installer_type": "exe",
"installer_scope": "machine",
"default_categories": ["Productivity"]
}