Visual CSharp .NET - Reiniciar y apagar la maquina

 
Vista:

Reiniciar y apagar la maquina

Publicado por Noel Miño Herrera (1 intervención) el 10/10/2004 22:06:05
Por favor, necesito de forma urgente un trozo de codigo en C# con comandos para reiniciar y apagar la maquina desde un Windows Form, y si es posible, como manejar los procesos de windows que hay en ese momento funcionando, o sea, si esta abierto el taskmgr, como cerrarlo, o el explorer.

Gracias
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder
sin imagen de perfil
Val: 6
Ha mantenido su posición en Visual CSharp .NET (en relación al último mes)
Gráfica de Visual CSharp .NET

RE:Reiniciar y apagar la maquina

Publicado por Yamil Bracho (29 intervenciones) el 17/11/2004 17:34:36
Joel, hay una funcion dentro del API de Windows que se llama ExitWindows que creo es lo que estas buscando.
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar

RE:Reiniciar y apagar la maquina

Publicado por Lenny Bañobre Gómez (1 intervención) el 30/10/2006 08:06:52
Hola Miño aqui esta la respuesta:
using System;
using System.Diagnostics;
using System.Runtime.InteropServices;
using Microsoft.Win32;

namespace terminal
{
public class Utiles
{
internal const int SE_PRIVILEGE_ENABLED = 0x00000002;
internal const int TOKEN_QUERY = 0x00000008;
internal const int TOKEN_ADJUST_PRIVILEGES = 0x00000020;
internal const string SE_SHUTDOWN_NAME = "SeShutdownPrivilege";
internal const int EWX_LOGOFF = 0x00000000;
internal const int EWX_SHUTDOWN = 0x00000001;
internal const int EWX_REBOOT = 0x00000002;
internal const int EWX_FORCE = 0x00000004;
internal const int EWX_POWEROFF = 0x00000008;
internal const int EWX_FORCEIFHUNG = 0x00000010;

[StructLayout(LayoutKind.Sequential, Pack=1)]
internal struct TokPriv1Luid
{
public int Count;
public long Luid;
public int Attr;
}

[DllImport("kernel32.dll", ExactSpelling=true) ]
internal static extern IntPtr GetCurrentProcess();

[DllImport("advapi32.dll", ExactSpelling=true, SetLastError=true) ]
internal static extern bool OpenProcessToken( IntPtr h, int acc, ref IntPtr phtok );

[DllImport("advapi32.dll", SetLastError=true) ]
internal static extern bool LookupPrivilegeValue( string host, string name, ref long pluid );

[DllImport("advapi32.dll", ExactSpelling=true, SetLastError=true) ]
internal static extern bool AdjustTokenPrivileges( IntPtr htok, bool disall,
ref TokPriv1Luid newst, int len, IntPtr prev, IntPtr relen );

[DllImport("user32.dll", ExactSpelling=true, SetLastError=true) ]
internal static extern bool ExitWindowsEx( int flg, int rea );

private static void DoExitWin( int flg )
{
bool ok;
TokPriv1Luid tp;
IntPtr hproc = GetCurrentProcess();
IntPtr htok = IntPtr.Zero;
ok = OpenProcessToken( hproc, TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, ref htok );
tp.Count = 1;
tp.Luid = 0;
tp.Attr = SE_PRIVILEGE_ENABLED;
ok = LookupPrivilegeValue( null, SE_SHUTDOWN_NAME, ref tp.Luid );
ok = AdjustTokenPrivileges( htok, false, ref tp, 0, IntPtr.Zero, IntPtr.Zero );
ok = ExitWindowsEx( flg, 0 );
}

public static void Restart()
{
DoExitWin(EWX_REBOOT + EWX_FORCE);
}

public static void ShutDown()
{
DoExitWin(EWX_SHUTDOWN + EWX_FORCE);
}

public static void LogOff()
{
DoExitWin(EWX_LOGOFF + EWX_FORCE);
}

public static void StartProcess(string FileName)
{
Process proceso = new Process();
try
{
proceso.StartInfo.FileName = FileName;
proceso.Start();
}
catch(Exception ex )
{
System.Windows.Forms.MessageBox.Show("Error al inciar el proceso:" + Console.Out.NewLine + ex.Message);
}
}

public static void KillProcess(string ProcessName)
{
Process[] procs = Process.GetProcessesByName(ProcessName);

foreach(Process p in procs)
{
try
{
p.CloseMainWindow();
p.Kill();
p.WaitForExit();
}
catch
{}
}
}

public static void CambiarShell(string filename)
{
Registro r = new Registro("SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Winlogon", RegistryHive.LocalMachine);

r.guardarValor("Shell", filename);
}

public static void Taskmgr(bool disable)
{
Registro r = new Registro("Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System", RegistryHive.CurrentUser);
if(disable)
{
r.guardarValor("DisableTaskMgr", 00000001);
}
else
{
r.guardarValor("DisableTaskMgr", 00000000);
}
}
}
}
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar