Skip to content

Commit

Permalink
Add uninstall script for rustdesk.install
Browse files Browse the repository at this point in the history
Fixes #60
  • Loading branch information
bdukes committed Oct 24, 2024
1 parent 12fbe67 commit f32a54a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions automatic/rustdesk.install/tools/chocolateyUninstall.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
$ErrorActionPreference = 'Stop';

$installedPath = 'C:\Program Files\RustDesk\RustDesk.exe';
if (Test-Path $installedPath) {
& $installedPath --uninstall;
}

0 comments on commit f32a54a

Please sign in to comment.