Remotely/Agent/Services/Uninstaller.cs
2023-07-21 10:16:29 -07:00

41 lines
1.2 KiB
C#

using Microsoft.Win32;
using Remotely.Shared.Utilities;
using System;
using System.Diagnostics;
using System.IO;
namespace Remotely.Agent.Services;
public interface IUninstaller
{
void UninstallAgent();
}
public class Uninstaller : IUninstaller
{
public void UninstallAgent()
{
if (EnvironmentHelper.IsWindows)
{
Process.Start("cmd.exe", "/c sc delete Remotely_Service");
var view = Environment.Is64BitOperatingSystem ?
"/reg:64" :
"/reg:32";
Process.Start("cmd.exe", @$"/c REG DELETE HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Remotely /f {view}");
var currentDir = Path.GetDirectoryName(typeof(Uninstaller).Assembly.Location);
Process.Start("cmd.exe", $"/c timeout 5 & rd /s /q \"{currentDir}\"");
}
else if (EnvironmentHelper.IsLinux)
{
Process.Start("sudo", "systemctl stop remotely-agent").WaitForExit();
Directory.Delete("/usr/local/bin/Remotely", true);
File.Delete("/etc/systemd/system/remotely-agent.service");
Process.Start("sudo", "systemctl daemon-reload").WaitForExit();
}
Environment.Exit(0);
}
}