| Author |
Message |
Muller Guest
Posts: 15914
Offline
|
Posted: Fri Apr 29, 2005 10:43 am Post subject: Disable Internet Explorer in XP |
|
|
Hello,
I want to know how to disable Internet Explorer in Windows XP operating system. I like firefox and so want to enable Internet Explorer. How can i do this?
Thanks. |
|
| Back to top |
|
 |
Guest
Posts: 15914
Offline
|
Posted: Sat Apr 30, 2005 6:53 am Post subject: |
|
|
Follow this steps to disable your IE in XP.
Open up Notepad
- Cut and paste the following into the empty Notepad window:
@echo off
C:
cd "\Program Files\Internet Explorer"
if not exist IEXPLORE.EXE goto End
if exist IEXPLORE.EX_ del IEXPLORE.EX_
if not exist IEXPLORE.DIR md IEXPLORE.DIR
if not exist IEXPLORE.DIR goto End
attrib -r -h -s IEXPLORE.EXE
ren IEXPLORE.EXE IEXPLORE.EX_
if exist IEXPLORE.EXE goto End
ren IEXPLORE.DIR IEXPLORE.EXE
echo IE disabled.
echo If prompted, click "Cancel" then "Yes" on File Protection restore.
echo Run enable-ie.bat to allow IE to run again.
:End
The above code assumes your Windows XP is installed to your C:\ drive.
- Now save text file this as "disable-ie.bat" to your desktop, or elsewhere.
Bye. |
|
| Back to top |
|
 |
|
|