Jump to content

Recommended Posts

Posted

Estava aqui a tentar mas não sei para onde me virar, queria desbloquear o computador através do VB.NET.

Tentei com o sendKeys enviar a combinação CTRL+ALT+DEL, mas não fez nada...

Dim skey As Keys
skey = Keys.Control + Keys.Alt + Keys.Delete
System.Windows.Forms.SendKeys.Send(skey)

Alguém sabe como dar a volta a isto?

Eventualmente será necessário fazer o ctrl+alt+del e depois "digitar" a password (previamente guardada na aplicação)

Knowledge to the masses


Posted

Para Bloquear o computador é fácil tens aki um exemplo em C#:

//Converter para VB.Net não é difícil
using System;
using System.Collections;
using System.Data;
using System.Runtime.InteropServices;

public class MainClass {
  [ DllImport( "user32.dll" ) ]
  private static extern bool LockWorkStation();


  [sTAThread]
  static void Main() 
  {
    LockWorkStation();
  }

}

com managed code não sei se é possivel, mas penso que não.

Com o sendkeys não é possível enviar Ctr+Alt+Del

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.