Example #1
0
        public static void Restart(string asztalszam = "")
        {
            RestartOperations restart = new RestartOperations();

            List <string> ips = MachineDataMethods.GetIPs(asztalszam);

            restart.SendRestart(ips, true);
        }
Example #2
0
        public static void Shutdown(string asztalszam = "")
        {
            List <string> ips = MachineDataMethods.GetIPs(asztalszam);

            ShutdownOperations.ShutdownByIP(ips);
        }