Re: How to login remote windos device using python

2019-08-20 Thread Iranna Mathapati
Thanks Kyle Its working fine On Tue, Aug 20, 2019 at 2:45 PM Iranna Mathapati wrote: > Hi Kyle, > > I have tried with as per above attached links and it leads following error: > NOTE: Its able to connect local > > Failed to connect remote windows > >>> import wmi > >>> c = wmi.WMI("XX.XX.XX.XX

Re: How to login remote windos device using python

2019-08-20 Thread Iranna Mathapati
Hi Kyle, I have tried with as per above attached links and it leads following error: NOTE: Its able to connect local Failed to connect remote windows >>> import wmi >>> c = wmi.WMI("XX.XX.XX.XX", user=r"XXX\XXX", password="") Traceback (most recent call last): File "", line 1, in

Re: How to login remote windos device using python

2019-08-19 Thread Kyle Stanley
I would recommend checking out WMI: https://pypi.org/project/WMI/ For remote connection as a named user (official WMI docs): http://timgolden.me.uk/python/wmi/tutorial.html#connecting-to-a-remote-machine-as-a-named-user Also, another example (unofficial): https://stackoverflow.com/questions/18961

How to login remote windos device using python

2019-08-19 Thread Iranna Mathapati
Hi Team, can you please let me know, How to login the remote Windows machine using python?? Thanks -- https://mail.python.org/mailman/listinfo/python-list