Skip to main content

Posts

ePO to SuperAgent Repository replication failure because of IPS

We faced issue where in Checkpoint IPS flagged certain traffic between ePO server and a remote repository (SuperAgent) and was rejected , thus causing file replication fail between ePO and SuperAgent over Port 8081 When we checked firewall for logs , it was particular identifying the traffic as SQL injection for HIPS content. As we checked HIPS content included files for HIPS and the ePO part that require SQL code for rules to be added / removed or modified in the ePO DB. In the end we had to put exception in IPS to  trust ePO traffic and everything worked fine. Hope this helps

DSS WSUS server fail to download Updates HTTP status 404: The requested URL does not exist on the server.

When managing a Downstream WSUS server , it may happen that when a patch is approved it tried to immediately download it form the source server (USS) Sometime we see errors in event viewer stating that the the download failed Event ID: 364 Content file download failed. Reason: HTTP status 404: The requested URL does not exist on the server. Source File: /Content/6E/72131F469F73C884B32124746BAFCA2C8E0A106E.cab Destination File: E:\WSUS\WsusContent\6E\72131F469F73C884B32124746BAFCA2C8E0A106E.cab Event ID 10032 The server is failing to download some updates. We also see following entries in softwaredistribution.log 2016-09-26 07:53:29.287 UTC Warning WsusService.3 ContentSyncAgent.ProcessBITSNotificationQueue ContentSyncAgent recieved Failure for Item: f52f0b8a-2b22-43cf-933e-af8de6b11eb6, Item fails 2016-09-26 07:53:29.287 UTC Info WsusService.3 ContentSyncAgent.ContentSyncSPFireStateMachineEvent ContentSyncAgent firing Event: FileDownloadFailed for Item: f5...

SCCM 2007 - BootMGR is missing

Ran into a issue during OSD All machines were showing error "Bootmgr is missing"   after OS deployment Found that the DHCP scope had lease set to only 5 minutes, causing the machine to lose IP during OSD. Changed the lease time in the scope to 24 hours and that fixed the issue. Also check : https://blogs.technet.microsoft.com/configurationmgr/2008/12/09/configmgr-2007-task-sequence-may-fail-to-run-with-error-code-0x80072ee7/ Hope this helps

SCCM 2007 Client fails to download the package files

SCCM 2007 Client was failing to download the files  In the logs i could see the following errors Error sending DAV request. HTTP code 503, status 'Service Unavailable' DataTransferService 08-05-2016 12:22:43 49788 (0xC27C) GetDirectoryList_HTTP mapping original error 0x8004027e to 0x800704cf. DataTransferService 08-05-2016 12:22:43 49788 (0xC27C) I checked the problematic DP and found "SMS Distribution Points Pool" Application Pool in IIS was stopped I couldn't see any event in the application logs, so i just stared  it up manually. The download worked after that Also you may try iisreset Hope this helps

SCCM Updates deploymnet Failure 0x80070643

While patching one of the servers using SCCM , we have continuous failures for .Net/office patches UpdatesHandler log WSUS update (7b86b1e1-d602-4951-ac51-6b87c6765d28) installation result = 0x80070643, Reboot State = NoReboot UpdatesHandler 20-04-2016 18:00:45 17788 (0x457C) Update execution failed. UpdatesHandler 20-04-2016 18:00:45 17788 (0x457C) WSUS update (8291abea-f6b6-412a-85ec-c7a759bafc9b) installation result = 0x80070643, Reboot State = NoReboot UpdatesHandler 20-04-2016 18:00:45 18472 (0x4828) Update execution failed. UpdatesHandler 20-04-2016 18:00:45 18472 (0x4828) WSUS update (87d7d2fb-b4f0-4f7e-8a3a-b9ed4c4cd7a3) installation result = 0x80070643, Reboot State = NoReboot UpdatesHandler 20-04-2016 18:01:00 19228 (0x4B1C) Update execution failed. UpdatesHandler 20-04-2016 18:01:00 19228 (0x4B1C) UpdatesDeployment.log Update (Site_9057B171-1576-406C-8BD2-766678A36A6C/SUM_8291abea-f6b6-412a-85ec-c7a759bafc9b) Progress: Status = ciStateError...

Citrix XenApp 6.5 Discovery fails Event 3989

Citrix XenApp 6.5 Service account password change caused console discovery to fail and we saw event ID 3989 in System Event logs "Citrix XenApp failed to connect to the Data Store. ODBC error while connecting to the database: 28000 -> [Microsoft][ODBC SQL Server Driver][SQL Server]Login failed. The login is from an untrusted domain and cannot be used with Windows authentication." After changing the service account password needed to run the following command on the delivery controllers. DSMAINT CONFIG /user:abc\ABCSVCCitrix /pwd:nP@ssword /dsn:"C:\Program Files (x86)\Citrix\Independent Management Architecture\mf20.dsn" Restart IMA service You should now be able to run the discovery successfully Hope this helps