9 lines
378 B
C#
9 lines
378 B
C#
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);
|
|
}
|
|
} |