Pycharm Community

Delete software

Delete the software from the computer locally

$Uninstall ={
    function run{
        Remove-Item $shortcut_dest
        Start-Process -Wait -FilePath $dest -Argument "/S" -PassThru
        Remove-Item $dest
    }
}

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

Last updated

Was this helpful?