Tuesday, 27 May 2014

Powershell - Get Internet Explorer Settings

Get-IEProxySettings:

PS >  
Get-ItemProperty 'Registry::HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings' | select-object | export-csv proxysettings.csv -NoTypeInformation


To open the file:

PS > .\proxysettings.csv

In the proxysettings.csv file, search for pac


3 comments:

  1. Thanks! it saved me a day.

    ReplyDelete
  2. If possible, could you post me following script.

    I know part of the string in the registry (say proxy-intranet), what I need is find all the key whose value's substring is proxy-intranet, and its full value. (This would be helpful in many ways)

    ReplyDelete
  3. Could you use {code} snippet instead of print screen image?

    ReplyDelete