mirror of
https://github.com/Radarr/Radarr
synced 2025-02-06 06:43:41 +00:00
17 lines
313 B
C#
17 lines
313 B
C#
![]() |
using System.Linq;
|
|||
|
using System;
|
|||
|
using UninstallService;
|
|||
|
|
|||
|
namespace ServiceUninstall
|
|||
|
{
|
|||
|
public static class Program
|
|||
|
{
|
|||
|
static void Main()
|
|||
|
{
|
|||
|
ServiceHelper.Run(@"/u");
|
|||
|
Console.WriteLine("Press any key to continue");
|
|||
|
Console.ReadLine();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|