windows remote login

theurn15

New member
Joined
Jul 18, 2005
Messages
1
Programming Experience
1-3
does any body knows how can we make windows login remotly into specific username and password using wmi or other method
 
I am also curious if this is possible. I'm pretty sure it isnt possible with WMI as it is meant for network management in the background. It would be mighty helpful if it were possible through .net though....
 
VB.NET:
  Dim m_Process As New Process()
        m_Process.StartInfo.FileName = "putty.exe"
        m_Process.StartInfo.Arguments = "*computer's ip address , the one you want to connect to *  -P 22 -l *account name* -pw       *your password here*"
        Process.Start(m_Process.StartInfo)
It worked for me, but i was connecting my windows to a Linux system so, you give it a shot and let me know
But, you will need an application called puTTy. Just google it and downlaod it. Very simple to use. Just copy paste this code and have the puTTY.exe in the same folder, you should be set :D
 
Back
Top