Quantcast
Channel: Internet Explorer 8, 9, 10 Forum
Viewing all 1908 articles
Browse latest View live

Retrieve Internet Explorer settings

$
0
0

Can someone tell me if it’s possible to retrieve Internet Explorer setting for a remote user or even better compare two user’s Internet Explorer setting?

I have the following script that only works on current user, but I would like to run it against a remote user to troubleshoot some issues we are running into with DLP and internet sites.

Also, does anyone see a problem with Internet Explorer Connection Settings in this script, as it is not returning any information.

Thanks.

WScript.Echo "=========================================="
WScript.Echo "Enumerating Internet Explorer LAN Settings"
WScript.Echo "=========================================="
strComputer = "."
Set objWMIService = GetObject("winmgmts:\\" & strComputer _
    & "\root\cimv2\Applications\MicrosoftIE")
Set colIESettings = objWMIService.ExecQuery _
    ("Select * from MicrosoftIE_LANSettings")
For Each strIESetting in colIESettings
    Wscript.Echo "Autoconfiguration proxy: " & strIESetting.AutoConfigProxy
    Wscript.Echo "Autoconfiguration URL: " & strIESetting.AutoConfigURL
    Wscript.Echo "Autoconfiguration Proxy detection mode: " & _
        strIESetting.AutoProxyDetectMode
    Wscript.Echo "Proxy: " & strIESetting.Proxy
    Wscript.Echo "Proxy override: " & strIESetting.ProxyOverride
    Wscript.Echo "Proxy server: " & strIESetting.ProxyServer
Next
WScript.Echo "===================================================="
WScript.Echo "Enumerating Internet Explorer Security Zone Settings"
WScript.Echo "===================================================="
Set colIESettings = objWMIService.ExecQuery _
    ("Select * from MicrosoftIE_Security")
For Each strIESetting in colIESettings
    Wscript.Echo "Zone name: " & strIESetting.Zone
    Wscript.Echo "Security level: " & strIESetting.Level
Next
WScript.Echo "=============================================="
WScript.Echo "Enumerating Internet Explorer Summary Settings"
WScript.Echo "=============================================="
Set colIESettings = objWMIService.ExecQuery _
    ("Select * from MicrosoftIE_Summary")
For Each strIESetting in colIESettings
    Wscript.Echo "Active printer: " & strIESetting.ActivePrinter
    Wscript.Echo "Build: " & strIESetting.Build
    Wscript.Echo "Cipher strength: " & strIESetting.CipherStrength
    Wscript.Echo "Content advisor: " & strIESetting.ContentAdvisor
    Wscript.Echo "IE Administration Kit installed: " & _
        strIESetting.IEAKInstall
    Wscript.Echo "Language: " & strIESetting.Language
    Wscript.Echo "Name: " & strIESetting.Name
    Wscript.Echo "Path: " & strIESetting.Path
    Wscript.Echo "Product ID: " & strIESetting.ProductID
    Wscript.Echo "Version: " & strIESetting.Version
Next
WScript.Echo "================================================"
WScript.Echo "Retrieving Internet Explorer COM Object Settings"
WScript.Echo "================================================"
Set colIESettings = objWMIService.ExecQuery _
    ("Select * from MicrosoftIE_Object")
For Each strIESetting in colIESettings
    Wscript.Echo "Code base: " & strIESetting.CodeBase
    Wscript.Echo "Program file: " & strIESetting.ProgramFile
    Wscript.Echo "Status: " & strIESetting.Status
Next
WScript.Echo "================================================"
WScript.Echo "Retrieving Internet Explorer Connection Settings"
WScript.Echo "================================================"
Set colIESettings = objWMIService.ExecQuery _
    ("Select * from MicrosoftIE_ConnectionSettings")
