Ca veut dire que ton poste client n'a pas encore contacté ton serveur WSUS
Vérifie si les "Mises à jour automatiques" (dans les propriétés du Poste de travail) sont bien grisées (si c'est le cas, c'est que ton poste client a référencé ton serveure WSUS en tant que serveur de mises à jour).
Tu peux forcer celà avec ce script (nomme le fichier AUForceUpdate.cmd) :
=======================================================================
@echo off
Echo This batch file will Force the Update Detection from the AU client:
Echo 1. Stops the Automatic Updates Service (wuauserv)
Echo 2. Deletes the LastWaitTimeout registry key (if it exists)
Echo 3. Deletes the DetectionStartTime registry key (if it exists)
Echo 4. Deletes the NextDetectionTime registry key (if it exists)
Echo 5. Restart the Automatic Updates Service (wuauserv)
Echo 6. Force the detection
Pause
@echo on
net stop wuauserv
REG DELETE "HKLM\Software\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /v LastWaitTimeout /f
REG DELETE "HKLM\Software\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /v DetectionStartTime /f
Reg Delete "HKLM\Software\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /v NextDetectionTime /f
net start wuauserv
wuauclt /detectnow
@echo off
Echo This AU client will now check for the Updates on the Local WSUS Server.
Pause
=======================================================================
Message édité par Bocal83 le 17-06-2007 à 11:28:26