Jump to content

Recommended Posts

Posted

Is anyone know how to get programatically the ciphering of Internet explorer. ex. 128bits

This information is displayed by Internet explorer clickin on About box

THANKS IN ADVANCE

Posted

I'd never looked at this before, but it turns out to be available through WMI. I found a discussion of it here and converted their example:

$strComputer = "."
$objWMIService = ObjGet("winmgmts:\\" & $strComputer & "\root\cimv2\Applications\MicrosoftIE")

$colIESettings = $objWMIService.ExecQuery ("Select * from MicrosoftIE_Summary")

For $strIESetting in $colIESettings
    ConsoleWrite( "Version: " & $strIESetting.Version & @CR)
    ConsoleWrite( "Product ID: " & $strIESetting.ProductID & @CR)
    ConsoleWrite( "Cipher strength: " & $strIESetting.CipherStrength & @CR)
Next

enjoy,

Dale

  LOULOU said:

Is anyone know how to get programatically the ciphering of Internet explorer. ex. 128bits

This information is displayed by Internet explorer clickin on About box

THANKS IN ADVANCE

Free Internet Tools: DebugBar, AutoIt IE Builder, HTTP UDF, MODIV2, IE Developer Toolbar, IEDocMon, Fiddler, HTML Validator, WGet, curl

MSDN docs: InternetExplorer Object, Document Object, Overviews and Tutorials, DHTML Objects, DHTML Events, WinHttpRequest, XmlHttpRequest, Cross-Frame Scripting, Office object model

Automate input type=file (Related)

Alternative to _IECreateEmbedded? better: _IECreatePseudoEmbedded  Better Better?

IE.au3 issues with Vista - Workarounds

SciTe Debug mode - it's magic: #AutoIt3Wrapper_run_debug_mode=Y

Doesn't work needs to be ripped out of the troubleshooting lexicon. It means that what you tried did not produce the results you expected. It begs the questions 1) what did you try?, 2) what did you expect? and 3) what happened instead?

Reproducer: a small (the smallest?) piece of stand-alone code that demonstrates your trouble

Posted

It's not polite to change the topic in the middle of someone else's thread :-)

Did you mean to start a new post instead?

Dale

  poisonkiller said:

Maybe you know, how to get Artist and song name from .wma media file?

Free Internet Tools: DebugBar, AutoIt IE Builder, HTTP UDF, MODIV2, IE Developer Toolbar, IEDocMon, Fiddler, HTML Validator, WGet, curl

MSDN docs: InternetExplorer Object, Document Object, Overviews and Tutorials, DHTML Objects, DHTML Events, WinHttpRequest, XmlHttpRequest, Cross-Frame Scripting, Office object model

Automate input type=file (Related)

Alternative to _IECreateEmbedded? better: _IECreatePseudoEmbedded  Better Better?

IE.au3 issues with Vista - Workarounds

SciTe Debug mode - it's magic: #AutoIt3Wrapper_run_debug_mode=Y

Doesn't work needs to be ripped out of the troubleshooting lexicon. It means that what you tried did not produce the results you expected. It begs the questions 1) what did you try?, 2) what did you expect? and 3) what happened instead?

Reproducer: a small (the smallest?) piece of stand-alone code that demonstrates your trouble

  • 5 years later...
Posted

  On 10/29/2005 at 3:51 PM, 'poisonkiller said:

I started topic a little time ago, but nobody answered.:unsure:

  On 4/17/2011 at 3:56 PM, 'SlavaS said:

Tell me please, how to determine the Cipher strength in IE under Windows Vista/7?

It is already becoming a mess...

http://forum.autoitbrasil.com/ (AutoIt v3 Brazil!!!)

  Reveal hidden contents

Somewhere Out ThereJames Ingram

somewh10.png

dropbo10.pngDownload Dropbox - Simplify your life!
Your virtual HD wherever you go, anywhere!

  • 2 weeks later...
Posted

  On 4/17/2011 at 3:56 PM, 'SlavaS said:

Tell me please, how to determine the Cipher strength in IE under Windows Vista/7?

question is still relevant.

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...