For Each strIESetting in colIESettings
    Wscript.Echo "Allow Internet programs: " & _
        strIESetting.AllowInternetPrograms
    Wscript.Echo "Autoconfiguration URL: " & strIESetting.AutoConfigURL
    Wscript.Echo "Auto disconnect: " & strIESetting.AutoDisconnect
    Wscript.Echo "Autoconfiguration proxy detection mode: " & _
        strIESetting.AutoProxyDetectMode
    Wscript.Echo "Data encryption: " & strIESetting.DataEncryption
    Wscript.Echo "Default: " & strIESetting.Default
    Wscript.Echo "Default gateway: " & strIESetting.DefaultGateway
    Wscript.Echo "Dialup server: " & strIESetting.DialUpServer
    Wscript.Echo "Disconnect idle time: " & strIESetting.DisconnectIdleTime
    Wscript.Echo "Encrypted password: " & strIESetting.EncryptedPassword
    Wscript.Echo "IP address: " & strIESetting.IPAddress
    Wscript.Echo "IP header compression: " & _
        strIESetting.IPHeaderCompression
    Wscript.Echo "Modem: " & strIESetting.Modem
    Wscript.Echo "Name: " & strIESetting.Name
    Wscript.Echo "Network logon: " & strIESetting.NetworkLogon
    Wscript.Echo "Network protocols: " & strIESetting.NetworkProtocols
    Wscript.Echo "Primary DNS server: " & strIESetting.PrimaryDNS
    Wscript.Echo "Primary WINS server: " & strIESetting.PrimaryWINS
    Wscript.Echo "Proxy: " & strIESetting.Proxy
    Wscript.Echo "Proxy override: " & strIESetting.ProxyOverride
    Wscript.Echo "Proxy server: " & strIESetting.ProxyServer
    Wscript.Echo "Redial attempts: " & strIESetting.RedialAttempts
    Wscript.Echo "Redial wait: " & strIESetting.RedialWait
    Wscript.Echo "Script fileame: " & strIESetting.ScriptFileName
    Wscript.Echo "Secondary DNS server: " & strIESetting.SecondaryDNS
    Wscript.Echo "Secondary WINS server: " & strIESetting.SecondaryWINS
    Wscript.Echo "Server assigned IP address: " & _
        strIESetting.ServerAssignedIPAddress
    Wscript.Echo "Server assigned name server: " & _
        strIESetting.ServerAssignedNameServer
    Wscript.Echo "Software compression: " & strIESetting.SoftwareCompression
Next
WScript.Echo "==================================================="
WScript.Echo "Retrieving the Internet Explorer Connection Summary"
WScript.Echo "==================================================="
Set colIESettings = objWMIService.ExecQuery _
    ("Select * from MicrosoftIE_ConnectionSummary")
For Each strIESetting in colIESettings
    Wscript.Echo "Connection preference: " & _
        strIESetting.ConnectionPreference
    Wscript.Echo "HTTP 1.1. enabled: " & strIESetting.EnableHTTP11
    Wscript.Echo "Proxy HTTP 1.1. enabled: " & strIESetting.ProxyHTTP11
Next
WScript.Echo "==========================================="
WScript.Echo "Retrieving Internet Explorer Cache Settings"
WScript.Echo "==========================================="
Set colIESettings = objWMIService.ExecQuery _
    ("Select * from MicrosoftIE_Cache")
For Each strIESetting in colIESettings
    Wscript.Echo "Page refresh type: " & strIESetting.PageRefreshType
    Wscript.Echo "Temporary Internet files folder: " & _
        strIESetting.TempInternetFilesFolder
Next



"Fate rarely calls upon us at a moment of our choosing…"


This ftp site cannot be viewed in windows explorer (8)

$
0
0

I mistakenly installed google chrome (thinking i was getting google earth) and then uninstalled it. It corrupted IE8 so that i cannot use windows explorer to view our ftp site. (which means that i cannot use our site). Google chrome also corrupted windows outlook but i used a Microsoft fix to cure that.

When i am at our ftp site and i go to "page" and then go to "Open ftp site in windows explorer" i get the error message "This site cannot be opened in windows explorer" I'm using IE8.

Any thoughts?

Thanks.

20/9/12 Security Alert IE7, 8 and 9!!

$
0
0
Please, be advised:

A potential vulnerability which, could allow a hacker takeover or intrusion via Internet Explorer 7, 8 or 9, is being addressed via an Important Automatic Update on Friday, Sept. 21, 2012.  This is an out-of-cycle FIX to deal w/ the issue immediately.  End Users should have machines set to receive Automatic Updates.  However, if you do not (and even if you do) or, wrongly, have your machine off @ night, make sure, Friday (21/9) or Saturday AM (22/9) that this Update is put in or has been installed.

This is IMPORTANT!!

Please, exert due diligence regarding to this matter and w/out delay.

The issue does not affect IE10

Thank-you

Drew MS Partner / MS Beta Tester / Pres. Computer Issues Pres. Computer Issues www.drewsci.com


Internet Explorer 8 Security Prompt with Java 7

$
0
0

Hi,

