We use powershell:
Not silent but no touch
Stop-Process-ProcessName"Creative Cloud"-force
Stop-Process-ProcessName"Adobe Desktop Service" -force
$signature=@"
$BlockInput=Add-Type-memberDefinition$signature-nameWin32BlockInput-namespaceWin32Functions-passThru
functionEnable-BlockInput { $null=$BlockInput::BlockInput($true) }
functionDisable-BlockInput { $null=$BlockInput::BlockInput($false) }
Enable-BlockInput
[System.Reflection.Assembly]::LoadWithPartialName("'Microsoft.VisualBasic")
start-process"C:\Program Files (x86)\Adobe\Adobe Creative Cloud\Utils\Creative Cloud Uninstaller.exe"
$p=get-process|where {$_.name -eq"Creative Cloud"}
Start-Sleep-s5
[System.Windows.Forms.SendKeys]::SendWait("+{a}")
Start-Sleep-s15
[System.Windows.Forms.SendKeys]::SendWait("{ENTER}")
Disable-BlockInput