Foros del Web » Programación para mayores de 30 ;) » Programación General » Visual Basic clásico »

Apagar Maquinas remotas en visual basic

Estas en el tema de Apagar Maquinas remotas en visual basic en el foro de Visual Basic clásico en Foros del Web. quisiera saber como seria el codigo para apagar una maquina remota en una red local, creo que es una api que se llama initiateshotdown pero ...
  #1 (permalink)  
Antiguo 20/04/2004, 08:45
 
Fecha de Ingreso: febrero-2004
Mensajes: 36
Antigüedad: 20 años, 3 meses
Puntos: 0
Apagar Maquinas remotas en visual basic

quisiera saber como seria el codigo para apagar una maquina remota en una red local, creo que es una api que se llama initiateshotdown pero solo eso se,lo necesito para windows xp
  #2 (permalink)  
Antiguo 20/04/2004, 09:09
 
Fecha de Ingreso: abril-2004
Ubicación: MURCIA
Mensajes: 11
Antigüedad: 20 años
Puntos: 0
Quizás esto te ayude

Esto lo he sacado de www.allapi.net, esta página es bastante buena.
Suerte.

' Shutdown Flags
Const EWX_LOGOFF = 0
Const EWX_SHUTDOWN = 1
Const EWX_REBOOT = 2
Const EWX_FORCE = 4
Const SE_PRIVILEGE_ENABLED = &H2
Const TokenPrivileges = 3
Const TOKEN_ASSIGN_PRIMARY = &H1
Const TOKEN_DUPLICATE = &H2
Const TOKEN_IMPERSONATE = &H4
Const TOKEN_QUERY = &H8
Const TOKEN_QUERY_SOURCE = &H10
Const TOKEN_ADJUST_PRIVILEGES = &H20
Const TOKEN_ADJUST_GROUPS = &H40
Const TOKEN_ADJUST_DEFAULT = &H80
Const SE_SHUTDOWN_NAME = "SeShutdownPrivilege"
Const ANYSIZE_ARRAY = 1
Private Type LARGE_INTEGER
lowpart As Long
highpart As Long
End Type
Private Type Luid
lowpart As Long
highpart As Long
End Type
Private Type LUID_AND_ATTRIBUTES
'pLuid As Luid
pLuid As LARGE_INTEGER
Attributes As Long
End Type
Private Type TOKEN_PRIVILEGES
PrivilegeCount As Long
Privileges(ANYSIZE_ARRAY) As LUID_AND_ATTRIBUTES
End Type
Private Declare Function InitiateSystemShutdown Lib "advapi32.dll" Alias "InitiateSystemShutdownA" (ByVal lpMachineName As String, ByVal lpMessage As String, ByVal dwTimeout As Long, ByVal bForceAppsClosed As Long, ByVal bRebootAfterShutdown As Long) As Long
Private Declare Function OpenProcessToken Lib "advapi32.dll" (ByVal ProcessHandle As Long, ByVal DesiredAccess As Long, TokenHandle As Long) As Long
Private Declare Function GetCurrentProcess Lib "kernel32" () As Long
Private Declare Function LookupPrivilegeValue Lib "advapi32.dll" Alias "LookupPrivilegeValueA" (ByVal lpSystemName As String, ByVal lpName As String, lpLuid As LARGE_INTEGER) As Long
Private Declare Function AdjustTokenPrivileges Lib "advapi32.dll" (ByVal TokenHandle As Long, ByVal DisableAllPrivileges As Long, NewState As TOKEN_PRIVILEGES, ByVal BufferLength As Long, PreviousState As TOKEN_PRIVILEGES, ReturnLength As Long) As Long
Private Declare Function GetComputerName Lib "kernel32" Alias "GetComputerNameA" (ByVal lpBuffer As String, nSize As Long) As Long
Private Declare Function GetLastError Lib "kernel32" () As Long
Public Function InitiateShutdownMachine(ByVal Machine As String, Optional Force As Variant, Optional Restart As Variant, Optional AllowLocalShutdown As Variant, Optional Delay As Variant, Optional Message As Variant) As Boolean
Dim hProc As Long
Dim OldTokenStuff As TOKEN_PRIVILEGES
Dim OldTokenStuffLen As Long
Dim NewTokenStuff As TOKEN_PRIVILEGES
Dim NewTokenStuffLen As Long
Dim pSize As Long
If IsMissing(Force) Then Force = False
If IsMissing(Restart) Then Restart = True
If IsMissing(AllowLocalShutdown) Then AllowLocalShutdown = False
If IsMissing(Delay) Then Delay = 0
If IsMissing(Message) Then Message = ""
'Make sure the Machine-name doesn't start with '\\'
If InStr(Machine, "\\") = 1 Then
Machine = Right(Machine, Len(Machine) - 2)
End If
'check if it's the local machine that's going to be shutdown
If (LCase(GetMyMachineName) = LCase(Machine)) Then
'may we shut this computer down?
If AllowLocalShutdown = False Then Exit Function
'open access token
If OpenProcessToken(GetCurrentProcess(), TOKEN_ADJUST_PRIVILEGES Or TOKEN_QUERY, hProc) = 0 Then
MsgBox "OpenProcessToken Error: " & GetLastError()
Exit Function
End If
'retrieve the locally unique identifier to represent the Shutdown-privilege name
If LookupPrivilegeValue(vbNullString, SE_SHUTDOWN_NAME, OldTokenStuff.Privileges(0).pLuid) = 0 Then
MsgBox "LookupPrivilegeValue Error: " & GetLastError()
Exit Function
End If
NewTokenStuff = OldTokenStuff
NewTokenStuff.PrivilegeCount = 1
NewTokenStuff.Privileges(0).Attributes = SE_PRIVILEGE_ENABLED
NewTokenStuffLen = Len(NewTokenStuff)
pSize = Len(NewTokenStuff)
'Enable shutdown-privilege
If AdjustTokenPrivileges(hProc, False, NewTokenStuff, NewTokenStuffLen, OldTokenStuff, OldTokenStuffLen) = 0 Then
MsgBox "AdjustTokenPrivileges Error: " & GetLastError()
Exit Function
End If
'initiate the system shutdown
If InitiateSystemShutdown("\\" & Machine, Message, Delay, Force, Restart) = 0 Then
Exit Function
End If
NewTokenStuff.Privileges(0).Attributes = 0
'Disable shutdown-privilege
If AdjustTokenPrivileges(hProc, False, NewTokenStuff, Len(NewTokenStuff), OldTokenStuff, Len(OldTokenStuff)) = 0 Then
Exit Function
End If
Else
'initiate the system shutdown
If InitiateSystemShutdown("\\" & Machine, Message, Delay, Force, Restart) = 0 Then
Exit Function
End If
End If
InitiateShutdownMachine = True
End Function
Function GetMyMachineName() As String
Dim sLen As Long
'create a buffer
GetMyMachineName = Space(100)
sLen = 100
'retrieve the computer name
If GetComputerName(GetMyMachineName, sLen) Then
GetMyMachineName = Left(GetMyMachineName, sLen)
End If
End Function
Private Sub Form_Load()
'KPD-Team 2000
'URL: http://www.allapi.net/
'E-Mail: [email protected]
InitiateShutdownMachine GetMyMachineName, True, True, True, 60, "You initiated a system shutdown..."
End Sub
  #3 (permalink)  
