Eclipse

Delete software

Delete the software from the computer locally

$Uninstall ={
    function run{
        Remove-Item $shortcut_dest
        Remove-Item $dest -Recurse
    }
}

Start-Process powershell -Wait -Verb runAs -ArgumentList "-NoExit -NoProfile -ExecutionPolicy Bypass -Command & {$Uninstall run}"

Last updated

Was this helpful?