mirror of
https://github.com/Radarr/Radarr
synced 2024-12-25 17:27:59 +00: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();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|