Hi
I've wrote a script to logon remote on my servers.
I want to send the password also to server. so the logon must be done automatically.
I've used this code:
$oRDP = ObjCreate("MsTscAx.MsTscAx")
GUICreate($SerName, @DesktopWidth-50, @DesktopHeight-70)
$GUIActiveX = GUICtrlCreateObj($oRDP, 5, 5, @DesktopWidth-60, @DesktopHeight-80)
GUISetState()
$oRDP.Server = $SerName
$oRDP.UserName = $UserName
$oRDP.Connect()
While 1
$msg = GUIGetMsg()
Select
Case $msg = $GUI_EVENT_CLOSE
ExitLoop
EndSelect
WEnd
GUIDelete()
Please help me to send password also.
I couln't find solution for my problem in this forum
There are several softwares that can send password. such "RemoteDesktop Manager", ... . But I want to do it by Autoit.