Antiguo 20/04/2004, 10:41
 
Fecha de Ingreso: agosto-2002
Ubicación: Santiago, CHILE
Mensajes: 25
Antigüedad: 21 años, 8 meses
Puntos: 0
a ver esta otra explicación..

Cerrar el PC cuando hay opciones extendidas
Aquí explicamos brevemente formas alternativas de cerrar el PC.

Para cerrar el ordenador con la línea de comandos, escriba "shutdown -s". Se puede utilizar con archivos de procesamiento por lotes, por ejemplo. Sin embargo, este tipo de archivos no se cierra de forma inmediata sino que hay una cuenta atrás de 30 segundos. Para ver otras opciones de cierre escriba "shutdown" en la línea de comandos y le mostrará una lista de opciones. ¡Incluso puede cerrar de forma remota otro PC! Aquí tiene otras formas que también puede utilizar con otros ejemplos de uso:

Debe escribir shutdown seguido de los siguientes comandos:

-i Mostrar el interfaz gráfica de usuario (GUI) tiene que ser la primera opción
-l Iniciar sesión (no puede utilizarse con opciones -m )
-s Cerrar el ordenador
-r Cerrar y reiniciar el ordenador
-a Interrumpir el cierre de un sistema

esta es la que tu buscas

-m \\ el nombre del ordenador remoto que quiere cerrar (escriba shutdown)/ reiniciar (escriba restart)/interrumpir (escribir abort)


-t xx Programar el tiempo de cierre en xx segundos
-c "comment" para incluir un comentario en el cierre (máximo 127 caracteres)
-f provoca al cierre de las aplicaciones que se están ejecutando sin aviso previo
-d [u][p]:xx:yy El código de razón para cerrar
u es el código de usuario
p es un código de cierre planificado
xx es el código de razón más alto (El entero positivo menor de 256)
yy es el código de razón más bajo(El entero positivo menor de 65536)
__________________
ATTE.
Franco A. Gomara G.
  #4 (permalink)  
Antiguo 09/08/2004, 18:58
Avatar de sayyis  
Fecha de Ingreso: agosto-2004
Mensajes: 18
Antigüedad: 19 años, 8 meses
Puntos: 0
En tu program pones shell shutdonwn -s -m"nombre de la maquina" -t"estableces el tiempo de apagado" y espero ke econ esto puedas solucionar tu problema OkIs bye
__________________
AtTe: SaYyIs OkIs ByE :arriba:
  #5 (permalink)  
Antiguo 10/08/2004, 17:31
Avatar de cadrogui  
Fecha de Ingreso: junio-2003
Mensajes: 875
Antigüedad: 20 años, 10 meses
Puntos: 5
es importante mencionar si deseas realizar el apagado de forma remota deberias usar winsock, para conectarte a ella, por medio de tcp/ip... y ahi envias comandos a el server como por ejemplo el apagado....

salu2
__________________
La mejor manera de aprender es por medio de un aprendizaje significativo....

http://www.cocert.cl
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 23:44.