Page 1 of 1
[Gelöst] KB944036 --> IE 8

Posted:
06.02.2014, 17:58
by hdneuenfeldt
Hallo Zusammen,
ich fand in der Doku :
kb944036 (Internet Explorer 8 (will be explicitly installed if selected))
ich starte mit Client\Update.cmd :
- Code: Select all
@echo off
cd /D "%~dp0cmd"
start /wait DoUpdate.cmd /verify /instie7 /instie8 /instie9 /instie10 /instie11 /updatercerts /updatecpp /updatedx /instmssl /updatewmp /updatetsc /instdotnet35 /instdotnet4 /instpsh /instwmf /instofc
Wieso bekomme ich dennoch die Meldung :
Info: Skipping update kb940767 (Internet Explorer 7) due to matching black list entry.
Info: Skipping update kb944036 (Internet Explorer 8) due to matching black list entry.
Info: Skipping update kb976002 (Browser Choice) due to matching black list entry.
Viele Grüße
Hans-Dieter
Re: KB944036 --> IE 8

Posted:
06.02.2014, 19:03
by aker
Ich vermute, dass es da durch das setzen von allen "/installie"-Parametern zu einem Durcheinander im Skript gekommen ist.
1. der letzte /installie-Parameter überschreibt alle anderen => hier also Version 11
2. ich vermute, dass auf dem Rechner Windows XP installiert ist (sonst würden auch IE 9 und neuer angezeigt)
3. der IE 11 ist nicht XP-kompatibel
Daraus resultiert also: wsusou versucht den IE 11 zu installieren, kann dies jedoch nicht, weswegen keine IE-Installation stattfindet. Darum meldet wsusou einen nicht installierten IE.
Bitte nur eine IE-Version zur Installation auswählen.
Viele Grüße
Re: KB944036 --> IE 8

Posted:
06.02.2014, 19:25
by hdneuenfeldt
Schade,
es wäre so schön gewesen, ein Script für alle OS-Versionen ...
ist es vielleicht möglich eine solche "Intelligenz" dem Programm beizubringen ?
Mit der Einschränkung auf eine IE Version läufts ..
Re: KB944036 --> IE 8

Posted:
06.02.2014, 20:11
by aker
hdneuenfeldt wrote:ist es vielleicht möglich eine solche "Intelligenz" dem Programm beizubringen ?
Ich wüsste spontan keine Lösung.
@WSUSUpdateAdmin
Wäre ein Parameter "/autoinstallie" möglich?
Viele Grüße
Re: KB944036 --> IE 8

Posted:
07.02.2014, 06:30
by WSUSUpdateAdmin
Moin!
aker wrote:Wäre ein Parameter "/autoinstallie" möglich?
Ja, ich denke schon.
Schau' ich mir mal an.
Viele Grüße
Torsten Wittrock
Re: KB944036 --> IE 8

Posted:
08.02.2014, 10:10
by aker
.\client\cmd\DoUpdate.cmd wrote:if /i "%1"=="/instie10" set INSTALL_IE=/instie10
if /i "%1"=="/instie11" set INSTALL_IE=/instie11
if /i "%1"=="/autoinstie" set INSTALL_IE=/autoinstie
if /i "%1"=="/updatecpp" set UPDATE_CPP=/updatecpp
if /i "%1"=="/updatedx" set UPDATE_DX=/updatedx
.\client\cmd\DoUpdate.cmd wrote:if %IE_VER_BUILD% GTR %IE_VER_TARGET_BUILD% goto SkipIEInst
if %IE_VER_REVIS% GEQ %IE_VER_TARGET_REVIS% goto SkipIEInst
if "%IE_VER_TARGET_MAJOR%"=="7" set INSTALL_IE=/instie7
if "%IE_VER_TARGET_MAJOR%"=="8" set INSTALL_IE=/instie8
if "%IE_VER_TARGET_MAJOR%%IE_VER_TARGET_MINOR%"=="90" set INSTALL_IE=/instie9
if "%IE_VER_TARGET_MAJOR%%IE_VER_TARGET_MINOR%"=="910" set INSTALL_IE=/instie10
if "%IE_VER_TARGET_MAJOR%%IE_VER_TARGET_MINOR%"=="911" set INSTALL_IE=/instie11
:InstallIE
goto IE%OS_NAME%
.\client\cmd\SetTargetEnvVars.cmd wrote::Windows5.1
...
set WSH_VER_TARGET_MAJOR=5
set WSH_VER_TARGET_MINOR=7
if /i "%1"=="/autoinstie" (set IE_VER_TARGET_MAJOR=8) else (
if /i "%1"=="/instie8" (set IE_VER_TARGET_MAJOR=8) else (
if /i "%1"=="/instie7" (set IE_VER_TARGET_MAJOR=7) else (set IE_VER_TARGET_MAJOR=6)
)
)
set IE_VER_TARGET_MINOR=0
set DOTNET4_VER_TARGET_MINOR=0
Viele Grüße
Re: KB944036 --> IE 8

Posted:
10.02.2014, 14:56
by WSUSUpdateAdmin
Moin!
http://trac.wsusoffline.net/browser/trunk (r557): "- DoUpdate.cmd script now supports "/instielatest" parameter for platform independent custom scripting (Thanks to "hdneuenfeldt" and "aker")"
GTW
Re: KB944036 --> IE 8

Posted:
10.02.2014, 21:05
by hdneuenfeldt
MERCI !!!!!!!!
Wann fließt eine solche Änderung ins offizielle Update ein ?
Re: KB944036 --> IE 8

Posted:
10.02.2014, 23:39
by aker
Beim nächsten Release.
Viele Grüße