Is it possible to change the automatic configuration script address in the LAN settings of Internet Explorer 8 with the help of a script?

24,665

Solution 1

You can use the following commands in a batch file (.bat file) Use of batch files relieves you from making so many UI clicks to perform a simple task of assigning a value to "Use automatic configuration script" text box in the internet options -> Advanced settings.

To use an automatic config script

reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v AutoConfigURL /t REG_SZ /d "http://www.xxxxx.com:1234/sampleScript" /f

The result looks like:

enter image description here

To clear that field

reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v AutoConfigURL /t REG_SZ /d "" /f

Solution 2

If you can use PowerShell:

Set the property

Set-ItemProperty -Path 'HKCU:Software\Microsoft\Windows\CurrentVersion\Internet Settings' -Name AutoConfigURL -Value 'http://www.yourdomain.com/config.pac'

Clear the property

Remove-ItemProperty -Path 'HKCU:Software\Microsoft\Windows\CurrentVersion\Internet Settings' -Name AutoConfigURL

Solution 3

Use below Powershell code to achieve this-

$Users = Get-WmiObject Win32_UserProfile -Filter 'Special=False' | select SID

foreach($User in $Users)
{
$SID = $User.SID
reg add "HKEY_USERS\$SID\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v AutoConfigURL /t REG_SZ /d "http://xyz/wpad.dat" /f
REG ADD "HKEY_USERS\$SID\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v AutoDetect /t REG_DWORD /d 0 /f
}
Share:
24,665
turbo88
Author by

turbo88

Updated on July 09, 2022

Comments

  • turbo88
    turbo88 almost 2 years

    I use 2 different automatic configuration script addresses in the LAN settings of Internet Explorer 8. During the course of my work, I need to switch between them very often. Every time I have to do it manually.

    Is there a way I can automate it through a script or something, so that I can switch between them whenever I want?