I installed the latest copy of Java 7 Update 7 in a clean Windows 7 PC. When i visit the test page at java.com or my own webpage which detect Java with (new ActiveXObject("JavaWebStart.isInstalled"), Internet Explorer will display the prompt "This website wants to run the following add-on: 'Java SE Runtime Environment 7 Update 7' from Oracle America, Inc....'

The information bar was not present in Java 7 Update 0 - 4. Is this a new feature?  Is there anyway to disable the information bar?

Many thanks in advance.



For IE9 file downloading, how to configure IE9 settings so that it will always display a download prompt window?

$
0
0

During our web automation testing, we need to automatically download a file and save it to a location. For IE9 file downloading, by default it will display a download manager bar at the bottom of the browser for the user to choose "Open", "Save" or "Cancel". However, our automation tool is not able to control this download manager bar. I noticed that IE9 is also able to display a download prompt window which our automation tool is easy to control.

Could someone tell me how to configure IE9 to always display the above download prompt window in IE9?

Thanks a lot!

IE9 Web Search fails

$
0
0
IE9 {re: W7, 64bit) - web searches do not display an answer set. There is no error mesage(s), i.e., no 'Error' or 'Done' message at bottom of screen, just a blank screen. Direct navigation to a url is ok. Chrome seaches are also fine.

IE9: Changing the default download option from 'save' to 'save as'

$
0
0

While I have sent feedback into Microsoft, I thought I might post here aswell.

In IE9 when you click a download, a pop-up from the bottom asks 'Do you want to open or save file.xxx from x.com' then gives you the option to 'Open' 'Save' or 'Cancel'

During testing, we found that users would just click 'Save' then not know where the file they downloaded went. After explaining that it was in the downloads, they complained that previously they just chose where to save the file and it saved there. Now they have to open downloads and copy paste to the location.

We could teach the users to always drop down and select 'Save as' but I can tell you it would be a lot easier if there was a group policy, or a default we can change so the default was 'Save as'

Other than that, I have no complaints :D.

IE8 and IE9 is not working with Vista

$
0
0

I have uninstalled IE 8 and reinstalled it and Installed IE 9 --uninstalled it and nothing seems to work -- the pages will not load and what's really bad is I had to install Mozilla FireFox just to post this...........I need help.  I have followed the solutions.......I have Run a Fix this from Microsoft and nothing is ever found wrong........but it will still not work  Please help.


how to disable the gear and star icon in IE 9

$
0
0
  I have a communal PC on a nursing wing and I need to keep bored/disgruntled staff from changing settings.  I have disabled all menus and right-click options except for the star and gear icon in IE 9 Win 7.  How can I disable these or remove/gray out the menu options

CANNOT OPEN FILES USING DESKTOP ICONS IN IE8

$
0
0

I cannot access any files from my desktop  icons  using IE8.  Instead I get a box that says "Do you want to open or save this file."  My computer (windows 7, 64 bit) has been scanned and there is NO malware on my computer.  No matter what I click, NOTHING happens.


Dottie Sinkler

IE9 connectivity not working with the 32 bit browser.

$
0
0

The 64 bit IE9 browser works but the 32 bit browser on the same machine doesnt.  Anyone have any ideas?  I have verified DNS via DOS and can ping by name in DOS but my IE 9 32 bit browser cannot browse the internet or connect to windows update server.  The 64 bit browser can browse the internet and connect to the windows update server.  I have verified that no proxy setting are enabled (both in "internet Options" and in the registry.  I believe it has to have something to do with a registry setting being wrong somehow.  The reason I think this is because the 64bit browser is in a different path on the hard drive.  Internet Explorer 9 64 bit is installed at "C:\Program Files\Internet Explorer" whereas the 32 bit version is installed at "C:\Program Files (x86)\Internet Explorer"  this is the only thing left I dont know how to troubleshoot.  Is there a setting of how the two browsers point to the internet in the registry?

At this point any ideas are welcome as I have searched fourms for months now and am about ready to just reinstall windows but I have never encountered a computer issue I couldnt fix until now and truthfully this one has me baffeled.

Thanks for your time and effort in helping me try to resolve this issue,

James


FYI - I forgot to mention I have restart and entered into the Safe Mode with networking and I have the same problem.  64 bit browser works 32 bit doesnt.

IE 9 does not open downloads

$
0
0
Running Windows 7 SP1, IE 9.  I have no trouble downloading files, but when I click "Open" the download never opens, regardless of the file type.  I've reporduced this with executables, Word DOC files and Adobe PDF files among others.  I thought the problem might be Norton Antivirus, so I removed it, but the problem still occurred.  I have tried setting IE settings to the default, still no go.  Any ideas?

Ed Crowley MVP "There are seldom good technological solutions to behavioral problems."

Bing crashes on IE10 Metro-Style / W8-Pro-64

$
0
0

When I try to start bing.com W8-Style (i.e., from the 'Start' screen), it will start up twice and collapse after a few seconds, with the usual warning that IE will try twice and then give up. OTOH, it works fine when started from the desktop.

Ideas?

IE9 security update KB2744842

$
0
0
Did today's cumulative security update for IE9 (Cumulative Security Update for Internet Explorer 9 for Windows 7 for x64-based Systems (KB2744842)) delete, remove, or otherwise neutralize the "fix it" patch I installed previously, or do I need to go back and deactivate the patch myself?

Internet Explorer 10 is crashing in windows 8 64 bit

$
0
0

Hi,

After some time my Internet explorer 10  (both metro and desktop version) crashing continuously, even I have tried no Addon mode but the results are the same. 

Please help me

 C2D 1.60 GHz 

2 GB ram

windows 8 64 bit


Who Decided to Combine the Search Box and Address Bar?

$
0
0

A very wise person once said:

"Make everything as simple as possible, but no simpler!"

That fundamental rule of design has been volated with Internet Explorer 9.

I've been using IE9 for about a month now, trying to get used to all the new things.  Performance-wise it's nice, and the changes to security are welcome.  Okay, so the color-management is half baked, and it still has its problems, but I guess it's an improvement.

But what idiot decided to make the search box and the address field one and the same?

You think I'm being petty?  Go try to research what a particular file is - for example, go see if you can find info on "bib.dll".

It wants to make it into a URL.  It's not a URL.  It may LOOK like one, but it's a name, honest! 

Putting quotes around it doesn't help.  Maybe I'm missing the advanced syntax it takes to get such a thing to be a search term instead of a URL. Even if so, how is this an improvement or simplification?  It's certainly not intuitively obvious how to force a search, short of dredging up a link to Google and typing info in there directly.

Doing a search and typing in an address are two FUNDAMENTALLY DIFFERENT THINGS.

And hey, it's not a big deal that you can no longer see what it was you searched for, and maybe even edit it and search again.  No, because now the search engine pages have to waste space to put up a box showing what you just searched for, since it's now GONE out of the address field.

How does stuff like this pass a design review?

And to think the Microsoft Engineers worked extra hard to take it out.

You Engineers at Microsoft need to take the product back from your moronic marketing people and make it actually work right.

-Noel

IE9 not opening new tabs properly

$
0
0

I installed IE9 about three weeks ago and everything was working fine.  Now though, when I'm on a page and click a link that should open a new tab, that new tab opens but the page fails to load.  The only way around it is to copy the link I'm trying to open, and manually open it in a new tab or browser window.

Is this an update that I've downloaded as part of Microsoft's ongoing patch diet and if so, which one?  Is anyone else having this problem?  Incidentally, my OS is Win7SP1 and I'm using AVG Free 2011 virus scanner.

TIA

 

IE9 wont open pages, just give a new tab thats blank

$
0
0
IE9 won't open a lot of pages.  It just opens a new tab that is a blank screen and a empty tab title.  The extension types all vary.  However, if I cut and paste the link in a new tab it will work.  I already tried to down grade the version to 8, but it says its unsupported by windows 7 64 bit, funny I started with 8...

Will IE10 be available for Windows 7?

$
0
0

In the IE 10 FAQ for IT Pros, Windows 7 is nowhere to be found as a supported platform:

What operating systems does Internet Explorer 10 run on?

Internet Explorer 10 is supported on the following operating systems and platforms:

  • Windows 8
  • Windows Server 2012

  

Is the absence of Windows 7 a fact or are the FAQ just incomplete?


Can't connect to Yahoo.com Mail. Your Browser settings prevent you from automatically redirecting to a new URL.

$
0
0

I have IE9.  When accessing my Yahoo MAIL website (from www.yahoo.com) page it goes into a continuous loop directly after entering the Yahoo user Id and password for email eventually displays the 'browser settings prevent you from automatically redirecting to a new url.' message.  This started before and continues after my PC was cleaned of viruses.  The only advise I got elsewhere online was to turn on activex controls, press refresh,  and allow 'meta refresh'.  I did the first two to no effect.  I can't find out how to do the last one. 

Can anyone help?  It's annoying that I have to go to an old, slow XP machine to do what I need to do on Yahoo mail for an organization I handle communications for.   All other sites are accessible (so far) on my IE9 machine.

Reeve Dean  Mrelma@roadrunner.com

 

   
Viewing all 1908 articles
Browse latest View live