mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-14 11:23:42 +02: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();
|
|
}
|
|
}
|
|
}
|