elhacker.net cabecera Bienvenido(a), Visitante. Por favor Ingresar o Registrarse
¿Perdiste tu email de activación?.

 

 


Tema destacado: Curso de javascript por TickTack


+  Foro de elhacker.net
|-+  Programación
| |-+  Programación General
| | |-+  .NET (C#, VB.NET, ASP)
| | | |-+  Programación Visual Basic (Moderadores: LeandroA, seba123neo)
| | | | |-+  Apagar el Ordenador
0 Usuarios y 1 Visitante están viendo este tema.
Páginas: [1] Ir Abajo Respuesta Imprimir
Autor Tema: Apagar el Ordenador  (Leído 1,615 veces)
Arc_Dream5

Desconectado Desconectado

Mensajes: 23


Ver Perfil
Apagar el Ordenador
« en: 24 Marzo 2006, 02:17 am »

   Disculpen la Pregunta, pero alguien sabe como apagar el Ordenador desde Visual Baic..

Osea el codigo, para poderla apagar.. por que ya e intentado de muchas maneras pero ninguna resulta



En línea

Arc_Dream5

Desconectado Desconectado

Mensajes: 23


Ver Perfil
Re: Apagar el Ordenador
« Respuesta #1 en: 24 Marzo 2006, 02:25 am »

Otra Cosita... alguien sabe como hacer que cuando le des clic derecho con el mouse, en un Image te aparezca la opcion Guardar Imagen Como... y que te abra el cuadro de Guardar Imagen Como...?


En línea

Krnl64

Desconectado Desconectado

Mensajes: 169


Exception 0x00005


Ver Perfil
Re: Apagar el Ordenador
« Respuesta #2 en: 24 Marzo 2006, 03:30 am »

Es facil, pero tienes que conocer la API de windows medio bien.

Para sacarle el mayor provecho, intenta entender su sintaxis y los parametros que hay que pasarle para que funcione.

En Wxp y NT hay que escalar privilegios.

Aqui te dejo el todo el code, que sirve tambien para reiniciar, cambiar de usuario, etc

Pero eso curratelo tu 1 poquito.

CODE:


Código:

'Declaraciones de API, tipos de datos y constantes necesarias

'Este code lo pones en el formulario

' Las funciones del API

Private Declare Function ExitWindowsEx Lib "user32" (ByVal dwOptions As Long, ByVal dwReserved As Long) As Long
Private Declare Function GetCurrentProcess Lib "kernel32" () As Long
Private Declare Function OpenProcessToken Lib "advapi32" (ByVal ProcessHandle As Long, ByVal DesiredAccess As Long, TokenHandle As Long) As Long
Private Declare Function LookupPrivilegeValue Lib "advapi32" Alias "LookupPrivilegeValueA" (ByVal lpSystemName As String, ByVal lpName As String, lpLuid As LUID) As Long
Private Declare Function AdjustTokenPrivileges Lib "advapi32" (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


' Las constantes
      Private Const EWX_LOGOFF As Long = 0
      Private Const EWX_SHUTDOWN As Long = 1
      Private Const EWX_FORCE As Long = 4
      Private Const EWX_REBOOT = 2

Private Type LUID
         UsedPart As Long
         IgnoredForNowHigh32BitPart As Long
      End Type
                                        ' El tipo de datos para obtener privilegio
      Private Type TOKEN_PRIVILEGES
         PrivilegeCount As Long
         TheLuid As LUID
         Attributes As Long
      End Type


SUBRUTINA :

Código:

Private Sub AdjustToken()
         Const TOKEN_ADJUST_PRIVILEGES = &H20
         Const TOKEN_QUERY = &H8
         Const SE_PRIVILEGE_ENABLED = &H2
         Dim hdlProcessHandle As Long
         Dim hdlTokenHandle As Long
         Dim tmpLuid As LUID
         Dim tkp As TOKEN_PRIVILEGES
         Dim tkpNewButIgnored As TOKEN_PRIVILEGES
         Dim lBufferNeeded As Long

         hdlProcessHandle = GetCurrentProcess()
         OpenProcessToken hdlProcessHandle, (TOKEN_ADJUST_PRIVILEGES Or TOKEN_QUERY), hdlTokenHandle

         LookupPrivilegeValue "", "SeShutdownPrivilege", tmpLuid
         
         tkp.PrivilegeCount = 1    ' Conseguir 1 permiso
         tkp.TheLuid = tmpLuid
         tkp.Attributes = SE_PRIVILEGE_ENABLED
         AdjustTokenPrivileges hdlTokenHandle, False, tkp, Len(tkpNewButIgnored), tkpNewButIgnored, lBufferNeeded
      End Sub




Para usar la funcion llamala asi:

AdjustToken
'ExitWindowsEx (EWX_SHUTDOWN), &HFFFF



NO SE TE OLVIDE EL ADJUSTTOKEN, QUE SI NO NO RULA

krnl64
En línea

Robokop


Desconectado Desconectado

Mensajes: 1.660



Ver Perfil
Re: Apagar el Ordenador
« Respuesta #3 en: 24 Marzo 2006, 04:00 am »

tambien puede ser asi

shell "shutdown -s "
En línea

Páginas: [1] Ir Arriba Respuesta Imprimir 

Ir a:  

Mensajes similares
Asunto Iniciado por Respuestas Vistas Último mensaje
Cómo apagar un ordenador Windows 10 con tu voz
Noticias
wolfbcn 1 1,703 Último mensaje 26 Abril 2016, 23:02 pm
por Orubatosu
¿Es malo apagar el ordenador del botón?
Noticias
wolfbcn 7 2,622 Último mensaje 14 Diciembre 2017, 18:52 pm
por Lurker
Apagar, hibernar o suspender el ordenador: qué opción es más aconsejable
Noticias
wolfbcn 0 1,518 Último mensaje 5 Marzo 2018, 02:18 am
por wolfbcn
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines