network-resurrector/NetworkResurrector.Application/Services/IShutdownService.cs

9 lines
378 B
C#
Raw Normal View History

2020-11-28 20:06:43 +02:00
namespace NetworkResurrector.Application.Services
{
public interface IShutdownService
{
string ShutdownMachine(string ipAddressOrMachineName);
string ShutdownMachineWithManagementScope(string ipAddressOrMachineName);
string ShutdownMachineWithManagementScope(string ipAddressOrMachineName, string user, string password, string domain);
}
}