Desarrollar un NetLogic que apague el sistema del host

Cree un NetLogic que
cierre inmediatamente el sistema
Windows®
del host
en el que se ejecuta
Aplicación FactoryTalk Optix
.
Requisitos previos
Establezca el editor de código externo predeterminado. Consulte Establecer el editor de código predeterminado.
  1. Para desarrollar un NetLogic que apague el sistema del host
  2. En
    Vista del proyecto
    , haga clic con el botón derecho en
    NetLogic
    y seleccione
    Nuevo
    NetLogic de tiempo de ejecución
    .
  3. Pase el cursor por encima de NetLogic, seleccione
    Edit
    y escriba
    ShutDownSystemNetLogic
  4. Haga doble clic en NetLogic.
    Se abre el editor de código externo.
  5. Reemplace el código existente por el siguiente código:
    #region StandardUsing using System; using FTOptix.Core; using FTOptix.CoreBase; using FTOptix.HMIProject; using UAManagedCore; using OpcUa = UAManagedCore.OpcUa; using FTOptix.NetLogic; using FTOptix.OPCUAServer; using FTOptix.UI; using System.Diagnostics; #endregion public class ShutDownSystemNetLogic : FTOptix.NetLogic.BaseNetLogic { [FTOptix.NetLogic.ExportMethod] public void SystemShutDown() { var psi = new ProcessStartInfo("shutdown", "/s /t 0"); psi.CreateNoWindow = true; psi.UseShellExecute = false; Process.Start(psi); } }
  6. Guarde el código.
Entregue su opinión
¿Tiene dudas o comentarios acerca de esta documentación? Por favor deje su opinión aquí.