mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-10 04:52:42 +01:00
16 lines
289 B
C#
16 lines
289 B
C#
using System.Linq;
|
|
using System;
|
|
|
|
namespace ServiceUninstall
|
|
{
|
|
public static class Program
|
|
{
|
|
static void Main()
|
|
{
|
|
ServiceHelper.Run(@"/u");
|
|
Console.WriteLine("Press any key to continue");
|
|
Console.ReadLine();
|
|
}
|
|
}
|
|
}
|