You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
778 B
19 lines
778 B
5 years ago
|
#Import parent folder to import current / other packages
|
||
|
#########################################################
|
||
|
import sys
|
||
|
lFolderPath = "\\".join(__file__.split("\\")[:-4])
|
||
|
sys.path.insert(0, lFolderPath)
|
||
|
#########################################################
|
||
|
from pyOpenRPA.Tools.RobotRDPActive import RDPConnector
|
||
|
mConfiguration={
|
||
|
"Host": "93.159.239.226", #Host address
|
||
|
"Port": "8525", #RDP Port
|
||
|
"Login": "user22", # Login
|
||
|
"Password": "Tak181418Bar", #Password
|
||
|
"Screen": {
|
||
|
"Resolution":"FullScreen", #"640x480" or "1680x1050" or "FullScreen". If Resolution not exists set full screen
|
||
|
"FlagUseAllMonitors": False, # True or False
|
||
|
"DepthBit":"" #"32" or "24" or "16" or "15"
|
||
|
}
|
||
|
}
|
||
|
RDPConnector.SessionConnect(mConfiguration)
|