network-resurrector/NetworkResurrector.Server.A.../Services/IShutdownService.cs

9 lines
385 B
C#
Raw Normal View History

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