From 4e7416a2dc496015c199024f60674e88c5f8c9a0 Mon Sep 17 00:00:00 2001 From: Gabi <182965942+GabiNun@users.noreply.github.com> Date: Tue, 17 Feb 2026 20:30:38 +0200 Subject: [PATCH] Remove Adobe Creative Cloud (#4048) * Delete functions/public/Invoke-WPFRunAdobeCCCleanerTool.ps1 * Update feature.json --- config/feature.json | 9 ------ .../Invoke-WPFRunAdobeCCCleanerTool.ps1 | 32 ------------------- 2 files changed, 41 deletions(-) delete mode 100644 functions/public/Invoke-WPFRunAdobeCCCleanerTool.ps1 diff --git a/config/feature.json b/config/feature.json index 18087b77..00b07be3 100644 --- a/config/feature.json +++ b/config/feature.json @@ -181,15 +181,6 @@ "ButtonWidth": "300", "link": "https://winutil.christitus.com/dev/features/fixes/winget" }, - "WPFRunAdobeCCCleanerTool": { - "Content": "Remove Adobe Creative Cloud", - "category": "Fixes", - "panel": "1", - "Order": "a045_", - "Type": "Button", - "ButtonWidth": "300", - "link": "https://winutil.christitus.com/dev/features/fixes/runadobecccleanertool" - }, "WPFPanelControl": { "Content": "Control Panel", "category": "Legacy Windows Panels", diff --git a/functions/public/Invoke-WPFRunAdobeCCCleanerTool.ps1 b/functions/public/Invoke-WPFRunAdobeCCCleanerTool.ps1 deleted file mode 100644 index 84768974..00000000 --- a/functions/public/Invoke-WPFRunAdobeCCCleanerTool.ps1 +++ /dev/null @@ -1,32 +0,0 @@ -function Invoke-WPFRunAdobeCCCleanerTool { - <# - .SYNOPSIS - It removes or fixes problem files and resolves permission issues in registry keys. - .DESCRIPTION - The Creative Cloud Cleaner tool is a utility for experienced users to clean up corrupted installations. - #> - - [string]$url="https://swupmf.adobe.com/webfeed/CleanerTool/win/AdobeCreativeCloudCleanerTool.exe" - - Write-Host "The Adobe Creative Cloud Cleaner tool is hosted at" - Write-Host "$url" - - try { - # Don't show the progress because it will slow down the download speed - $ProgressPreference='SilentlyContinue' - - Invoke-WebRequest -Uri $url -OutFile "$env:TEMP\AdobeCreativeCloudCleanerTool.exe" -UseBasicParsing -ErrorAction SilentlyContinue -Verbose - - # Revert back the ProgressPreference variable to the default value since we got the file desired - $ProgressPreference='Continue' - - Start-Process -FilePath "$env:TEMP\AdobeCreativeCloudCleanerTool.exe" -Wait -ErrorAction SilentlyContinue -Verbose - } catch { - Write-Error $_.Exception.Message - } finally { - if (Test-Path -Path "$env:TEMP\AdobeCreativeCloudCleanerTool.exe") { - Write-Host "Cleaning up..." - Remove-Item -Path "$env:TEMP\AdobeCreativeCloudCleanerTool.exe" -Verbose - } - } -}