goss34 Posted November 16, 2011 Posted November 16, 2011 Hi Guys, I was wondering if anyone had created a GUI with an embedded Virtual Machine? For those that do not use Virtual Centre you can access Virtual Machines via Internet Explorer and the VM loads in the IE window. I would imagine its possible using: ObjCreate GUICtrlCreateObj Does anyone happen to have an example of how this could be done? Thank you
sleepydvdr Posted November 17, 2011 Posted November 17, 2011 How about something along these lines: #Include <ie.au3> $GUI=GUICreate("", 1000, 800) $oIE=_IECreateEmbedded() GUICtrlCreateObj($oIE,10,10,980,780) _IENavigate($oIE, 'www.autoitscript.com') GUISetState() Do Until GUIGetMsg() = -3 #include <ByteMe.au3>
goss34 Posted November 18, 2011 Author Posted November 18, 2011 Hi Sleepy,Thanks for that, i did give that a go however the link Virtual Centre creates is not like i have seen before:https://vc1/ui/?wsUrl=http://localhost:80/sdk&mo=VirtualMachine|vm-1346&inventory=none&tabs=hide_When this loads i immeditately hit "Page cannot be displayed" if i refresh i can get to the "invalid certificate do you want to continue" message but then cannot get passed that screen i assume something to do with it being a Https site?Any ideas?Thanks
sleepydvdr Posted November 18, 2011 Posted November 18, 2011 There is a lot of embedding going on. You are trying to embed a link. And the link appears to be embedding another link. Notice the https and then a http?Check out the following website that shows some instructions that look like it could create a simpler link. Perhaps that may help.http://akutz.wordpress.com/2010/03/10/how-to-vsphere-client-to-vcenter-using-http/ #include <ByteMe.au3>
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now