mirror of
https://github.com/ChrisTitusTech/winutil
synced 2026-04-05 22:28:31 +00:00
* updated theme to the latest version * Update en.yaml * removed all the order from the docs * add the store link * update homepage * add filename and line number to all the code blocks and also removed pages * auto pull the code from the json files * Merge branch 'main' into winutil-new-features * the script updated linenostart= * Delete LaptopHibernation.md
39 lines
1.5 KiB
Markdown
39 lines
1.5 KiB
Markdown
---
|
|
title: "Remove Adobe Creative Cloud"
|
|
description: ""
|
|
---
|
|
```powershell {filename="functions/public/Invoke-WPFRunAdobeCCCleanerTool.ps1",linenos=inline,linenostart=1}
|
|
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
|
|
}
|
|
}
|
|
}
|
|
```
|