Advertisement
Guest User

Untitled

a guest
Aug 7th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.70 KB | None | 0 0
  1. REM Problem title: Change Internet Explorer Homepage..
  2. REM Problem description: Hi, I am an IT manager and my employer wants all the computers REM in the company to display the same Homepage. Can anyone out there help me with this REM problem?
  3. REM Fix description: This is a Batch file that should be able to do what you are asking REM for. Simply change the URL with your URL on line 5, "REG ADD" command option "/d".
  4. @echo off
  5. echo This script will update your HomePage to the appropriate page. "Press any key to begin".
  6. pause
  7. REG DELETE "HKCU\Software\Microsoft\Internet Explorer\Main" /v "Start Page" /f
  8. REG ADD "HKCU\Software\Microsoft\Internet Explorer\Main" /v "Start Page" /d "http://www.gfi.com" /f
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement