Jump to content

Search the Community

Showing results for tags 'idrac'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Location


WWW


Interests

Found 1 result

  1. Hello, I am trying to automate the opening of a virtual console window via the Dell iDRAC. (Using AutoIt Version: 3.3.14.2) I have a semi-working project but I am stumped and very much a web n00b.... After a user logs on, you will see 3 links on the upper right of the screen (Settings,Refresh, and Launch) When I click this by hand the new virtual console opens up without any warnings as normal. However when I try to automate this with autoit, once I click the Launch link the dreaded IE "Information Bar" security warning pops up.. Through code I am able to click this bar, and then send("d") for download but when I do that the session logs me off and even if I stop the code and manually click "Download File" this fails as well so I assume there is something in the way that I am doing the initial Launch link click. I don't understand why there is different behavior doing is manual vs automation. sysSummaryData.htm In IE the IP was added to the trusted sites list but that made no difference. Any ideas? #include <IE.au3> Opt("WinTitleMatchMode", 2) ; attach to the open window already logged on Dim $oIE = _IEAttach("- iDRAC7 - Summary - Windows Internet Explorer", "windowtitle") Local $oFrame = _IEFrameGetObjByName($oIE, "da") ; get the main frame Local $oFrame2 = _IEFrameGetObjByName($oFrame, "help") ; get the nested frame $oLink = _IEGetObjById($oFrame2, "rmt_cons_prv_launch_lbl") ; this works ; $oLink = _IEGetObjById($oFrame2, "remoteConLaunch_link") ; or this works _IEAction($oLink, "click") Local $title = _IEPropertyGet($oIE, "title") WinActivate($title) Local $Check1 = WinWait($title, "To help protect your security, Internet Explorer blocked this site from", 10) If $Check1 <> 0 Then ; Verify the Info Bar is displayed ControlClick($title, "To help protect your security, Internet Explorer blocked this site from", "[CLASS:Button; INSTANCE:1; ID:37425]", "left", 1, 1, 1) Sleep(4000) ; rest a moment for the pop up Send("d") ; we blow up here when we try to 'Download File' EndIf I have included a sample of the view source where the quick Launch code seems to fire from as an attachment but here is a snip: <div id="remotewithbutton" class="quick_launch"> <ul> <li> <a id ="consoleCfg_link" href="#" onclick="QuickLaunch('consoleCfg')" class="task"> <span id="rmt_cons_prv_settings_lbl"></span> </a> </li> <li> <a id="refreshPrv_link" href="#" onclick="onLoadConsolePrevImage(1);" class="task"> <span id="rmt_cons_prv_refresh_lbl"></span> </a> </li> <li> <a id="remoteConLaunch_link" href="#" onclick="QuickLaunch('viewer');" class="task"> <span id="rmt_cons_prv_launch_lbl"></span> </a> </li> </ul> </div> sysSummaryData.htm
×
×
  • Create New...