Korrekte WSUS Konfiguration ohne AD
Hallo Leute
ich habe eine AD-lose Landschaft in welcher viele virtuelle Maschinen (W2K12R2) laufen. Nun habe ich einen WSUS eingerichtet und diesen eingerichtet:
- Proxy eingetragen auf Port 8080
- WSUS Ports sind freigeschaltet (8530, 8531, 443)
- Updates warden local auf die C-Platte des WSUS heruntergeladen
- Aut. Approvals für critical und security updates.
- Auf den Clients ist folgendes eingestellt:
Nun zu meiner Frage. Die Clients laden nicht alle ihre Updates herunter. Bei einem dieser Clients habe ich jetzt folgendes gemacht:
1. Den Ordner "SoftwareDistribution umbenannt:
2. Dann habe ich den WU Agent resettet:
3. Dann habe ich den Rechner rebooted
4. Dann habe ich einen Windows update check durchgeführt, Ergebnis: Most recent check for updates today at 04:32 PM - Updates were installed: never.
... und so sieht die Logdatei aus:
Hat einer ne Ahnung was ich falsch mache???
ich habe eine AD-lose Landschaft in welcher viele virtuelle Maschinen (W2K12R2) laufen. Nun habe ich einen WSUS eingerichtet und diesen eingerichtet:
- Proxy eingetragen auf Port 8080
- WSUS Ports sind freigeschaltet (8530, 8531, 443)
- Updates warden local auf die C-Platte des WSUS heruntergeladen
- Aut. Approvals für critical und security updates.
- Auf den Clients ist folgendes eingestellt:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate]
"DisableWindowsUpdateAccess"=dword:00000001
"WUServer"="http://wsus.firma.domain.com:8530"
"WUStatusServer"="http://wsus.firma.domain.com:8530"
"TargetGroupEnabled"=dword:00000001
"TargetGroup"="VMs"
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU]
"NoAutoRebootWithLoggedOnUsers"=dword:00000001
"NoAutoUpdate"=dword:00000000
"AUOptions"=dword:00000003
"ScheduledInstallDay"=dword:00000001
"ScheduledInstallTime"=dword:00000003
"UseWUServer"=dword:00000001
"DetectionFrequencyEnabled"=dword:00000001
"DetectionFrequency"=dword:00000016
Nun zu meiner Frage. Die Clients laden nicht alle ihre Updates herunter. Bei einem dieser Clients habe ich jetzt folgendes gemacht:
1. Den Ordner "SoftwareDistribution umbenannt:
net stop WuAuServ
cd %windir%
ren SoftwareDistribution SoftwareDistribution_OLD
net start WuAuServ
2. Dann habe ich den WU Agent resettet:
@echo off
cls
REM ==================================================================================
REM DESCRIPTION : This script resets all of Windows Update Agent settings.
REM AUTHOR : Luca Fabbri
REM VERSION HISTORY: 2.0 - Start
REM ==================================================================================
@echo 1. Stopping Windows Update, BITS, Application Identity, Cryptographic Services and SMS Host Agent services...
net stop wuauserv
net stop bits
net stop appidsvc
net stop cryptsvc
net stop ccmexec
@echo 2. Checking if services were stopped successfully...
sc query wuauserv | findstr /I /C:"STOPPED"
if %errorlevel% NEQ 0 goto END
sc query bits | findstr /I /C:"STOPPED"
if %errorlevel% NEQ 0 goto END
sc query appidsvc | findstr /I /C:"STOPPED"
if %errorlevel% NEQ 0 sc query appidsvc | findstr /I /C:"OpenService FAILED 1060"
if %errorlevel% NEQ 0 goto END
sc query cryptsvc | findstr /I /C:"STOPPED"
if %errorlevel% NEQ 0 goto END
sc query ccmexec | findstr /I /C:"STOPPED"
if %errorlevel% NEQ 0 sc query ccmexec | findstr /I /C:"OpenService FAILED 1060"
if %errorlevel% NEQ 0 goto END
@echo 3. Deleting AU cache folder and log file...
del /f /q "%ALLUSERSPROFILE%\Application Data\Microsoft\Network\Downloader\qmgr*.dat"
del /f /s /q %SystemRoot%\SoftwareDistribution\*.*
del /f /s /q %SystemRoot%\system32\catroot2\*.*
del /f /q %SystemRoot%\WindowsUpdate.log
REM @echo 3. Renaming AU cache folder and log file...
REM del /f /q "%ALLUSERSPROFILE%\Application Data\Microsoft\Network\Downloader\qmgr*.dat"
REM ren %SystemRoot%\SoftwareDistribution *.bak
REM ren %SystemRoot%\system32\catroot2 *.bak
REM ren %SystemRoot%\WindowsUpdate.log *.bak
REM sc.exe sdset bits D:(A;;CCLCSWRPWPDTLOCRRC;;;SY)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCLCSWLOCRRC;;;AU)(A;;CCLCSWRPWPDTLOCRRC;;;PU)
REM sc.exe sdset wuauserv D:(A;;CCLCSWRPWPDTLOCRRC;;;SY)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCLCSWLOCRRC;;;AU)(A;;CCLCSWRPWPDTLOCRRC;;;PU)
@echo 4. Re-registering DLL files...
cd /d %WinDir%\system32
regsvr32.exe /s atl.dll
regsvr32.exe /s urlmon.dll
regsvr32.exe /s mshtml.dll
regsvr32.exe /s shdocvw.dll
regsvr32.exe /s browseui.dll
regsvr32.exe /s jscript.dll
regsvr32.exe /s vbscript.dll
regsvr32.exe /s scrrun.dll
regsvr32.exe /s msxml.dll
regsvr32.exe /s msxml3.dll
regsvr32.exe /s msxml6.dll
regsvr32.exe /s actxprxy.dll
regsvr32.exe /s softpub.dll
regsvr32.exe /s wintrust.dll
regsvr32.exe /s dssenh.dll
regsvr32.exe /s rsaenh.dll
regsvr32.exe /s gpkcsp.dll
regsvr32.exe /s sccbase.dll
regsvr32.exe /s slbcsp.dll
regsvr32.exe /s cryptdlg.dll
regsvr32.exe /s oleaut32.dll
regsvr32.exe /s ole32.dll
regsvr32.exe /s shell32.dll
regsvr32.exe /s initpki.dll
regsvr32.exe /s wuapi.dll
regsvr32.exe /s wuaueng.dll
regsvr32.exe /s wuaueng1.dll
regsvr32.exe /s wucltui.dll
regsvr32.exe /s wups.dll
regsvr32.exe /s wups2.dll
regsvr32.exe /s wuweb.dll
regsvr32.exe /s qmgr.dll
regsvr32.exe /s qmgrprxy.dll
regsvr32.exe /s wucltux.dll
regsvr32.exe /s muweb.dll
regsvr32.exe /s wuwebv.dll
@echo 5. Removing WSUS Client Id...
REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v AccountDomainSid /f
REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v PingID /f
REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v SusClientId /f
@echo 6. Resetting Winsock and WinHTTP Proxy...
netsh winsock reset
proxycfg.exe -d
netsh winhttp reset proxy
@echo 7. Starting SMS Host Agent, Cryptographic Services, Application Identity, BITS, Windows Update services...
net start ccmexec
net start cryptsvc
net start appidsvc
net start bits
net start wuauserv
@echo 8. Deleting all BITS jobs...
bitsadmin.exe /reset /allusers
@echo 9. Forcing AU discovery...
wuauclt /resetauthorization /detectnow
:END
3. Dann habe ich den Rechner rebooted
4. Dann habe ich einen Windows update check durchgeführt, Ergebnis: Most recent check for updates today at 04:32 PM - Updates were installed: never.
... und so sieht die Logdatei aus:
2016-07-03 16:41:12:666 716 4b8 AU ########### AU: Initializing Automatic Updates ###########
2016-07-03 16:41:12:666 716 4b8 AU AIR Mode is disabled
2016-07-03 16:41:12:666 716 4b8 AU # Policy Driven Provider: http:{{comment_single_line_double_slash:0}}
2016-07-03 16:41:12:666 716 4b8 AU # Detection frequency: 22
2016-07-03 16:41:12:666 716 4b8 AU # Target group: VMs
2016-07-03 16:41:12:666 716 4b8 AU # Approval type: Pre-install notify (Policy)
2016-07-03 16:41:12:666 716 4b8 AU # Auto-install minor updates: No (User preference)
2016-07-03 16:41:12:666 716 4b8 AU # Will interact with non-admins (Non-admins are elevated (User preference))
2016-07-03 16:41:12:666 716 4b8 AU WARNING: Failed to get Wu Exemption info from NLM, assuming not exempt, error = 0x80240037
2016-07-03 16:41:12:666 716 4b8 AU WARNING: Failed to get Network Cost info from NLM, assuming network is NOT metered, error = 0x80240037
2016-07-03 16:41:12:666 716 4b8 AU AU finished delayed initialization
2016-07-03 16:41:12:666 716 4b8 AU Processing post-reboot results now.
2016-07-03 16:41:12:666 716 4b8 AU Obtained Post reboot hr from Agent:8024000c
2016-07-03 16:41:12:682 716 4b8 AU Currently AUX is enabled - so not show any WU Upgrade notifications.
2016-07-03 16:41:12:682 716 4b8 AU WARNING: Failed to get Network Cost info from NLM, assuming network is NOT metered, error = 0x80240037
2016-07-03 16:41:12:682 716 4b8 AU WARNING: Failed to get Network Cost info from NLM, assuming network is NOT metered, error = 0x80240037
2016-07-03 16:41:12:682 716 4b8 AU Triggering Offline detection (non-interactive)
2016-07-03 16:41:12:682 716 4b8 AU Adding timer:
2016-07-03 16:41:12:682 716 4b8 AU Timer: 31DA7559-FE27-4810-8FF6-987195B1FD98, Expires 2016-07-03 14:41:12, not idle-only, not network-only
2016-07-03 16:41:12:682 716 4b8 AU Currently AUX is enabled - so not show any WU Upgrade notifications.
2016-07-03 16:41:12:682 716 4b8 AU WARNING: Failed to get Network Cost info from NLM, assuming network is NOT metered, error = 0x80240037
2016-07-03 16:41:12:682 716 4b8 AU WARNING: Failed to get Network Cost info from NLM, assuming network is NOT metered, error = 0x80240037
2016-07-03 16:41:12:682 716 620 DnldMgr Asking handlers to reconcile their sandboxes
2016-07-03 16:41:12:682 716 4b8 AU #############
2016-07-03 16:41:13:182 716 4b8 AU ## START ## AU: Search for updates
2016-07-03 16:41:13:182 716 4b8 AU #########
2016-07-03 16:41:13:182 716 4b8 IdleTmr WU operation (CSearchCall::Init ID 1) started; operation # 10; does not use network; is at background priority
2016-07-03 16:41:13:260 716 4b8 Report *********** Report: Initializing static reporting data ***********
2016-07-03 16:41:13:260 716 4b8 Report * OS Version = 6.3.9600.0.0.196880
2016-07-03 16:41:13:260 716 4b8 Report * OS Product Type = 0x00000007
2016-07-03 16:41:13:260 716 4b8 Report * Computer Brand = VMware, Inc.
2016-07-03 16:41:13:260 716 4b8 Report * Computer Model = VMware Virtual Platform
2016-07-03 16:41:13:260 716 4b8 Report * Platform Role = 1
2016-07-03 16:41:13:260 716 4b8 Report * AlwaysOn/AlwaysConnected (AOAC) = 0
2016-07-03 16:41:13:260 716 4b8 Report * Bios Revision = 6.00
2016-07-03 16:41:13:260 716 4b8 Report * Bios Name = PhoenixBIOS 4.0 Release 6.0
2016-07-03 16:41:13:260 716 4b8 Report * Bios Release Date = 2014-09-30T00:00:00
2016-07-03 16:41:13:260 716 4b8 Report * Bios Sku Number unavailable.
2016-07-03 16:41:13:260 716 4b8 Report * Bios Vendor = Phoenix Technologies LTD
2016-07-03 16:41:13:260 716 4b8 Report * Bios Family unavailable.
2016-07-03 16:41:13:260 716 4b8 Report * Bios Major Release = 4
2016-07-03 16:41:13:260 716 4b8 Report * Bios Minor Release = 6
2016-07-03 16:41:13:260 716 4b8 Report * Locale ID = 1033
2016-07-03 16:41:13:260 716 4b8 Handler Calculating current update level for this session
2016-07-03 16:41:14:666 716 4b8 Handler UH: Current cumulative update level calculated: package identity Package_for_KB3000850~31bf3856ad364e35~amd64~~6.3.1.8, display name KB3000850, support URL http://support.microsoft.com/?kbid=3000850, timestamp 01d00612ee58ae04
2016-07-03 16:41:14:666 716 4b8 Handler Done calculating current update level for this session
2016-07-03 16:41:15:838 716 4b8 Agent *** START *** Queueing Finding updates [CallerId = AutomaticUpdates Id = 1]
2016-07-03 16:41:15:838 716 4b8 AU <<## SUBMITTED ## AU: Search for updates [CallId = {521C9FAF-75B0-4F11-A066-EE662419A6C4} ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}]
2016-07-03 16:41:15:838 716 4b8 AU Currently AUX is enabled - so not show any WU Upgrade notifications.
2016-07-03 16:41:15:838 716 4b8 AU WARNING: Failed to get Network Cost info from NLM, assuming network is NOT metered, error = 0x80240037
2016-07-03 16:41:15:838 716 4b8 AU WARNING: Failed to get Network Cost info from NLM, assuming network is NOT metered, error = 0x80240037
2016-07-03 16:41:15:854 716 4b8 Service UpdateNetworkState Ipv4, cNetworkInterfaces = 1.
2016-07-03 16:41:15:854 716 950 Agent *** END *** Queueing Finding updates [CallerId = AutomaticUpdates Id = 1]
2016-07-03 16:41:15:901 716 950 Agent *************
2016-07-03 16:41:15:901 716 950 Agent ** START ** Agent: Finding updates [CallerId = AutomaticUpdates Id = 1]
2016-07-03 16:41:16:088 716 950 Agent *********
2016-07-03 16:41:16:088 716 950 Agent * Online = No; Ignore download priority = No
2016-07-03 16:41:16:167 716 950 Agent * Criteria = "IsInstalled=0 and DeploymentAction='Installation' or IsPresent=1 and DeploymentAction='Uninstallation' or IsInstalled=1 and DeploymentAction='Installation' and RebootRequired=1 or IsInstalled=0 and DeploymentAction='Uninstallation' and RebootRequired=1"
2016-07-03 16:41:16:167 716 950 Agent * ServiceID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7} Managed
2016-07-03 16:41:16:167 716 950 Agent * Search Scope = {Machine & All Users}
2016-07-03 16:41:16:167 716 950 Agent * Caller SID for Applicability: S-1-5-18
2016-07-03 16:41:16:479 716 4b8 Service UpdateNetworkState Ipv6, cNetworkInterfaces = 1.
2016-07-03 16:41:16:495 716 4b8 Service UpdateNetworkState Ipv6, cNetworkInterfaces = 2.
2016-07-03 16:41:17:901 716 950 Agent WARNING: Failed to evaluate Installed rule, updateId = {{4DEB7F5F-D14D-43E2-93FA-F81B10846CF7}.200}, hr = 80070057
2016-07-03 16:41:17:901 716 950 Agent WARNING: Failed to evaluate Installable rule, updateId = {{4DEB7F5F-D14D-43E2-93FA-F81B10846CF7}.200}, hr = 80070057
2016-07-03 16:41:17:901 716 950 Agent WARNING: Failed to evaluate Installed rule, updateId = {{22FFD207-0EB5-4FCF-9F6A-67078327D7A3}.200}, hr = 80070057
2016-07-03 16:41:17:917 716 950 Agent WARNING: Failed to evaluate Installed rule, updateId = {{A4ECF96E-FE76-4933-B1A9-FAA712DC2A3B}.200}, hr = 80070057
2016-07-03 16:41:17:917 716 950 Agent WARNING: Failed to evaluate Installable rule, updateId = {{A4ECF96E-FE76-4933-B1A9-FAA712DC2A3B}.200}, hr = 80070057
2016-07-03 16:41:17:917 716 950 Agent WARNING: Failed to evaluate Installed rule, updateId = {{9941EB5F-4953-446D-99A2-C5989C596283}.200}, hr = 80070057
2016-07-03 16:41:17:917 716 950 Agent WARNING: Failed to evaluate Installable rule, updateId = {{9941EB5F-4953-446D-99A2-C5989C596283}.200}, hr = 80070057
2016-07-03 16:41:27:445 716 950 Agent * Found 0 updates and 79 categories in search; evaluated appl. rules of 775 out of 1961 deployed entities
2016-07-03 16:41:27:507 716 950 Agent *********
2016-07-03 16:41:27:507 716 950 Agent ** END ** Agent: Finding updates [CallerId = AutomaticUpdates Id = 1]
2016-07-03 16:41:27:507 716 950 Agent *************
2016-07-03 16:41:27:507 716 950 IdleTmr WU operation (CSearchCall::Init ID 1, operation # 10) stopped; does not use network; is at background priority
2016-07-03 16:41:27:507 716 a1c AU >>## RESUMED ## AU: Search for updates [CallId = {521C9FAF-75B0-4F11-A066-EE662419A6C4} ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}]
2016-07-03 16:41:27:507 716 a1c AU # 0 updates detected
2016-07-03 16:41:27:507 716 a1c AU #########
2016-07-03 16:41:27:507 716 a1c AU ## END ## AU: Search for updates [CallId = {521C9FAF-75B0-4F11-A066-EE662419A6C4} ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}]
2016-07-03 16:41:27:507 716 a1c AU #############
2016-07-03 16:41:27:507 716 a1c AU All AU searches complete.
2016-07-03 16:41:27:523 716 a1c AU Adding timer:
2016-07-03 16:41:27:523 716 a1c AU Timer: 31DA7559-FE27-4810-8FF6-987195B1FD98, Expires 2016-07-04 08:51:32, not idle-only, not network-only
2016-07-03 16:41:27:617 716 a1c AU Currently AUX is enabled - so not show any WU Upgrade notifications.
2016-07-03 16:41:27:617 716 a1c AU WARNING: Failed to get Network Cost info from NLM, assuming network is NOT metered, error = 0x80240037
2016-07-03 16:41:27:617 716 a1c AU WARNING: Failed to get Network Cost info from NLM, assuming network is NOT metered, error = 0x80240037
2016-07-03 16:54:47:372 332 930 Misc =========== Logging initialized (build: 7.9.9600.18340, tz: +0200) ===========
2016-07-03 16:54:47:372 332 930 Misc = Process: C:\Windows\Explorer.EXE
2016-07-03 16:54:47:372 332 930 Misc = Module: C:\Windows\system32\wucltux.dll
2016-07-03 16:54:47:372 332 930 CltUI FATAL: CNetworkCostChangeHandler::RegisterForCostChangeNotifications: CoCreateInstance failed with error 80004002
2016-07-03 16:54:47:372 332 930 CltUI WARNING: RegisterNetworkCostChangeNotification: Error 80004002
2016-07-03 16:42:18:733 716 4b8 Service UpdateNetworkState Ipv6, cNetworkInterfaces = 1.
2016-07-03 16:42:18:733 716 4b8 Service UpdateNetworkState Ipv6, cNetworkInterfaces = 0.
2016-07-03 16:42:37:151 716 4b8 Service UpdateNetworkState Ipv6, cNetworkInterfaces = 1.
2016-07-03 16:42:37:307 716 4b8 Service UpdateNetworkState Ipv6, cNetworkInterfaces = 2.
2016-07-03 16:43:40:198 716 4b8 Service UpdateNetworkState Ipv6, cNetworkInterfaces = 1.
2016-07-03 16:43:40:198 716 4b8 Service UpdateNetworkState Ipv6, cNetworkInterfaces = 0.
2016-07-03 16:44:22:229 716 4b8 Service UpdateNetworkState Ipv6, cNetworkInterfaces = 1.
2016-07-03 16:44:22:307 716 4b8 Service UpdateNetworkState Ipv6, cNetworkInterfaces = 2.
2016-07-03 16:45:25:267 716 4b8 Service UpdateNetworkState Ipv6, cNetworkInterfaces = 0.
2016-07-03 16:46:15:241 716 4b8 Service UpdateNetworkState Ipv6, cNetworkInterfaces = 1.
2016-07-03 16:46:15:319 716 4b8 Service UpdateNetworkState Ipv6, cNetworkInterfaces = 2.
2016-07-03 16:47:18:280 716 4b8 Service UpdateNetworkState Ipv6, cNetworkInterfaces = 1.
2016-07-03 16:47:18:280 716 4b8 Service UpdateNetworkState Ipv6, cNetworkInterfaces = 0.
2016-07-03 16:48:38:778 716 4b8 Service UpdateNetworkState Ipv6, cNetworkInterfaces = 1.
2016-07-03 16:48:38:809 716 4b8 Service UpdateNetworkState Ipv6, cNetworkInterfaces = 2.
2016-07-03 16:49:27:653 716 620 EP Got WSUS Client/Server URL: "http://wsus.firma.domain.com:8530/ClientWebService/client.asmx"
2016-07-03 16:49:27:747 716 620 EP Got WSUS Reporting URL: "http://wsus.firma.domain.com:8530/ReportingWebService/ReportingWebService.asmx"
2016-07-03 16:49:27:747 716 620 Report OpenReportingWebServiceConnection, reporting URL = http://wsus.firma.domain.com:8530/ReportingWebService/ReportingWebService.asmx
2016-07-03 16:49:27:747 716 620 IdleTmr WU operation (CLegacyEventUploader::HandleEvents) started; operation # 19; does use network; is at background priority
2016-07-03 16:49:27:747 716 620 Report Uploading 2 events using cached cookie.
2016-07-03 16:49:27:841 716 620 Report Reporter successfully uploaded 2 events.
2016-07-03 16:49:27:841 716 620 IdleTmr WU operation (CLegacyEventUploader::HandleEvents, operation # 19) stopped; does use network; is at background priority
2016-07-03 16:49:41:841 716 4b8 Service UpdateNetworkState Ipv6, cNetworkInterfaces = 1.
2016-07-03 16:49:41:841 716 4b8 Service UpdateNetworkState Ipv6, cNetworkInterfaces = 0.
2016-07-03 16:51:33:359 716 4b8 Service UpdateNetworkState Ipv6, cNetworkInterfaces = 1.
2016-07-03 16:51:33:818 716 4b8 Service UpdateNetworkState Ipv6, cNetworkInterfaces = 2.
2016-07-03 16:52:36:396 716 4b8 Service UpdateNetworkState Ipv6, cNetworkInterfaces = 0.
2016-07-03 16:54:33:654 716 4b8 Service UpdateNetworkState Ipv6, cNetworkInterfaces = 1.
2016-07-03 16:54:33:811 716 4b8 Service UpdateNetworkState Ipv6, cNetworkInterfaces = 2.
2016-07-03 16:54:38:272 716 4b8 AU Currently AUX is enabled - so not show any WU Upgrade notifications.
2016-07-03 16:54:38:287 716 4b8 AU WARNING: Failed to get Network Cost info from NLM, assuming network is NOT metered, error = 0x80240037
2016-07-03 16:54:38:287 716 4b8 AU WARNING: Failed to get Network Cost info from NLM, assuming network is NOT metered, error = 0x80240037
2016-07-03 16:54:40:009 716 4b8 AU ReAttemptDownloadsAsUserIfNecessary, No calls in download progress.
2016-07-03 16:54:40:025 716 4b8 AU Currently AUX is enabled - so not show any WU Upgrade notifications.
2016-07-03 16:54:40:025 716 4b8 AU WARNING: Failed to get Network Cost info from NLM, assuming network is NOT metered, error = 0x80240037
2016-07-03 16:54:40:025 716 4b8 AU WARNING: Failed to get Network Cost info from NLM, assuming network is NOT metered, error = 0x80240037
2016-07-03 16:54:47:372 716 398 IdleTmr Incremented idle timer priority operation counter to 1
2016-07-03 16:54:49:489 716 398 AU Triggering AU detection through DetectNow API
2016-07-03 16:54:49:489 716 398 AU Triggering Online detection (interactive)
2016-07-03 16:54:49:489 716 398 AU Adding timer:
2016-07-03 16:54:49:489 716 398 AU Timer: 31DA7559-FE27-4810-8FF6-987195B1FD98, Expires 2016-07-03 14:54:49, not idle-only, not network-only
2016-07-03 16:54:49:489 716 4b8 AU #############
2016-07-03 16:54:49:489 716 4b8 AU ## START ## AU: Search for updates
2016-07-03 16:54:49:489 716 4b8 AU #########
2016-07-03 16:54:49:489 716 4b8 SLS Retrieving SLS response from server...
2016-07-03 16:54:49:489 716 4b8 SLS Making request with URL HTTPS://sls.update.microsoft.com/SLS/{9482F4B4-E343-43B6-B170-9A65BC822C77}/x64/6.3.9600.0/0?CH=802&L=en-US&P=&PT=0x7&WUA=7.9.9600.18340
2016-07-03 16:55:10:523 716 4b8 Misc WARNING: Send failed with hr = 80072ee2.
2016-07-03 16:55:10:523 716 4b8 Misc WARNING: Proxy List used: <(null)> Bypass List used : <(null)> Auth Schemes used : <None>
2016-07-03 16:55:10:523 716 4b8 Misc WARNING: Send request failed, hr:0x80072ee2
2016-07-03 16:55:10:523 716 4b8 Misc WARNING: WinHttp: SendRequestUsingProxy failed for <HTTPS://sls.update.microsoft.com/SLS/{9482F4B4-E343-43B6-B170-9A65BC822C77}/x64/6.3.9600.0/0?CH=802&L=en-US&P=&PT=0x7&WUA=7.9.9600.18340>. error 0x80072ee2
2016-07-03 16:55:10:523 716 4b8 Misc WARNING: WinHttp: SendRequestToServerForFileInformation MakeRequest failed. error 0x80072ee2
2016-07-03 16:55:10:523 716 4b8 Misc WARNING: WinHttp: SendRequestToServerForFileInformation failed with 0x80072ee2
2016-07-03 16:55:10:523 716 4b8 Misc WARNING: WinHttp: ShouldFileBeDownloaded failed with 0x80072ee2
2016-07-03 16:55:10:523 716 4b8 SLS FATAL: SLS:CSLSDownloader::GetUrlContent: DoFileDownload failed with 0x80072ee2.
2016-07-03 16:55:10:523 716 4b8 SLS FATAL: GetResponse failed with hresult 0x80072ee2...
2016-07-03 16:55:10:523 716 4b8 EP FATAL: EP: CSLSEndpointProvider::GetWUClientData - failed to get SLS data, error = 0x80072EE2
2016-07-03 16:55:10:523 716 4b8 EP FATAL: EP: CSLSEndpointProvider::GetEndpointFromSLS - Failed to get client data, error = 0x80072EE2
2016-07-03 16:55:10:523 716 4b8 EP FATAL: Failed to obtain 9482F4B4-E343-43B6-B170-9A65BC822C77 redir SecondaryServiceAuth URL, error = 0x80072EE2
2016-07-03 16:55:10:523 716 4b8 Agent WARNING: Failed to obtain the authorization cab URL for service 117cab2d-82b1-4b5a-a08c-4d62dbee7782, hr=0
2016-07-03 16:55:10:523 716 4b8 Agent FATAL: Caller Service Recovery failed to opt in to service 117cab2d-82b1-4b5a-a08c-4d62dbee7782, hr=0X80072EE2
2016-07-03 16:55:10:523 716 4b8 IdleTmr WU operation (CSearchCall::Init ID 2) started; operation # 33; does use network; is not at background priority
2016-07-03 16:55:10:523 716 4b8 IdleTmr Incremented idle timer priority operation counter to 2
2016-07-03 16:55:10:523 716 4b8 Agent *** START *** Queueing Finding updates [CallerId = AutomaticUpdatesWuApp Id = 2]
2016-07-03 16:55:10:523 716 4b8 AU <<## SUBMITTED ## AU: Search for updates [CallId = {D9A1FC28-9F02-48B9-AB0A-12FEBEE1C1D6} ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}]
2016-07-03 16:55:10:523 716 7b8 Agent *** END *** Queueing Finding updates [CallerId = AutomaticUpdatesWuApp Id = 2]
2016-07-03 16:55:10:523 716 7b8 Agent *************
2016-07-03 16:55:10:523 716 7b8 Agent ** START ** Agent: Finding updates [CallerId = AutomaticUpdatesWuApp Id = 2]
2016-07-03 16:55:10:523 716 7b8 Agent *********
2016-07-03 16:55:10:523 716 7b8 Agent * Online = Yes; Ignore download priority = No
2016-07-03 16:55:10:523 716 7b8 Agent * Criteria = "IsInstalled=0 and DeploymentAction='Installation' or IsPresent=1 and DeploymentAction='Uninstallation' or IsInstalled=1 and DeploymentAction='Installation' and RebootRequired=1 or IsInstalled=0 and DeploymentAction='Uninstallation' and RebootRequired=1"
2016-07-03 16:55:10:523 716 7b8 Agent * ServiceID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7} Managed
2016-07-03 16:55:10:523 716 7b8 Agent * Search Scope = {Machine & All Users}
2016-07-03 16:55:10:523 716 7b8 Agent * Caller SID for Applicability: S-1-5-21-3131661490-1658730185-3933276400-500
2016-07-03 16:55:10:523 716 7b8 Agent * RegisterService is set
2016-07-03 16:55:10:523 716 7b8 EP Got WSUS Client/Server URL: "http://wsus.firma.domain.com:8530/ClientWebService/client.asmx"
2016-07-03 16:55:10:523 716 7b8 Setup Checking for agent SelfUpdate
2016-07-03 16:55:10:523 716 7b8 Setup Client version: Core: 7.9.9600.18340 Aux: 7.9.9600.18340
2016-07-03 16:55:10:523 716 7b8 EP Got WSUS SelfUpdate URL: "http://wsus.firma.domain.com:8530/selfupdate"
2016-07-03 16:55:10:539 716 7b8 Misc Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wuident.cab with dwProvFlags 0x00000080:
2016-07-03 16:55:36:678 716 4b8 Service UpdateNetworkState Ipv6, cNetworkInterfaces = 1.
2016-07-03 16:55:36:694 716 4b8 Service UpdateNetworkState Ipv6, cNetworkInterfaces = 0.
2016-07-03 16:55:40:579 716 7b8 Misc Microsoft signed: NA
2016-07-03 16:55:40:579 716 7b8 Misc Infrastructure signed: Yes
2016-07-03 16:55:40:579 716 7b8 Misc Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\TMP5331.tmp with dwProvFlags 0x00000080:
2016-07-03 16:55:50:590 716 7b8 Misc Microsoft signed: NA
2016-07-03 16:55:50:590 716 7b8 Misc Infrastructure signed: Yes
2016-07-03 16:55:50:590 716 7b8 Setup FATAL: GetClientUpdateUrl failed, err = 0x8024D009
2016-07-03 16:55:50:590 716 7b8 Setup Skipping SelfUpdate check based on the /SKIP directive in wuident
2016-07-03 16:55:50:590 716 7b8 Setup SelfUpdate check completed. SelfUpdate is NOT required.
2016-07-03 16:55:50:856 716 7b8 PT +++++++++++ PT: Synchronizing server updates +++++++++++
2016-07-03 16:55:50:856 716 7b8 PT + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL = http://wsus.firma.domain.com:8530/ClientWebService/client.asmx
2016-07-03 16:55:50:872 716 7b8 Agent Reading cached app categories using lifetime 604800 seconds
2016-07-03 16:55:50:872 716 7b8 Agent Read 0 cached app categories
2016-07-03 16:55:50:872 716 7b8 Agent SyncUpdates adding 0 visited app categories
2016-07-03 16:55:51:919 716 7b8 IdleTmr WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 34; does use network; is at background priority
2016-07-03 16:55:51:934 716 7b8 IdleTmr WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 34) stopped; does use network; is at background priority
2016-07-03 16:55:51:934 716 7b8 Agent Reading cached app categories using lifetime 604800 seconds
2016-07-03 16:55:51:934 716 7b8 Agent Read 0 cached app categories
2016-07-03 16:55:51:934 716 7b8 Agent SyncUpdates adding 0 visited app categories
2016-07-03 16:55:51:950 716 7b8 IdleTmr WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 35; does use network; is at background priority
2016-07-03 16:55:51:965 716 7b8 IdleTmr WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 35) stopped; does use network; is at background priority
2016-07-03 16:55:51:965 716 7b8 PT + SyncUpdates round trips: 2
2016-07-03 16:55:52:153 716 7b8 Agent WARNING: Failed to evaluate Installed rule, updateId = {{4DEB7F5F-D14D-43E2-93FA-F81B10846CF7}.200}, hr = 80070057
2016-07-03 16:55:52:153 716 7b8 Agent WARNING: Failed to evaluate Installable rule, updateId = {{4DEB7F5F-D14D-43E2-93FA-F81B10846CF7}.200}, hr = 80070057
2016-07-03 16:55:52:153 716 7b8 Agent WARNING: Failed to evaluate Installed rule, updateId = {{22FFD207-0EB5-4FCF-9F6A-67078327D7A3}.200}, hr = 80070057
2016-07-03 16:55:52:169 716 7b8 Agent WARNING: Failed to evaluate Installed rule, updateId = {{A4ECF96E-FE76-4933-B1A9-FAA712DC2A3B}.200}, hr = 80070057
2016-07-03 16:55:52:169 716 7b8 Agent WARNING: Failed to evaluate Installable rule, updateId = {{A4ECF96E-FE76-4933-B1A9-FAA712DC2A3B}.200}, hr = 80070057
2016-07-03 16:55:52:169 716 7b8 Agent WARNING: Failed to evaluate Installed rule, updateId = {{9941EB5F-4953-446D-99A2-C5989C596283}.200}, hr = 80070057
2016-07-03 16:55:52:169 716 7b8 Agent WARNING: Failed to evaluate Installable rule, updateId = {{9941EB5F-4953-446D-99A2-C5989C596283}.200}, hr = 80070057
2016-07-03 16:55:54:544 716 7b8 Agent * Found 0 updates and 79 categories in search; evaluated appl. rules of 843 out of 1961 deployed entities
2016-07-03 16:55:54:544 716 7b8 Agent Reporting status event with 72 installable, 234 installed, 0 installed pending, 0 failed and 0 downloaded updates
2016-07-03 16:55:54:544 716 7b8 Agent *********
2016-07-03 16:55:54:544 716 7b8 Agent ** END ** Agent: Finding updates [CallerId = AutomaticUpdatesWuApp Id = 2]
2016-07-03 16:55:54:544 716 7b8 Agent *************
2016-07-03 16:55:54:544 716 a1c AU >>## RESUMED ## AU: Search for updates [CallId = {D9A1FC28-9F02-48B9-AB0A-12FEBEE1C1D6} ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}]
2016-07-03 16:55:54:544 716 a1c AU # 0 updates detected
2016-07-03 16:55:54:544 716 a1c AU #########
2016-07-03 16:55:54:544 716 a1c AU ## END ## AU: Search for updates [CallId = {D9A1FC28-9F02-48B9-AB0A-12FEBEE1C1D6} ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}]
2016-07-03 16:55:54:544 716 a1c AU #############
2016-07-03 16:55:54:544 716 a1c AU All AU searches complete.
2016-07-03 16:55:54:544 716 a1c AU AU setting next detection timeout to 2016-07-04 10:42:57
2016-07-03 16:55:54:544 716 a1c AU Adding timer:
2016-07-03 16:55:54:544 716 a1c AU Timer: 31DA7559-FE27-4810-8FF6-987195B1FD98, Expires 2016-07-04 10:42:57, not idle-only, not network-only
2016-07-03 16:55:54:544 716 7b8 IdleTmr WU operation (CSearchCall::Init ID 2, operation # 33) stopped; does use network; is not at background priority
2016-07-03 16:55:54:544 716 7b8 IdleTmr Decremented idle timer priority operation counter to 1
2016-07-03 16:55:54:575 716 a1c AU Currently AUX is enabled - so not show any WU Upgrade notifications.
2016-07-03 16:55:54:575 716 a1c AU WARNING: Failed to get Network Cost info from NLM, assuming network is NOT metered, error = 0x80240037
2016-07-03 16:55:54:575 716 a1c AU WARNING: Failed to get Network Cost info from NLM, assuming network is NOT metered, error = 0x80240037
Hat einer ne Ahnung was ich falsch mache???
Bitte markiere auch die Kommentare, die zur Lösung des Beitrags beigetragen haben
Content-ID: 308854
Url: https://administrator.de/forum/korrekte-wsus-konfiguration-ohne-ad-308854.html
Ausgedruckt am: 07.04.2025 um 01:04 Uhr
3 Kommentare
Neuester Kommentar
Hallo,
WSUS Server und Clientproblem mit Download von Patches
Clients Win Update Problem no Download
WSUS Server aus lokalr Workgroup mit ext MSSQL Server verbinden
Gruß,
Peter
Zitat von @winlin:
ich habe eine AD-lose Landschaft in welcher viele virtuelle Maschinen (W2K12R2) laufen. Nun habe ich einen WSUS eingerichtet und diesen eingerichtet:
Deine hier schon genannten WSUS Probleme?ich habe eine AD-lose Landschaft in welcher viele virtuelle Maschinen (W2K12R2) laufen. Nun habe ich einen WSUS eingerichtet und diesen eingerichtet:
WSUS Server und Clientproblem mit Download von Patches
Clients Win Update Problem no Download
WSUS Server aus lokalr Workgroup mit ext MSSQL Server verbinden
Die Clients
Sind das geklonte Rechner?Gruß,
Peter
Moin,
unsere Regel sind dir bekannt und du bist schon ein Weilchen hier aktiv. Durch den Doppelpost geht es nicht schneller - im Gegteil. Abgesehen davon warten wir hier auch noch auf deine Rückmeldung.
Gruß,
Dani
unsere Regel sind dir bekannt und du bist schon ein Weilchen hier aktiv. Durch den Doppelpost geht es nicht schneller - im Gegteil. Abgesehen davon warten wir hier auch noch auf deine Rückmeldung.
Gruß,
Dani