cmd/bat to uninstall IE ?
#1
Posted 22 November 2012 - 12:38 PM
don't know if its too much to ask
but does anyone know to make .bat/.cmd script that would work under both xp and win7
that would silently uninstall IE (just like user can from control panel remove it) ?
#2
Posted 22 November 2012 - 01:06 PM
%systemroot%\ie8\spuninst\spuninst.exeI have no idea if there are switches to make it silent or if it already does it silently.
#3
Posted 02 December 2012 - 02:06 PM
there was no such file nor any uninstall file in the folder of ie6 :/
#4
Posted 02 December 2012 - 02:11 PM
#5
Posted 02 December 2012 - 06:13 PM
but when user "removes" ie via cpanel then it removes .exe and whatever is tied with .exe
this is what I'm after for
This post has been edited by vinifera: 02 December 2012 - 06:13 PM
#6
Posted 02 December 2012 - 07:14 PM
http://support.microsoft.com/kb/957700
#8
Posted 03 December 2012 - 06:02 AM
cluberti, on 02 December 2012 - 07:14 PM, said:
http://support.microsoft.com/kb/957700
Well, not really.
nlite does remove things at installation, not after it.
And then if you want a true IE-less XP you could use FdV's (Fred De Vorck) approach/inf's, etc.
To clarify, these methods "prevent install", do not "uninstall".
Possibly the Commercial XPlite would do "after install".
jaclaz
#9
Posted 03 December 2012 - 08:12 AM
(under condition PC doesn't use win updates) ?
#10
Posted 03 December 2012 - 09:11 AM
http://www.vorck.com/windows/
http://www.msfn.org/...-in-windows-xp/
#11
Posted 29 December 2012 - 09:03 PM
and not the ie.exe itself ?
#12
Posted 29 December 2012 - 10:26 PM
Here is a batch script to uninstall it over the control panel (Tested on WinXP):
@ECHO OFF ECHO. ECHO Uninstalling Internet Explorer... SET WC="%Temp%\WC_Uninstall_Config.txt" ECHO [components]> %WC% ECHO IEAccess = Off>> %WC% sysocmgr /i:"%WINDIR%\inf\sysoc.inf" /u:"%Temp%\WC_Uninstall_Config.txt" DEL "%Temp%\WC_Uninstall_Config.txt" ECHO Done pause EXIT
http://itk.samfundet..._components.htm
This post has been edited by Outbreaker: 29 December 2012 - 10:45 PM
#13
Posted 30 December 2012 - 04:47 AM
@(ECHO/[Components]&ECHO/IEAccess=off)>"%TEMP%\_$.TXT" @SYSOCMGR /i:"%SYSTEMROOT%\INF\SYSOC.INF" /u:"%TEMP%\_$.TXT" @DEL "%TEMP%\_$.TXT"Remember that this doesn't remove IE just removes the default visible 'shortcuts' to it.
If sysocmgr only parses specific sections of the answer file, the following script which doesn't write to a file may prove useful:
@SYSOCMGR /i:"%SYSTEMROOT%\INF\SYSOC.INF" /u:%0 @GOTO :EOF [Components] IEAccess=off
#15
Posted 30 December 2012 - 02:46 PM
Cheers and Regards
#16
Posted 30 December 2012 - 03:00 PM
vinifera, on 30 December 2012 - 02:39 PM, said:
the ie.exe is
That's not what you said in your first post!
vinifera, on 22 November 2012 - 12:38 PM, said:
don't know if its too much to ask
but does anyone know to make .bat/.cmd script that would work under both xp and win7
that would silently uninstall IE (just like user can from control panel remove it) ?
When you uninstall from Control Panel, you are actually doing exactly that, removing 'shortcuts'.
#17
Posted 30 December 2012 - 03:37 PM
thought that XP did same before good people here told it does not
bphlpt, on 30 December 2012 - 02:46 PM, said:
yeh... that sucks
ok thanks
#18
Posted 30 December 2012 - 07:19 PM
This post has been edited by Outbreaker: 30 December 2012 - 07:19 PM
#19
Posted 30 December 2012 - 07:31 PM
no it just isn't there anymore
its nor hidden nor "hidden OS file",
folder only has ieinstal.exe and ielowutil.exe
while system wide anything related left is: ie4uinit.exe, IEExec.exe and ieUnatt.exe
#20
Posted 30 December 2012 - 08:18 PM
This post has been edited by Outbreaker: 30 December 2012 - 08:30 PM
- ← {Req}uninstall .dll in explorer.exe
- Programming (C++, Delphi, VB/VBS, CMD/batch, etc.)
- {Rea}Backup & Repalce .dll .exe In System32 →



Help


Back to top










