WSUS Server Reporting: Query TargetComputers for LastReportingStatus

Hi,
I'm having quite a difficult time in finding a way how to query multiple WSUS servers for the last report time of all TargetComputers.  I would like to query all targetcomputers on our Upstreamserver (master, the others are in replica mode) by FullDomainName.
That way I could check every client for it's site, next connect to the connect to the correct wsus server and query for the lastreport time for that client.(we have a site code in the computer names, so starting with 0 = site A, starting with 2 = site B,..)
In short, I want to query every targetcomputer there is to find for each WSUS server (3 servers) and if there is a lastreport time longer than 30 days, I want to query the other WSUS servers to check if maybe a last report date over their is more recent.
 Also, I should make my query so that when I loop through the array, I first do a check of the FullDomainName because based on it, I can connect to the correct "local wsus server" to do the check for last report time.
I have this code already, can anyone please point me in the right direction for this?
Any help is very much appreciated!
$attachments = "xxxxxxxxxxxxx","xxxxxxxxxxxxx","xxxxxxxxxxxxxxxx"
$time = (get-date).adddays(-30)
$Computername = "SERVER_A"
$UseSSL = $False
$Port = 80
[reflection.assembly]::LoadWithPartialName("Microsoft.UpdateServices.Administration") | out-null
$Wsus = [Microsoft.UpdateServices.Administration.AdminProxy]::GetUpdateServer($Computername,$UseSSL,$Port)
$wsus.GetComputerTargets() | ?{$_.LastReportedStatusTime -lt $time -and $_.RequestedTargetGroupName -ne "Servers" -and $_.RequestedTargetGroupName -ne "Labo"} | Select FullDomainName, LastReportedStatusTime | export-csv "xxxxxxxxxxxxxx" -NoTypeInformation
$Computername = "SERVER_B"
[reflection.assembly]::LoadWithPartialName("Microsoft.UpdateServices.Administration") | out-null
$Wsus = [Microsoft.UpdateServices.Administration.AdminProxy]::GetUpdateServer($Computername,$UseSSL,$Port)
$wsus.GetComputerTargets() | ?{$_.LastReportedStatusTime -lt $time -and $_.RequestedTargetGroupName -ne "Servers" -and $_.RequestedTargetGroupName -ne "Labo"} | Select FullDomainName, LastReportedStatusTime | export-csv "xxxxxxxxxxxxxxx" -NoTypeInformation
$Computername = "SERVER_C"
[reflection.assembly]::LoadWithPartialName("Microsoft.UpdateServices.Administration") | out-null
$Wsus = [Microsoft.UpdateServices.Administration.AdminProxy]::GetUpdateServer($Computername,$UseSSL,$Port)
$wsus.GetComputerTargets() | ?{$_.LastReportedStatusTime -lt $time -and $_.RequestedTargetGroupName -ne "Servers" -and $_.RequestedTargetGroupName -ne "Labo"} | Select FullDomainName, LastReportedStatusTime | export-csv "xxxxxxxxxxx" -NoTypeInformation
Send-MailMessage -Attachments $attachments -From zzzzz -To yyyyyyy -SmtpServer exchange -Priority High -Subject "WSUS Client Reportings"
Grtz! Kristof

This is closer to how to do it and is easier to manage.
function Get-LateReporting{
Param(
[Parameter(
Mandatory=$true,
ValueFromPipeline=$true
)]$server
Begin{
[void][reflection.assembly]::LoadWithPartialName('Microsoft.UpdateServices.Administration')
Process{
$wsus=[Microsoft.UpdateServices.Administration.AdminProxy]::GetUpdateServer($server,$false,80)
$wsus.GetComputerTargets() |
Where-Object{
$_.LastReportedStatusTime -lt ([datetime]::Today.AddDays(-30))
-and $_.RequestedTargetGroupName -ne "Servers"
-and $_.RequestedTargetGroupName -ne "Labo"
'servera','serverb','serverc'|
Get-LateReporting |
Select-Object FullDomainName, LastReportedStatusTime |
Export-Csv latereports.csv -NoTypeInformation
Send-MailMessage -Attachments latereports.csv -From zzzzz -To yyyyyyy -SmtpServer exchange -Priority High -Subject "WSUS Client Reportings"
You can group the results to select the newest one.
¯\_(ツ)_/¯

Similar Messages

  • TF400525: Make sure the SQL Server Reporting Services service for this instance is running.

    I am trying to install TFS 2012 update 4 on single server installation.
    I am getting below error:
    TF400525: Make sure the SQL Server Reporting Services service for this instance is running.

    Hi CFSA, 
    Thanks for your post.
    If you want install TFS 2012 Server with Reporting Server, you must ensure the provided Reporting Services is running first.
    As Daniel said, please check that in SQL Server Configuration Manager to ensure Reporting Services is installed and running.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Adding a custom rendering extension to SQL Server Reporting Services 2012 for SharePoint 2010 integrated mode

    We are attempting to add OfficeWriter report rendering extensions for SSRS 2012 in SharePoint (2010) integrated mode through powershell. The documentation for “New-SPRSExtension” is rather
    sparse and we have not found any clear examples on the internet. With SSRS 2012 in native mode, we make the following two changes to the config files:
    We add the following report rendering extension declaration to
    RSReportServer.config:
    <Configuration>
        <Extensions>
            <Render>
                <Extension Name="XLTemplate" Type="SoftArtisans.OfficeWriter.ReportingServices.ExcelTemplateRenderer,
    SoftArtisans.OfficeWriter.RS2008"/>
                <Extension Name="WordTemplate" Type="SoftArtisans.OfficeWriter.ReportingServices.WordTemplateRenderer,
    SoftArtisans.OfficeWriter.RS2008"/>
            </Render>
        </Extensions>
    </Configuration>
    We add the following security trust codegroup to
    RSSvrPolicy.config:
    <configuration>
        <mscorlib>
            <security>
                <policy>
                    <PolicyLevel version="1">
                  <CodeGroup version="1" PermissionSetName="Nothing">
                    <CodeGroup
                                version="*"
                                PermissionSetName="FullTrust"
                                Name="SoftArtisans_OfficeWriter_Strong_Name"
                                Description="This
    code group grants SoftArtisans OfficeWriter code full trust.">
                              <IMembershipCondition
                                class="StrongNameMembershipCondition"
                                version="*"
                                PublicKeyBlob="00240000048000009400000006020000002400005253413100040000010001004779CB207F11
                                5E86EF9DD3233F9F130F8891911345176650F72330F84CA3F54C96DEB08439680660F02872EEF5DA3955
                                A14C63F96E57DFB71B1535280C37DA2CB5BA37D78A9882414DB11F67FD66DEBC4AD93DD34F4A587D34D
                                B4D23D9C6AF83431D88A7EF42BB01082913F3560DCB50129C5BBA7ECA0DE8BC286DA74F58FADE"/>
                  </CodeGroup>
              </CodeGroup>
           </PolicyLevel>
        </policy>
       </security>
      </mscorlib>
    </configuration>
    What would be the equivalent syntax for “New-SPRSExtension” to do the above for SSRS 2012 in SharePoint (2010) integrated mode?
    Alison Bird SoftArtisans Technical Services www.softartisans.com

    Hi Alison,
    Unlike the deployment of other custom extensions such as custom delivery extension and data processing extension, it is not necessary to add a code group for the custom assembly that grants FullTrust permission for the extension during the deployment of
    custom rendering extension. If you have copy the custom assembly to the %ProgramFiles%\Microsoft SQL Server\MSRS11.<InstanceName>\Reporting Services\ReportServer\Bin folder, and modify the RSreportserver.config file to add the extention entry properly,
    please open the SSRS Service Application created on the SharePoint and verify that your extension is included in the list of available export types for a report.
    Reference:
    Deploying a Rendering Extension
    Regards,
    Mike Yin
    TechNet Community Support

  • Specify WSUS server based on client location boundary

    Hello. We are currently using SCCM 2012 R2 to do OSD at our main site, and I'm in the process of getting OSD working at our eight remote locations. Unfortunately, we haven't set up SUP yet (it's coming soon...I hope). So, in the interim, we specify our WSUS
    server in the task sequence during imaging; or, inject updates into the WIM using a script if the latest updates "break" OSD. However, this poses a bit of a problem for our remote locations.
    Currently, all our remote locations have their own OU in AD, and boundaries are set based on their OU. We also have IP address range boundaries at our remote locations so that unknown machines will get assigned to the correct boundary during imaging. Additionally,
    we have a DP on-site at every remote location. Testing with our current task sequence shows that content is being pulled from the correct DP during imaging at the remote location (not across the WAN, which is great). But, I'm not sure how I would go about
    adding a task sequence step that would specify each remote location's on-site WSUS server.
    I'd rather not create eight more task sequences just to specify the WSUS server for each location, since managing one task sequence would be ideal. And, the fact that we will have SUP up soon, means we won't have to deal with this for long. So, is there
    a way to check what boundary the machine is in during imaging, and make a task sequence step only run if it's in that boundary? I really appreciate and help and/or advice anyone can give me. Thanks. 

    Write a script that keys off of the IP gateway of the systems and then branches to set the WUA/WSUS registry values appropriately.
    Alternatively, add 8 steps to the task sequence, each setting the appropriate WSUS serve in the registry for one location and add a WMI condition to the task that allows it to execute only if the client has the correct IP Gateway.
    Branching based on the IP Gateway is the common denominator here are that's indicative of the client's locations. You could also use OU but IP Gateway is the standard method.
    Jason | http://blog.configmgrftw.com | @jasonsandys

  • QSUF (Query string url filter) and SQL Server reporting services report viewer parameters

    Hi,
    this is my issue:
    I have a SQL Server reporting services web part on a page with a report with 1 parameter, lets say it's a client list
    Then i have a QSUF that will be used to filter the clients list through the URL
    However, once i connect the filter and the report viewer web part, the parameter goes away and is no longer accessible
    I'd like to somehow keep the parameter visible, in case there is no parameter sent through the URL, i would like the user to be able to choose a client from the parameter drop down list
    I saw that there is a "send empty if no values are passed" option, but i can't seem to get this working properly and i don't know if this option will make the parameter visible again
    Any help would be appreciated
    Thanks.

    Hi,
    According to your post, my understanding is that the query string url filter web part not worked well with SQL server reproting services web part.
    Did you use the Wiki page layout in your environment?
    You can change the page to a web part page, then check whether it work.
    There is a similar thread for your reference.
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/4d7584e3-8e1a-48bf-9346-32f8cb480dd1/query-string-url-filter-web-part?forum=sharepointgeneralprevious
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Report Builder 1.0 for SQL Server Reporting Services 2008 R2

    We are trying to implement Ad-Hoc Reporting using SSRS 2008 R2.
    First of all, it is very unhelpful that all SSRS books are for either 2008 or 2012, even though SSRS has major changes in 2008 R2 compared to 2008.
    Our instructional materials indicate that we should build Report Models to abstract out our databases into terms familiar to our business users.
    The problem we are having is the difference in functionality between Report Builder 1.0 and Report Builder 3.0. Report Builder 3.0 is touted as having the modern, ribbon based interface that is supposed to make end-users feel more comfortable.  However,
    all the documentation says that end users are supposed to use Report Builder 1.0 for Ad-Hoc Reporting.  And, it seems, that the reports generated by Report Builder 1.0 are not round-trip compatible with all the other reporting tools for SSRS 2008 R2.
    The documentation we have illustrates that Report Builder 1.0 is nice for Ad-Hoc reporting, because is based on connecting directly to Report Models, and the end users can directly drag-and-drop entities and fields into their reports.
    When we try working with Report Builder 3.0, it seems we must first connect to the Report Model as a Data Source and then build a Dataset query on the Report Model.  Only then are some entity attributes available to be dropped into the report. 
    If the user decides another source column is needed, they have to go back, edit the query, save the query, and then drag the column from the Dataset to the report.  This does not seem end user friendly at all!
    We are also concerned that if we train our users on the seemingly soon-to-be-obsolete Report Builder 1.0, and get them used to having direct Report Model access, that at some point we will have to move them to the Dataset-interrupted approach of Report Builder
    2+.  Highlighting this perception of impending obsolescence of Report Builder 1.0 is that in our shop that is starting with SSRS 2008 R2, we cannot figure out how to get a copy of Report Builder 1.0 in the first place.
    We just don't see our end users being savvy enough to handle the steps involved with creating Datasets on top of Report Model Data Sources.  So we would have to build the Datasets for them.  But in that case, what point is there in creating any
    Report Models in the first place if DBAs are the ones to make Datasets?
    As such, it is hard to envision a forward-looking SSRS implementation that has the end user ease-of-use Ad-Hoc reporting that the SSRS 2008 documentation presents.
    What is it that Microsoft actually wants/expects SSRS implementers to do?
    Dan Jameson
    Manager SQL Server DBA
    CureSearch for Children's Cancer
    http://www.CureSearch.org

    Hi Dan,
    Report Builder 1.0
    Simple template-based reports
    Requires report model
    Supports only SQL Server, Oracle, and Analysis Services as data sources
    Supports RDL 2005
    Bundled in SSRS
    Report Builder 2.0 or later
    Full-featured reports as the BIDS Report Designer
    Doesn't require (but supports) report models
    Supports any data source
    Supports RDL 2008
    Available as a separate web download
    In your scenario, you want to use Report Builder 1.0 in SQL Server Reporting Services 2008 R2, I am afraid this cannot achieve. Report Builder 1.0 is available in the box in either SQL 2005 or SQL 2008. It is not available as a separate client apps and is
    only available as a click once application.
    Report Builder 1.0
    Report Builder 3.0
    Thank you for your understanding.
    Regards,
    Charlie Liao
    If you have any feedback on our support, please click
    here.
    Charlie Liao
    TechNet Community Support

  • Client machine not reporting to wsus server

    My server Windows Server 2008 R2 Standard x 64 virtual machine install in Hyper-v server and Install SCE management version 2010.
    in sudden server stopped sending updated to client machine. So I check many and did many changed as per MS community forums. But still I have same issue. 
    Then I planned to install again SCE management server in different VM. But even though I am getting error that old SCE management server is existing in my domain.  Therefore I am afraid to change or remove any setting in AD since I have short
    of knowledge about SCE servers. 
    However my SCE server was working smoothly until 11-2013 and then suddenly stuck. When I check the server machine I found that local drive C: is getting full and SCE management is fail to start. So from that to now when ever I had free time I changed
    many things. But unfortunately I couldn't get the sever back to normal.
    Few changes which I made are below.
    - Remove and reinstall WAUS several times
    - Check online update and direct updated server SCE machine without getting updated from SCE
    - Remove dotnet frame work and updated version 4
    - product configuration wizard reconfigure
    - Repair management agent in client machine.
    Kindly help for me to repair my SCE server or make another installation without having change of settings.
    It would be highly appreciated if you could resolve issue
    The error massage is below in windows update log.
    2015-02-11 11:37:46:747 904 c78 Misc =========== Logging initialized (build: 7.6.7600.320, tz: +0300) ===========
    2015-02-11 11:37:46:747 904 c78 Misc = Process: C:\Windows\system32\svchost.exe
    2015-02-11 11:37:46:747 904 c78 Misc = Module: c:\windows\system32\wuaueng.dll
    2015-02-11 11:37:46:747 904 c78 Service *************
    2015-02-11 11:37:46:747 904 c78 Service ** START ** Service: Service startup
    2015-02-11 11:37:46:747 904 c78 Service *********
    2015-02-11 11:37:46:750 904 c78 Agent * WU client version 7.6.7600.320
    2015-02-11 11:37:46:750 904 c78 Agent * Base directory: C:\Windows\SoftwareDistribution
    2015-02-11 11:37:46:750 904 c78 Agent * Access type: No proxy
    2015-02-11 11:37:46:751 904 c78 Agent * Network state: Connected
    2015-02-11 11:37:58:940 904 8a0 Report CWERReporter::Init succeeded
    2015-02-11 11:37:58:940 904 8a0 Agent *********** Agent: Initializing Windows Update Agent ***********
    2015-02-11 11:37:58:941 904 8a0 Agent * Prerequisite roots succeeded.
    2015-02-11 11:37:58:941 904 8a0 Agent *********** Agent: Initializing global settings cache ***********
    2015-02-11 11:37:58:941 904 8a0 Agent * WSUS server: http://SCE-01.mubarrad.com.kw:8530
    2015-02-11 11:37:58:941 904 8a0 Agent * WSUS status server: http://SCE-01.mubarrad.com.kw:8530
    2015-02-11 11:37:58:941 904 8a0 Agent * Target group: (Unassigned Computers)
    2015-02-11 11:37:58:941 904 8a0 Agent * Windows Update access disabled: No
    2015-02-11 11:37:59:068 904 8a0 DnldMgr Download manager restoring 0 downloads
    2015-02-11 11:37:59:081 904 8a0 AU ########### AU: Initializing Automatic Updates ###########
    2015-02-11 11:37:59:082 904 8a0 AU # WSUS server: http://SCE-01.mubarrad.com.kw:8530
    2015-02-11 11:37:59:082 904 8a0 AU # Detection frequency: 22
    2015-02-11 11:37:59:082 904 8a0 AU # Approval type: Pre-install notify (Policy)
    2015-02-11 11:37:59:082 904 8a0 AU # Auto-install minor updates: No (User preference)
    2015-02-11 11:37:59:082 904 8a0 AU # Will interact with non-admins (Non-admins are elevated (User preference))
    2015-02-11 11:37:59:082 904 8a0 AU # Will display featured software notifications (User preference)
    2015-02-11 11:37:59:301 904 c78 Report *********** Report: Initializing static reporting data ***********
    2015-02-11 11:37:59:301 904 c78 Report * OS Version = 6.1.7601.1.0.196880
    2015-02-11 11:37:59:301 904 c78 Report * OS Product Type = 0x00000007
    2015-02-11 11:37:59:313 904 c78 Report * Computer Brand = Microsoft Corporation
    2015-02-11 11:37:59:313 904 c78 Report * Computer Model = Virtual Machine
    2015-02-11 11:37:59:316 904 c78 Report * Bios Revision = 090004
    2015-02-11 11:37:59:316 904 c78 Report * Bios Name = BIOS Date: 03/19/09 22:51:32 Ver: 09.00.04
    2015-02-11 11:37:59:316 904 c78 Report * Bios Release Date = 2009-03-19T00:00:00
    2015-02-11 11:37:59:316 904 c78 Report * Locale ID = 1033
    2015-02-11 11:37:59:352 904 8a0 AU Successfully wrote event for AU health state:0
    2015-02-11 11:37:59:352 904 8a0 AU Initializing featured updates
    2015-02-11 11:37:59:352 904 8a0 AU Found 0 cached featured updates
    2015-02-11 11:37:59:352 904 8a0 AU Successfully wrote event for AU health state:0
    2015-02-11 11:37:59:353 904 8a0 AU Successfully wrote event for AU health state:0
    2015-02-11 11:37:59:354 904 8a0 AU AU finished delayed initialization
    2015-02-11 11:37:59:354 904 c78 AU #############
    2015-02-11 11:37:59:354 904 c78 AU ## START ## AU: Search for updates
    2015-02-11 11:37:59:354 904 c78 AU #########
    2015-02-11 11:37:59:356 904 c78 AU <<## SUBMITTED ## AU: Search for updates [CallId = {A05977D0-8D58-4DC1-AAC5-C5FD68987D7F}]
    2015-02-11 11:38:01:818 904 8a0 AU Triggering AU detection through DetectNow API
    2015-02-11 11:38:01:818 904 8a0 AU Will do the detection after current detection completes
    2015-02-11 11:38:03:808 904 1de0 Misc WARNING: Send failed with hr = 80072efd.
    2015-02-11 11:38:03:808 904 1de0 Misc WARNING: SendRequest failed with hr = 80072efd. Proxy List used: <(null)> Bypass List used : <(null)> Auth Schemes used : <>
    2015-02-11 11:38:03:808 904 1de0 Misc FATAL: SOAP/WinHttp - SendRequest: SendRequestUsingProxy failed. error 0x80072efd
    2015-02-11 11:38:03:808 904 1de0 PT + Last proxy send request failed with hr = 0x80072EFD, HTTP status code = 0
    2015-02-11 11:38:03:808 904 1de0 PT + Caller provided credentials = No
    2015-02-11 11:38:03:808 904 1de0 PT + Impersonate flags = 0
    2015-02-11 11:38:03:808 904 1de0 PT + Possible authorization schemes used =
    2015-02-11 11:38:03:808 904 1de0 PT WARNING: GetConfig failure, error = 0x80072EFD, soap client error = 5, soap error code = 0, HTTP status code = 200
    2015-02-11 11:38:03:808 904 1de0 PT WARNING: PTError: 0x80072efd
    2015-02-11 11:38:03:808 904 1de0 PT WARNING: GetConfig_WithRecovery failed: 0x80072efd
    2015-02-11 11:38:03:808 904 1de0 PT WARNING: RefreshConfig failed: 0x80072efd
    2015-02-11 11:38:03:808 904 1de0 PT WARNING: RefreshPTState failed: 0x80072efd
    2015-02-11 11:38:03:808 904 1de0 PT WARNING: PTError: 0x80072efd
    2015-02-11 11:38:03:808 904 1de0 Report WARNING: Reporter failed to upload events with hr = 80072efd.
    2015-02-11 11:38:08:092 904 1de0 Misc WARNING: Send failed with hr = 80072efd.
    2015-02-11 11:38:08:092 904 1de0 Misc WARNING: SendRequest failed with hr = 80072efd. Proxy List used: <(null)> Bypass List used : <(null)> Auth Schemes used : <>
    2015-02-11 11:38:08:092 904 1de0 Misc FATAL: SOAP/WinHttp - SendRequest: SendRequestUsingProxy failed. error 0x80072efd
    2015-02-11 11:38:08:092 904 1de0 PT + Last proxy send request failed with hr = 0x80072EFD, HTTP status code = 0
    2015-02-11 11:38:08:092 904 1de0 PT + Caller provided credentials = No
    2015-02-11 11:38:08:092 904 1de0 PT + Impersonate flags = 0
    2015-02-11 11:38:08:092 904 1de0 PT + Possible authorization schemes used =
    2015-02-11 11:38:08:092 904 1de0 PT WARNING: GetConfig failure, error = 0x80072EFD, soap client error = 5, soap error code = 0, HTTP status code = 200
    2015-02-11 11:38:08:092 904 1de0 PT WARNING: PTError: 0x80072efd
    2015-02-11 11:38:08:092 904 1de0 PT WARNING: GetConfig_WithRecovery failed: 0x80072efd
    2015-02-11 11:38:08:092 904 1de0 PT WARNING: RefreshConfig failed: 0x80072efd
    2015-02-11 11:38:08:092 904 1de0 PT WARNING: RefreshPTState failed: 0x80072efd
    2015-02-11 11:38:08:092 904 1de0 PT WARNING: PTError: 0x80072efd
    2015-02-11 11:38:08:092 904 1de0 Report WARNING: Reporter failed to upload events with hr = 80072efd.
    2015-02-11 11:38:08:093 904 1de0 Report REPORT EVENT: {62417852-380A-47BC-B153-8A8E0E198470} 2015-02-11 11:37:59:352+0300 1 202 102 {00000000-0000-0000-0000-000000000000} 0 0 AutomaticUpdates Success Content Install Reboot completed.
    2015-02-11 11:38:08:098 904 1de0 Report CWERReporter finishing event handling. (00000000)
    2015-02-11 11:38:08:098 904 1de0 Agent *************
    2015-02-11 11:38:08:098 904 1de0 Agent ** START ** Agent: Finding updates [CallerId = AutomaticUpdates]
    2015-02-11 11:38:08:098 904 1de0 Agent *********
    2015-02-11 11:38:08:098 904 1de0 Agent * Online = No; Ignore download priority = No
    2015-02-11 11:38:08:098 904 1de0 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"
    2015-02-11 11:38:08:098 904 1de0 Agent * ServiceID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7} Managed
    2015-02-11 11:38:08:098 904 1de0 Agent * Search Scope = {Machine}
    2015-02-11 11:38:08:440 904 1de0 Agent * Found 0 updates and 0 categories in search; evaluated appl. rules of 0 out of 0 deployed entities
    2015-02-11 11:38:08:441 904 1de0 Agent *********
    2015-02-11 11:38:08:441 904 1de0 Agent ** END ** Agent: Finding updates [CallerId = AutomaticUpdates]
    2015-02-11 11:38:08:441 904 1de0 Agent *************
    2015-02-11 11:38:08:441 904 edc AU >>## RESUMED ## AU: Search for updates [CallId = {A05977D0-8D58-4DC1-AAC5-C5FD68987D7F}]
    2015-02-11 11:38:08:441 904 edc AU # 0 updates detected
    2015-02-11 11:38:08:441 904 edc AU #########
    2015-02-11 11:38:08:441 904 edc AU ## END ## AU: Search for updates [CallId = {A05977D0-8D58-4DC1-AAC5-C5FD68987D7F}]
    2015-02-11 11:38:08:441 904 edc AU #############
    2015-02-11 11:38:08:441 904 edc AU Featured notifications is disabled.
    2015-02-11 11:38:08:442 904 edc AU Successfully wrote event for AU health state:0
    2015-02-11 11:38:08:442 904 edc AU Successfully wrote event for AU health state:0
    2015-02-11 11:38:08:442 904 c78 AU #############
    2015-02-11 11:38:08:442 904 c78 AU ## START ## AU: Search for updates
    2015-02-11 11:38:08:442 904 c78 AU #########
    2015-02-11 11:38:08:444 904 c78 AU <<## SUBMITTED ## AU: Search for updates [CallId = {B8E1001D-5C48-4A26-888D-99FECCD6F9F1}]
    2015-02-11 11:38:08:444 904 1de0 Agent *************
    2015-02-11 11:38:08:444 904 1de0 Agent ** START ** Agent: Finding updates [CallerId = AutomaticUpdates]
    2015-02-11 11:38:08:444 904 1de0 Agent *********
    2015-02-11 11:38:08:444 904 1de0 Agent * Online = Yes; Ignore download priority = No
    2015-02-11 11:38:08:444 904 1de0 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"
    2015-02-11 11:38:08:444 904 1de0 Agent * ServiceID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7} Managed
    2015-02-11 11:38:08:444 904 1de0 Agent * Search Scope = {Machine}
    2015-02-11 11:38:08:444 904 1de0 Setup Checking for agent SelfUpdate
    2015-02-11 11:38:08:445 904 1de0 Setup Client version: Core: 7.6.7600.320 Aux: 7.6.7600.320
    2015-02-11 11:38:12:726 904 1de0 Misc WARNING: Send failed with hr = 80072efd.
    2015-02-11 11:38:12:726 904 1de0 Misc WARNING: SendRequest failed with hr = 80072efd. Proxy List used: <(null)> Bypass List used : <(null)> Auth Schemes used : <>
    2015-02-11 11:38:12:726 904 1de0 Misc WARNING: WinHttp: SendRequestUsingProxy failed for <http://SCE-01.mubarrad.com.kw:8530/selfupdate/wuident.cab>. error 0x80072efd
    2015-02-11 11:38:12:726 904 1de0 Misc WARNING: WinHttp: SendRequestToServerForFileInformation MakeRequest failed. error 0x80072efd
    2015-02-11 11:38:12:726 904 1de0 Misc WARNING: WinHttp: SendRequestToServerForFileInformation failed with 0x80072efd
    2015-02-11 11:38:12:726 904 1de0 Misc WARNING: WinHttp: ShouldFileBeDownloaded failed with 0x80072efd
    2015-02-11 11:38:16:993 904 1de0 Misc WARNING: Send failed with hr = 80072efd.
    2015-02-11 11:38:16:993 904 1de0 Misc WARNING: SendRequest failed with hr = 80072efd. Proxy List used: <(null)> Bypass List used : <(null)> Auth Schemes used : <>
    2015-02-11 11:38:16:993 904 1de0 Misc WARNING: WinHttp: SendRequestUsingProxy failed for <http://SCE-01.mubarrad.com.kw:8530/selfupdate/wuident.cab>. error 0x80072efd
    2015-02-11 11:38:16:993 904 1de0 Misc WARNING: WinHttp: SendRequestToServerForFileInformation MakeRequest failed. error 0x80072efd
    2015-02-11 11:38:16:993 904 1de0 Misc WARNING: WinHttp: SendRequestToServerForFileInformation failed with 0x80072efd
    2015-02-11 11:38:16:993 904 1de0 Misc WARNING: WinHttp: ShouldFileBeDownloaded failed with 0x80072efd
    2015-02-11 11:38:21:278 904 1de0 Misc WARNING: Send failed with hr = 80072efd.
    2015-02-11 11:38:21:278 904 1de0 Misc WARNING: SendRequest failed with hr = 80072efd. Proxy List used: <(null)> Bypass List used : <(null)> Auth Schemes used : <>
    2015-02-11 11:38:21:278 904 1de0 Misc WARNING: WinHttp: SendRequestUsingProxy failed for <http://SCE-01.mubarrad.com.kw:8530/selfupdate/wuident.cab>. error 0x80072efd
    2015-02-11 11:38:21:278 904 1de0 Misc WARNING: WinHttp: SendRequestToServerForFileInformation MakeRequest failed. error 0x80072efd
    2015-02-11 11:38:21:278 904 1de0 Misc WARNING: WinHttp: SendRequestToServerForFileInformation failed with 0x80072efd
    2015-02-11 11:38:21:278 904 1de0 Misc WARNING: WinHttp: ShouldFileBeDownloaded failed with 0x80072efd
    2015-02-11 11:38:25:564 904 1de0 Misc WARNING: Send failed with hr = 80072efd.
    2015-02-11 11:38:25:564 904 1de0 Misc WARNING: SendRequest failed with hr = 80072efd. Proxy List used: <(null)> Bypass List used : <(null)> Auth Schemes used : <>
    2015-02-11 11:38:25:564 904 1de0 Misc WARNING: WinHttp: SendRequestUsingProxy failed for <http://SCE-01.mubarrad.com.kw:8530/selfupdate/wuident.cab>. error 0x80072efd
    2015-02-11 11:38:25:564 904 1de0 Misc WARNING: WinHttp: SendRequestToServerForFileInformation MakeRequest failed. error 0x80072efd
    2015-02-11 11:38:25:564 904 1de0 Misc WARNING: WinHttp: SendRequestToServerForFileInformation failed with 0x80072efd
    2015-02-11 11:38:25:564 904 1de0 Misc WARNING: WinHttp: ShouldFileBeDownloaded failed with 0x80072efd
    2015-02-11 11:38:25:564 904 1de0 Misc WARNING: DownloadFileInternal failed for http://SCE-01.mubarrad.com.kw:8530/selfupdate/wuident.cab: error 0x80072efd
    2015-02-11 11:38:25:564 904 1de0 Setup FATAL: DownloadCab failed, err = 0x80072EFD
    2015-02-11 11:38:25:564 904 1de0 Setup WARNING: SelfUpdate check failed to download package information, error = 0x80072EFD
    2015-02-11 11:38:25:564 904 1de0 Setup FATAL: SelfUpdate check failed, err = 0x80072EFD
    2015-02-11 11:38:25:565 904 1de0 Agent * WARNING: Skipping scan, self-update check returned 0x80072EFD
    2015-02-11 11:38:25:565 904 1de0 Agent * WARNING: Exit code = 0x80072EFD
    2015-02-11 11:38:25:565 904 1de0 Agent *********
    2015-02-11 11:38:25:565 904 1de0 Agent ** END ** Agent: Finding updates [CallerId = AutomaticUpdates]
    2015-02-11 11:38:25:565 904 1de0 Agent *************
    2015-02-11 11:38:25:565 904 1de0 Agent WARNING: WU client failed Searching for update with error 0x80072efd
    2015-02-11 11:38:25:565 904 1de0 Report CWERReporter finishing event handling. (00000000)
    2015-02-11 11:38:25:565 904 edc AU >>## RESUMED ## AU: Search for updates [CallId = {B8E1001D-5C48-4A26-888D-99FECCD6F9F1}]
    2015-02-11 11:38:25:566 904 edc AU # WARNING: Search callback failed, result = 0x80072EFD
    2015-02-11 11:38:25:566 904 edc AU # WARNING: Failed to find updates with error code 80072EFD
    2015-02-11 11:38:25:566 904 edc AU #########
    2015-02-11 11:38:25:566 904 edc AU ## END ## AU: Search for updates [CallId = {B8E1001D-5C48-4A26-888D-99FECCD6F9F1}]
    2015-02-11 11:38:25:566 904 edc AU #############
    2015-02-11 11:38:25:566 904 edc AU Successfully wrote event for AU health state:0
    2015-02-11 11:38:25:566 904 edc AU AU setting next detection timeout to 2015-02-11 13:38:25
    2015-02-11 11:38:25:566 904 edc AU Successfully wrote event for AU health state:0
    2015-02-11 11:38:25:567 904 edc AU Successfully wrote event for AU health state:0
    2015-02-11 11:38:30:595 904 1de0 Report REPORT EVENT: {6470B8FE-1600-4F7B-807F-6031606ECC8B} 2015-02-11 11:38:25:564+0300 1 148 101 {D67661EB-2423-451D-BF5D-13199E37DF28} 1 80072efd SelfUpdate Failure Software Synchronization Windows Update Client failed to detect with error 0x80072efd.
    2015-02-11 11:38:30:613 904 1de0 Report CWERReporter::HandleEvents - WER report upload completed with status 0x8
    2015-02-11 11:38:30:613 904 1de0 Report WER Report sent: 7.6.7600.320 0x80072efd D67661EB-2423-451D-BF5D-13199E37DF28 Scan 101 Managed
    2015-02-11 11:38:30:613 904 1de0 Report CWERReporter finishing event handling. (00000000)

    Can you try the below to reset the authorization and force a connection back from one of the win 7 machines:
    it should help pinpoint exact issues. 
    1. Record the system time.
    2. Reboot the system (or restart the Windows Update service).
    3. After reboot run the command wuauclt
    /resetauthorization /detectnow.
    4. Wait 30 minutes.
    5. Post the entries from the WindowsUpdate.log starting at the time recorded in Step #1.
    Do you have any Windows 7 machines that are reporting? Are other machines with different operating systems reporting correctly?

  • What is the best practice for running a long report/query against an active database?

    We are using SQL Server 2012 EE but currently do not have the option to run queries on a R/O mirror though that is my long term goal. I am concerned I may still run into the below issue in that scenario as well since the mirror would also be updating data I
    am querying.
    I have a view that joins across several tables from two databases and is used by an invoicing program on existing data. Three of these tables are also actively updated by ongoing transactions. Running a report that used this view did not use to be a problem
    but now our database is getting larger and we have run into some timeout problems for the live transactions coming in.
    First the report query was timing out so I set command timeout to 0 and reran the query which pegged all 4 CPUs 100% for 90 minutes and so I finally killed it. Strangely there were no problems with active transactions during that time so I'm wondering if the
    query was really running doing anything useful or somehow spinning and waiting. I reviewed the view and found a field I was joining on that was not indexed so created an index on that field, reran the report, which then finished in three minutes and all the
    CPUs were busy but not at all pegged out. Same data queried both times. I figured problem solved. Of course later, my boss ran a similar invoice report, with the same amount of data, and our live transactions started timing out 100% while his query was running.
    I did not get a chance to see the CPU usage during that time.
    I looked at the execution plan of the underlying view and added the suggested index but that did not help. When I run the just the view at SQL Server it does not seem to cause any problems and finished in a couple seconds. Perhaps something else going on in
    the reporting tool using the view.
    My main question is - Given I have to use the live and active database, what is the proper way to run a long R/O query/report so that active transactions can still continue to update
    tables that I am querying? sp_who2 did show transactions being blocked so I guess a long query accessing the tables blocks live transactions accessing those same tables, but certainly I'm not the only one doing this. I
    am considering adding "with (nolock)" but am hoping there is a better standard practice as that clause can return dirty data and I understand why. Thx, Dave
    Thanks, Dave
    Dave

    Hello
    You can change the DB isolation level to Read uncommitted
    http://technet.microsoft.com/en-us/library/ms378149(v=sql.110).aspx
    or use WITH (NOLOCK)
    I do use NOLOCK option for the dirty reads to avoid locks on the tables
    Javier Villegas |
    @javier_vill | http://sql-javier-villegas.blogspot.com/
    Please click "Propose As Answer" if a post solves your problem or "Vote As Helpful" if a post has been useful to you

  • Adding parameter to a MySQL query in MS SQL Server Report Builder

    So I have a MySQL DB connected to MS SQL Server Report Builder via ODBC connector. Everything is fine, I can execute queries and put the fields into report.
    But I can't add an parameter to the query.
    Example query:
    SELECT column1, column2 FROM table WHERE column3 = (@parameter1)
    The result set is just empty. I think the problem is that I'm using MySQL and not MS SQL. Any suggestion?

    Hello Alan,
    Named parameters like @param works with SQL Server / .NET data provider, but not for OleDB, here you have to use the question mark instead
    SELECT column1, column2
    FROM table
    WHERE column3 = ? and column9 = ?
    When you assign the report parameter to query parameter you have to take care about the order of used ? in query
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Problem "The OLE DB provider for linked server reported an error. The provider reported an unexpected catastrophic failure Cannot fetch a row from OLE DB provider for linked server"

    hi
      i'd like to ask question about linked server.
      my linked server used to work but now when i try to select from linked server i was told "The OLE DB provider for linked server reported an error. The provider reported an unexpected catastrophic failure Cannot fetch a row from OLE DB provider
    for linked server"
      but in fact for test connection i was told "the test connection to the linked server succeeded".
      could  anyone help me? thank u very much
    best regards
    martin

    Hi, 
    In addition to Tracy's post we have to know those answers as well:
    * what provider are you using for the connection
    * what do you connect to
    for example, if someone try to connect to oracle using sql server provider then several simple queries are going to work probably OK, but once you are trying to use T-SQL or any complex SQL query then the errors are starting.
    please post the connection string (without the password!) + the query that you are trying to use.
    [Personal Site] [Blog] [Facebook]

  • WSUS server not reporting itself

    I am sure this has been asked, but I cant find the specifics for my situations.
    I am running at Vm for server 2012R2 and installed the wsus role.
    I have successfully moved all my servers and desktops from the old wsus server to this one. the version number is 6.3.9600.16384.
    using group policy, my clients point to http://wsus:8530
    the wsus server itself is not reporting in. I can not recall if it ever reported in to be honest.  what can you  suggest that I look at?
    thanks
    Ian

    Referring to DNS, no, I used group policy only to make the change.
    when you say check for * WSUS server, what does that mean. do you want me to check in the WindowsUpdate.log?
    I have warnings in the log and I have a fatal: OnCallFailure failed with hr=0x8024401B
    Here is sample from the log:
    2015-02-10 07:16:11:932  864 4d8 WS WARNING: Nws Failure: errorCode=0x803d001b
    2015-02-10 07:16:11:932  864 4d8 WS WARNING: There was an error communicating with the endpoint at 'https://fe2.ws.microsoft.com/v6/ClientWebService/client.asmx'.
    2015-02-10 07:16:11:932  864 4d8 WS WARNING: The server returned HTTP status code '407 (0x197)' with text 'Proxy Access Denied'.
    2015-02-10 07:16:11:932  864 4d8 WS WARNING: The proxy requires HTTP authentication scheme 'negotiate'.
    2015-02-10 07:16:11:932  864 4d8 WS WARNING: The operation could not be completed because the channel has been aborted.
    2015-02-10 07:16:11:948  864 4d8 WS WARNING: Nws Failure: errorCode=0x803d0018
    2015-02-10 07:16:11:948  864 4d8 WS WARNING: There was an error communicating with the endpoint at 'https://fe2.ws.microsoft.com/v6/ClientWebService/client.asmx'.
    2015-02-10 07:16:11:948  864 4d8 WS WARNING: The server returned HTTP status code '407 (0x197)' with text 'Proxy Access Denied'.
    2015-02-10 07:16:11:948  864 4d8 WS WARNING: The proxy requires HTTP authentication scheme 'basic'.
    2015-02-10 07:16:11:948  864 4d8 WS WARNING: The operation could not be completed because the channel has been aborted.
    2015-02-10 07:16:11:948  864 4d8 WS WARNING: There was an error communicating with the endpoint at 'https://fe2.ws.microsoft.com/v6/ClientWebService/client.asmx'.
    2015-02-10 07:16:11:948  864 4d8 WS WARNING: The server returned HTTP status code '407 (0x197)' with text 'Proxy Access Denied'.
    2015-02-10 07:16:11:948  864 4d8 WS WARNING: The proxy requires HTTP authentication scheme 'negotiate'.
    2015-02-10 07:16:11:948  864 4d8 WS WARNING: The operation could not be completed because the channel has been aborted.
    2015-02-10 07:16:11:948  864 4d8 WS WARNING: MapToSusHResult mapped Nws error 0x803d0018 to 0x8024401b
    2015-02-10 07:16:11:948  864 4d8 WS WARNING: Web service call failed with hr = 8024401b.
    2015-02-10 07:16:11:948  864 4d8 WS WARNING: Current service auth scheme='None'.
    2015-02-10 07:16:11:948  864 4d8 WS WARNING: Proxy List used: '10.0.103.220:8080', Bypass List used: '(null)', Last Proxy used: '10.0.103.220:8080', Last auth Schemes used: 'Negotiate (NTLM or Kerberos);'.
    2015-02-10 07:16:11:948  864 4d8 WS FATAL: OnCallFailure failed with hr=0X8024401B
    2015-02-10 07:16:11:948  864 4d8 IdleTmr WU operation (CAgentProtocolTalker::GetCookie_WithRecovery, operation # 1078) stopped; does use network; is at background priority
    2015-02-10 07:16:11:948  864 4d8 PT WARNING: PTError: 0x8024401b
    2015-02-10 07:16:11:948  864 4d8 PT WARNING: GetCookie_WithRecovery failed : 0x8024401b
    2015-02-10 07:16:11:948  864 4d8 PT WARNING: RefreshCookie failed: 0x8024401b
    2015-02-10 07:16:11:948  864 4d8 PT WARNING: RefreshPTState failed: 0x8024401b
    2015-02-10 07:16:11:948  864 4d8 PT WARNING: PTError: 0x8024401b
    2015-02-10 07:16:11:948  864 4d8 EP Got 117CAB2D-82B1-4B5A-A08C-4D62DBEE7782 redir Reporting URL: "http://statsfe2.ws.microsoft.com/ReportingWebService/ReportingWebService.asmx"
    2015-02-10 07:16:11:948  864 4d8 Report OpenReportingWebServiceConnection, reporting URL =
    http://statsfe2.ws.microsoft.com/ReportingWebService/ReportingWebService.asmx
    2015-02-10 07:16:11:948  864 4d8 IdleTmr WU operation (CLegacyEventUploader::HandleEvents) started; operation # 1079; does use network; is at background priority
    2015-02-10 07:16:11:948  864 4d8 Report Uploading 1 events using cached cookie.
    2015-02-10 07:16:11:948  864 4d8 WS WARNING: Nws Failure: errorCode=0x803d001b
    2015-02-10 07:16:11:948  864 4d8 WS WARNING: There was an error communicating with the endpoint at 'http://statsfe2.ws.microsoft.com/ReportingWebService/ReportingWebService.asmx'.
    2015-02-10 07:16:11:948  864 4d8 WS WARNING: The server returned HTTP status code '407 (0x197)' with text 'Proxy Access Denied'.
    2015-02-10 07:16:11:948  864 4d8 WS WARNING: The proxy requires HTTP authentication scheme 'negotiate'.
    2015-02-10 07:16:11:963  864 4d8 WS WARNING: Nws Failure: errorCode=0x803d0018
    2015-02-10 07:16:11:963  864 4d8 WS WARNING: There was an error communicating with the endpoint at 'http://statsfe2.ws.microsoft.com/ReportingWebService/ReportingWebService.asmx'.
    2015-02-10 07:16:11:963  864 4d8 WS WARNING: The server returned HTTP status code '407 (0x197)' with text 'Proxy Access Denied'.
    2015-02-10 07:16:11:963  864 4d8 WS WARNING: The proxy requires HTTP authentication scheme 'basic'.
    2015-02-10 07:16:11:963  864 4d8 WS WARNING: MapToSusHResult mapped Nws error 0x803d0018 to 0x8024401b
    2015-02-10 07:16:11:963  864 4d8 WS WARNING: Web service call failed with hr = 8024401b.
    2015-02-10 07:16:11:963  864 4d8 WS WARNING: Current service auth scheme='None'.
    2015-02-10 07:16:11:963  864 4d8 WS WARNING: Proxy List used: '10.0.103.220:8080', Bypass List used: '(null)', Last Proxy used: '10.0.103.220:8080', Last auth Schemes used: 'Negotiate (NTLM or Kerberos);'.
    2015-02-10 07:16:11:963  864 4d8 WS FATAL: OnCallFailure failed with hr=0X8024401B
    2015-02-10 07:16:11:963  864 4d8 Report WARNING: Failed to upload events to the server with hr = 8024401b.
    2015-02-10 07:16:11:963  864 4d8 Report WARNING: HandleEvents, ReportEventBatch, failed with proxy/auth error, hr = 0x8024401B.
    2015-02-10 07:16:11:963  864 4d8 EP Got 117CAB2D-82B1-4B5A-A08C-4D62DBEE7782 redir Reporting URL: "http://statsfe2.ws.microsoft.com/ReportingWebService/ReportingWebService.asmx"
    2015-02-10 07:16:11:963  864 4d8 Report OpenReportingWebServiceConnection, reporting URL =
    http://statsfe2.ws.microsoft.com/ReportingWebService/ReportingWebService.asmx
    2015-02-10 07:16:11:963  864 4d8 Report Re-Uploading 1 events using cached cookie, for proxy/auth failure.
    2015-02-10 07:16:12:089  864 4d8 Report Reporter successfully uploaded 1 events.
    2015-02-10 07:16:12:089  864 4d8 IdleTmr WU operation (CLegacyEventUploader::HandleEvents, operation # 1079) stopped; does use network; is at background priority
    2015-02-10 07:16:12:136  864 4d8 EP Got 117CAB2D-82B1-4B5A-A08C-4D62DBEE7782 redir Client/Server URL: "https://fe2.ws.microsoft.com/v6/ClientWebService/client.asmx"
    2015-02-10 07:16:12:136  864 4d8 PT WARNING: Cached cookie has expired or new PID is available
    2015-02-10 07:16:12:136  864 4d8 IdleTmr WU operation (CAgentProtocolTalker::GetCookie_WithRecovery) started; operation # 1080; does use network; is at background priority
    2015-02-10 07:16:12:136  864 4d8 WS WARNING: Nws Failure: errorCode=0x803d001b
    2015-02-10 07:16:12:136  864 4d8 WS WARNING: There was an error communicating with the endpoint at 'https://fe2.ws.microsoft.com/v6/ClientWebService/client.asmx'.
    2015-02-10 07:16:12:136  864 4d8 WS WARNING: The server returned HTTP status code '407 (0x197)' with text 'Proxy Access Denied'.
    2015-02-10 07:16:12:136  864 4d8 WS WARNING: The proxy requires HTTP authentication scheme 'negotiate'.
    2015-02-10 07:16:12:136  864 4d8 WS WARNING: The operation could not be completed because the channel has been aborted.
    2015-02-10 07:16:12:152  864 4d8 WS WARNING: Nws Failure: errorCode=0x803d0018
    2015-02-10 07:16:12:152  864 4d8 WS WARNING: There was an error communicating with the endpoint at 'https://fe2.ws.microsoft.com/v6/ClientWebService/client.asmx'.
    2015-02-10 07:16:12:152  864 4d8 WS WARNING: The server returned HTTP status code '407 (0x197)' with text 'Proxy Access Denied'.
    2015-02-10 07:16:12:152  864 4d8 WS WARNING: The proxy requires HTTP authentication scheme 'basic'.
    2015-02-10 07:16:12:152  864 4d8 WS WARNING: The operation could not be completed because the channel has been aborted.
    2015-02-10 07:16:12:152  864 4d8 WS WARNING: There was an error communicating with the endpoint at 'https://fe2.ws.microsoft.com/v6/ClientWebService/client.asmx'.
    2015-02-10 07:16:12:152  864 4d8 WS WARNING: The server returned HTTP status code '407 (0x197)' with text 'Proxy Access Denied'.
    2015-02-10 07:16:12:152  864 4d8 WS WARNING: The proxy requires HTTP authentication scheme 'negotiate'.
    2015-02-10 07:16:12:152  864 4d8 WS WARNING: The operation could not be completed because the channel has been aborted.
    2015-02-10 07:16:12:152  864 4d8 WS WARNING: MapToSusHResult mapped Nws error 0x803d0018 to 0x8024401b
    2015-02-10 07:16:12:152  864 4d8 WS WARNING: Web service call failed with hr = 8024401b.
    2015-02-10 07:16:12:152  864 4d8 WS WARNING: Current service auth scheme='None'.
    2015-02-10 07:16:12:152  864 4d8 WS WARNING: Proxy List used: '10.0.103.220:8080', Bypass List used: '(null)', Last Proxy used: '10.0.103.220:8080', Last auth Schemes used: 'Negotiate (NTLM or Kerberos);'.
    2015-02-10 07:16:12:152  864 4d8 WS FATAL: OnCallFailure failed with hr=0X8024401B
    2015-02-10 07:16:12:152  864 4d8 IdleTmr WU operation (CAgentProtocolTalker::GetCookie_WithRecovery, operation # 1080) stopped; does use network; is at background priority
    2015-02-10 07:16:12:152  864 4d8 PT WARNING: PTError: 0x8024401b
    2015-02-10 07:16:12:152  864 4d8 PT WARNING: GetCookie_WithRecovery failed : 0x8024401b
    2015-02-10 07:16:12:152  864 4d8 PT WARNING: RefreshCookie failed: 0x8024401b
    2015-02-10 07:16:12:152  864 4d8 PT WARNING: RefreshPTState failed: 0x8024401b
    2015-02-10 07:16:12:152  864 4d8 PT WARNING: PTError: 0x8024401b
    2015-02-10 07:16:12:152  864 4d8 EP Got 117CAB2D-82B1-4B5A-A08C-4D62DBEE7782 redir Reporting URL: "http://statsfe2.ws.microsoft.com/ReportingWebService/ReportingWebService.asmx"
    2015-02-10 07:16:12:152  864 4d8 Report OpenReportingWebServiceConnection, reporting URL =
    http://statsfe2.ws.microsoft.com/ReportingWebService/ReportingWebService.asmx
    2015-02-10 07:16:12:152  864 4d8 IdleTmr WU operation (CLegacyEventUploader::HandleEvents) started; operation # 1081; does use network; is at background priority
    2015-02-10 07:16:12:152  864 4d8 Report Uploading 1 events using cached cookie.
    2015-02-10 07:16:12:152  864 4d8 WS WARNING: Nws Failure: errorCode=0x803d001b
    2015-02-10 07:16:12:152  864 4d8 WS WARNING: There was an error communicating with the endpoint at 'http://statsfe2.ws.microsoft.com/ReportingWebService/ReportingWebService.asmx'.
    2015-02-10 07:16:12:152  864 4d8 WS WARNING: The server returned HTTP status code '407 (0x197)' with text 'Proxy Access Denied'.
    2015-02-10 07:16:12:152  864 4d8 WS WARNING: The proxy requires HTTP authentication scheme 'negotiate'.
    2015-02-10 07:16:12:167  864 4d8 WS WARNING: Nws Failure: errorCode=0x803d0018
    2015-02-10 07:16:12:167  864 4d8 WS WARNING: There was an error communicating with the endpoint at 'http://statsfe2.ws.microsoft.com/ReportingWebService/ReportingWebService.asmx'.
    2015-02-10 07:16:12:167  864 4d8 WS WARNING: The server returned HTTP status code '407 (0x197)' with text 'Proxy Access Denied'.
    2015-02-10 07:16:12:167  864 4d8 WS WARNING: The proxy requires HTTP authentication scheme 'basic'.
    2015-02-10 07:16:12:167  864 4d8 WS WARNING: MapToSusHResult mapped Nws error 0x803d0018 to 0x8024401b
    2015-02-10 07:16:12:167  864 4d8 WS WARNING: Web service call failed with hr = 8024401b.
    2015-02-10 07:16:12:167  864 4d8 WS WARNING: Current service auth scheme='None'.
    2015-02-10 07:16:12:167  864 4d8 WS WARNING: Proxy List used: '10.0.103.220:8080', Bypass List used: '(null)', Last Proxy used: '10.0.103.220:8080', Last auth Schemes used: 'Negotiate (NTLM or Kerberos);'.
    2015-02-10 07:16:12:167  864 4d8 WS FATAL: OnCallFailure failed with hr=0X8024401B
    2015-02-10 07:16:12:167  864 4d8 Report WARNING: Failed to upload events to the server with hr = 8024401b.
    2015-02-10 07:16:12:167  864 4d8 Report WARNING: HandleEvents, ReportEventBatch, failed with proxy/auth error, hr = 0x8024401B.
    2015-02-10 07:16:12:167  864 4d8 EP Got 117CAB2D-82B1-4B5A-A08C-4D62DBEE7782 redir Reporting URL: "http://statsfe2.ws.microsoft.com/ReportingWebService/ReportingWebService.asmx"
    2015-02-10 07:16:12:167  864 4d8 Report OpenReportingWebServiceConnection, reporting URL =
    http://statsfe2.ws.microsoft.com/ReportingWebService/ReportingWebService.asmx
    2015-02-10 07:16:12:167  864 4d8 Report Re-Uploading 1 events using cached cookie, for proxy/auth failure.
    2015-02-10 07:16:12:308  864 4d8 Report Reporter successfully uploaded 1 events.
    2015-02-10 07:16:12:308  864 4d8 IdleTmr WU operation (CLegacyEventUploader::HandleEvents, operation # 1081) stopped; does use network; is at background priority
    2015-02-10 07:16:12:308  864 4d8 EP Got 117CAB2D-82B1-4B5A-A08C-4D62DBEE7782 redir Client/Server URL: "https://fe2.ws.microsoft.com/v6/ClientWebService/client.asmx"
    2015-02-10 07:16:12:324  864 4d8 PT WARNING: Cached cookie has expired or new PID is available
    2015-02-10 07:16:12:324  864 4d8 IdleTmr WU operation (CAgentProtocolTalker::GetCookie_WithRecovery) started; operation # 1082; does use network; is at background priority
    2015-02-10 07:16:12:324  864 4d8 WS WARNING: Nws Failure: errorCode=0x803d001b
    2015-02-10 07:16:12:324  864 4d8 WS WARNING: There was an error communicating with the endpoint at 'https://fe2.ws.microsoft.com/v6/ClientWebService/client.asmx'.
    2015-02-10 07:16:12:324  864 4d8 WS WARNING: The server returned HTTP status code '407 (0x197)' with text 'Proxy Access Denied'.
    2015-02-10 07:16:12:324  864 4d8 WS WARNING: The proxy requires HTTP authentication scheme 'negotiate'.
    2015-02-10 07:16:12:324  864 4d8 WS WARNING: The operation could not be completed because the channel has been aborted.
    2015-02-10 07:16:12:324  864 4d8 WS WARNING: Nws Failure: errorCode=0x803d0018
    2015-02-10 07:16:12:324  864 4d8 WS WARNING: There was an error communicating with the endpoint at 'https://fe2.ws.microsoft.com/v6/ClientWebService/client.asmx'.
    2015-02-10 07:16:12:324  864 4d8 WS WARNING: The server returned HTTP status code '407 (0x197)' with text 'Proxy Access Denied'.
    2015-02-10 07:16:12:324  864 4d8 WS WARNING: The proxy requires HTTP authentication scheme 'basic'.
    2015-02-10 07:16:12:324  864 4d8 WS WARNING: The operation could not be completed because the channel has been aborted.
    2015-02-10 07:16:12:324  864 4d8 WS WARNING: There was an error communicating with the endpoint at 'https://fe2.ws.microsoft.com/v6/ClientWebService/client.asmx'.
    2015-02-10 07:16:12:324  864 4d8 WS WARNING: The server returned HTTP status code '407 (0x197)' with text 'Proxy Access Denied'.
    2015-02-10 07:16:12:324  864 4d8 WS WARNING: The proxy requires HTTP authentication scheme 'negotiate'.
    2015-02-10 07:16:12:324  864 4d8 WS WARNING: The operation could not be completed because the channel has been aborted.
    2015-02-10 07:16:12:324  864 4d8 WS WARNING: MapToSusHResult mapped Nws error 0x803d0018 to 0x8024401b
    2015-02-10 07:16:12:324  864 4d8 WS WARNING: Web service call failed with hr = 8024401b.
    2015-02-10 07:16:12:324  864 4d8 WS WARNING: Current service auth scheme='None'.
    2015-02-10 07:16:12:324  864 4d8 WS WARNING: Proxy List used: '10.0.103.220:8080', Bypass List used: '(null)', Last Proxy used: '10.0.103.220:8080', Last auth Schemes used: 'Negotiate (NTLM or Kerberos);'.
    2015-02-10 07:16:12:324  864 4d8 WS FATAL: OnCallFailure failed with hr=0X8024401B
    2015-02-10 07:16:12:324  864 4d8 IdleTmr WU operation (CAgentProtocolTalker::GetCookie_WithRecovery, operation # 1082) stopped; does use network; is at background priority
    2015-02-10 07:16:12:324  864 4d8 PT WARNING: PTError: 0x8024401b
    2015-02-10 07:16:12:324  864 4d8 PT WARNING: GetCookie_WithRecovery failed : 0x8024401b
    2015-02-10 07:16:12:324  864 4d8 PT WARNING: RefreshCookie failed: 0x8024401b
    2015-02-10 07:16:12:324  864 4d8 PT WARNING: RefreshPTState failed: 0x8024401b
    2015-02-10 07:16:12:324  864 4d8 PT WARNING: PTError: 0x8024401b
    2015-02-10 07:16:12:324  864 4d8 EP Got 117CAB2D-82B1-4B5A-A08C-4D62DBEE7782 redir Reporting URL: "http://statsfe2.ws.microsoft.com/ReportingWebService/ReportingWebService.asmx"
    2015-02-10 07:16:12:341  864 4d8 Report OpenReportingWebServiceConnection, reporting URL =
    http://statsfe2.ws.microsoft.com/ReportingWebService/ReportingWebService.asmx
    2015-02-10 07:16:12:341  864 4d8 IdleTmr WU operation (CLegacyEventUploader::HandleEvents) started; operation # 1083; does use network; is at background priority
    2015-02-10 07:16:12:341  864 4d8 Report Uploading 1 events using cached cookie.
    2015-02-10 07:16:12:341  864 4d8 WS WARNING: Nws Failure: errorCode=0x803d001b
    2015-02-10 07:16:12:341  864 4d8 WS WARNING: There was an error communicating with the endpoint at 'http://statsfe2.ws.microsoft.com/ReportingWebService/ReportingWebService.asmx'.
    2015-02-10 07:16:12:341  864 4d8 WS WARNING: The server returned HTTP status code '407 (0x197)' with text 'Proxy Access Denied'.
    2015-02-10 07:16:12:341  864 4d8 WS WARNING: The proxy requires HTTP authentication scheme 'negotiate'.
    2015-02-10 07:16:12:341  864 4d8 WS WARNING: Nws Failure: errorCode=0x803d0018
    2015-02-10 07:16:12:355  864 4d8 WS WARNING: There was an error communicating with the endpoint at 'http://statsfe2.ws.microsoft.com/ReportingWebService/ReportingWebService.asmx'.
    2015-02-10 07:16:12:355  864 4d8 WS WARNING: The server returned HTTP status code '407 (0x197)' with text 'Proxy Access Denied'.
    2015-02-10 07:16:12:355  864 4d8 WS WARNING: The proxy requires HTTP authentication scheme 'basic'.
    2015-02-10 07:16:12:355  864 4d8 WS WARNING: MapToSusHResult mapped Nws error 0x803d0018 to 0x8024401b
    2015-02-10 07:16:12:355  864 4d8 WS WARNING: Web service call failed with hr = 8024401b.
    2015-02-10 07:16:12:355  864 4d8 WS WARNING: Current service auth scheme='None'.
    2015-02-10 07:16:12:355  864 4d8 WS WARNING: Proxy List used: '10.0.103.220:8080', Bypass List used: '(null)', Last Proxy used: '10.0.103.220:8080', Last auth Schemes used: 'Negotiate (NTLM or Kerberos);'.
    2015-02-10 07:16:12:355  864 4d8 WS FATAL: OnCallFailure failed with hr=0X8024401B
    2015-02-10 07:16:12:355  864 4d8 Report WARNING: Failed to upload events to the server with hr = 8024401b.
    2015-02-10 07:16:12:355  864 4d8 Report WARNING: HandleEvents, ReportEventBatch, failed with proxy/auth error, hr = 0x8024401B.
    2015-02-10 07:16:12:355  864 4d8 EP Got 117CAB2D-82B1-4B5A-A08C-4D62DBEE7782 redir Reporting URL: "http://statsfe2.ws.microsoft.com/ReportingWebService/ReportingWebService.asmx"
    2015-02-10 07:16:12:355  864 4d8 Report OpenReportingWebServiceConnection, reporting URL =
    http://statsfe2.ws.microsoft.com/ReportingWebService/ReportingWebService.asmx
    2015-02-10 07:16:12:355  864 4d8 Report Re-Uploading 1 events using cached cookie, for proxy/auth failure.
    2015-02-10 07:16:12:480  864 4d8 Report Reporter successfully uploaded 1 events.
    2015-02-10 07:16:12:480  864 4d8 IdleTmr WU operation (CLegacyEventUploader::HandleEvents, operation # 1083) stopped; does use network; is at background priority
    2015-02-10 07:16:12:511  864 4d8 EP Got 117CAB2D-82B1-4B5A-A08C-4D62DBEE7782 redir Client/Server URL: "https://fe2.ws.microsoft.com/v6/ClientWebService/client.asmx"
    2015-02-10 07:16:12:511  864 4d8 PT WARNING: Cached cookie has expired or new PID is available
    2015-02-10 07:16:12:511  864 4d8 IdleTmr WU operation (CAgentProtocolTalker::GetCookie_WithRecovery) started; operation # 1084; does use network; is at background priority
    2015-02-10 07:16:12:527  864 4d8 WS WARNING: Nws Failure: errorCode=0x803d001b
    2015-02-10 07:16:12:527  864 4d8 WS WARNING: There was an error communicating with the endpoint at 'https://fe2.ws.microsoft.com/v6/ClientWebService/client.asmx'.
    2015-02-10 07:16:12:527  864 4d8 WS WARNING: The server returned HTTP status code '407 (0x197)' with text 'Proxy Access Denied'.
    2015-02-10 07:16:12:527  864 4d8 WS WARNING: The proxy requires HTTP authentication scheme 'negotiate'.
    2015-02-10 07:16:12:527  864 4d8 WS WARNING: The operation could not be completed because the channel has been aborted.
    2015-02-10 07:16:12:527  864 4d8 WS WARNING: Nws Failure: errorCode=0x803d0018
    2015-02-10 07:16:12:527  864 4d8 WS WARNING: There was an error communicating with the endpoint at 'https://fe2.ws.microsoft.com/v6/ClientWebService/client.asmx'.
    2015-02-10 07:16:12:527  864 4d8 WS WARNING: The server returned HTTP status code '407 (0x197)' with text 'Proxy Access Denied'.
    2015-02-10 07:16:12:527  864 4d8 WS WARNING: The proxy requires HTTP authentication scheme 'basic'.
    2015-02-10 07:16:12:527  864 4d8 WS WARNING: The operation could not be completed because the channel has been aborted.
    2015-02-10 07:16:12:527  864 4d8 WS WARNING: There was an error communicating with the endpoint at 'https://fe2.ws.microsoft.com/v6/ClientWebService/client.asmx'.
    2015-02-10 07:16:12:527  864 4d8 WS WARNING: The server returned HTTP status code '407 (0x197)' with text 'Proxy Access Denied'.
    2015-02-10 07:16:12:527  864 4d8 WS WARNING: The proxy requires HTTP authentication scheme 'negotiate'.
    2015-02-10 07:16:12:527  864 4d8 WS WARNING: The operation could not be completed because the channel has been aborted.
    2015-02-10 07:16:12:527  864 4d8 WS WARNING: MapToSusHResult mapped Nws error 0x803d0018 to 0x8024401b
    2015-02-10 07:16:12:527  864 4d8 WS WARNING: Web service call failed with hr = 8024401b.
    2015-02-10 07:16:12:527  864 4d8 WS WARNING: Current service auth scheme='None'.
    2015-02-10 07:16:12:527  864 4d8 WS WARNING: Proxy List used: '10.0.103.220:8080', Bypass List used: '(null)', Last Proxy used: '10.0.103.220:8080', Last auth Schemes used: 'Negotiate (NTLM or Kerberos);'.
    2015-02-10 07:16:12:527  864 4d8 WS FATAL: OnCallFailure failed with hr=0X8024401B
    2015-02-10 07:16:12:527  864 4d8 IdleTmr WU operation (CAgentProtocolTalker::GetCookie_WithRecovery, operation # 1084) stopped; does use network; is at background priority
    2015-02-10 07:16:12:527  864 4d8 PT WARNING: PTError: 0x8024401b
    2015-02-10 07:16:12:527  864 4d8 PT WARNING: GetCookie_WithRecovery failed : 0x8024401b
    2015-02-10 07:16:12:527  864 4d8 PT WARNING: RefreshCookie failed: 0x8024401b
    2015-02-10 07:16:12:527  864 4d8 PT WARNING: RefreshPTState failed: 0x8024401b
    2015-02-10 07:16:12:527  864 4d8 PT WARNING: PTError: 0x8024401b
    2015-02-10 07:16:12:527  864 4d8 EP Got 117CAB2D-82B1-4B5A-A08C-4D62DBEE7782 redir Reporting URL: "http://statsfe2.ws.microsoft.com/ReportingWebService/ReportingWebService.asmx"
    2015-02-10 07:16:12:527  864 4d8 Report OpenReportingWebServiceConnection, reporting URL =
    http://statsfe2.ws.microsoft.com/ReportingWebService/ReportingWebService.asmx
    2015-02-10 07:16:12:527  864 4d8 IdleTmr WU operation (CLegacyEventUploader::HandleEvents) started; operation # 1085; does use network; is at background priority
    2015-02-10 07:16:12:527  864 4d8 Report Uploading 1 events using cached cookie.
    2015-02-10 07:16:12:543  864 4d8 WS WARNING: Nws Failure: errorCode=0x803d001b
    2015-02-10 07:16:12:543  864 4d8 WS WARNING: There was an error communicating with the endpoint at 'http://statsfe2.ws.microsoft.com/ReportingWebService/ReportingWebService.asmx'.
    2015-02-10 07:16:12:543  864 4d8 WS WARNING: The server returned HTTP status code '407 (0x197)' with text 'Proxy Access Denied'.
    2015-02-10 07:16:12:543  864 4d8 WS WARNING: The proxy requires HTTP authentication scheme 'negotiate'.
    2015-02-10 07:16:12:543  864 4d8 WS WARNING: Nws Failure: errorCode=0x803d0018
    2015-02-10 07:16:12:543  864 4d8 WS WARNING: There was an error communicating with the endpoint at 'http://statsfe2.ws.microsoft.com/ReportingWebService/ReportingWebService.asmx'.
    2015-02-10 07:16:12:543  864 4d8 WS WARNING: The server returned HTTP status code '407 (0x197)' with text 'Proxy Access Denied'.
    2015-02-10 07:16:12:543  864 4d8 WS WARNING: The proxy requires HTTP authentication scheme 'basic'.
    2015-02-10 07:16:12:543  864 4d8 WS WARNING: MapToSusHResult mapped Nws error 0x803d0018 to 0x8024401b
    2015-02-10 07:16:12:543  864 4d8 WS WARNING: Web service call failed with hr = 8024401b.
    2015-02-10 07:16:12:543  864 4d8 WS WARNING: Current service auth scheme='None'.
    2015-02-10 07:16:12:543  864 4d8 WS WARNING: Proxy List used: '10.0.103.220:8080', Bypass List used: '(null)', Last Proxy used: '10.0.103.220:8080', Last auth Schemes used: 'Negotiate (NTLM or Kerberos);'.
    2015-02-10 07:16:12:543  864 4d8 WS FATAL: OnCallFailure failed with hr=0X8024401B
    2015-02-10 07:16:12:543  864 4d8 Report WARNING: Failed to upload events to the server with hr = 8024401b.
    2015-02-10 07:16:12:543  864 4d8 Report WARNING: HandleEvents, ReportEventBatch, failed with proxy/auth error, hr = 0x8024401B.
    2015-02-10 07:16:12:558  864 4d8 EP Got 117CAB2D-82B1-4B5A-A08C-4D62DBEE7782 redir Reporting URL: "http://statsfe2.ws.microsoft.com/ReportingWebService/ReportingWebService.asmx"
    2015-02-10 07:16:12:558  864 4d8 Report OpenReportingWebServiceConnection, reporting URL =
    http://statsfe2.ws.microsoft.com/ReportingWebService/ReportingWebService.asmx
    2015-02-10 07:16:12:558  864 4d8 Report Re-Uploading 1 events using cached cookie, for proxy/auth failure.
    2015-02-10 07:16:12:683  864 4d8 Report Reporter successfully uploaded 1 events.
    2015-02-10 07:16:12:683  864 4d8 IdleTmr WU operation (CLegacyEventUploader::HandleEvents, operation # 1085) stopped; does use network; is at background priority
    2015-02-10 07:16:12:715  864 4d8 EP Got 117CAB2D-82B1-4B5A-A08C-4D62DBEE7782 redir Client/Server URL: "https://fe2.ws.microsoft.com/v6/ClientWebService/client.asmx"
    2015-02-10 07:16:12:715  864 4d8 PT WARNING: Cached cookie has expired or new PID is available
    2015-02-10 07:16:12:715  864 4d8 IdleTmr WU operation (CAgentProtocolTalker::GetCookie_WithRecovery) started; operation # 1086; does use network; is at background priority
    2015-02-10 07:16:12:715  864 4d8 WS WARNING: Nws Failure: errorCode=0x803d001b
    2015-02-10 07:16:12:715  864 4d8 WS WARNING: There was an error communicating with the endpoint at 'https://fe2.ws.microsoft.com/v6/ClientWebService/client.asmx'.
    2015-02-10 07:16:12:715  864 4d8 WS WARNING: The server returned HTTP status code '407 (0x197)' with text 'Proxy Access Denied'.
    2015-02-10 07:16:12:715  864 4d8 WS WARNING: The proxy requires HTTP authentication scheme 'negotiate'.
    2015-02-10 07:16:12:715  864 4d8 WS WARNING: The operation could not be completed because the channel has been aborted.
    2015-02-10 07:16:12:730  864 4d8 WS WARNING: Nws Failure: errorCode=0x803d0018
    2015-02-10 07:16:12:730  864 4d8 WS WARNING: There was an error communicating with the endpoint at 'https://fe2.ws.microsoft.com/v6/ClientWebService/client.asmx'.
    2015-02-10 07:16:12:730  864 4d8 WS WARNING: The server returned HTTP status code '407 (0x197)' with text 'Proxy Access Denied'.
    2015-02-10 07:16:12:730  864 4d8 WS WARNING: The proxy requires HTTP authentication scheme 'basic'.
    2015-02-10 07:16:12:730  864 4d8 WS WARNING: The operation could not be completed because the channel has been aborted.
    2015-02-10 07:16:12:730  864 4d8 WS WARNING: There was an error communicating with the endpoint at 'https://fe2.ws.microsoft.com/v6/ClientWebService/client.asmx'.
    2015-02-10 07:16:12:730  864 4d8 WS WARNING: The server returned HTTP status code '407 (0x197)' with text 'Proxy Access Denied'.
    2015-02-10 07:16:12:730  864 4d8 WS WARNING: The proxy requires HTTP authentication scheme 'negotiate'.
    2015-02-10 07:16:12:730  864 4d8 WS WARNING: The operation could not be completed because the channel has been aborted.
    2015-02-10 07:16:12:730  864 4d8 WS WARNING: MapToSusHResult mapped Nws error 0x803d0018 to 0x8024401b
    2015-02-10 07:16:12:730  864 4d8 WS WARNING: Web service call failed with hr = 8024401b.
    2015-02-10 07:16:12:730  864 4d8 WS WARNING: Current service auth scheme='None'.
    2015-02-10 07:16:12:730  864 4d8 WS WARNING: Proxy List used: '10.0.103.220:8080', Bypass List used: '(null)', Last Proxy used: '10.0.103.220:8080', Last auth Schemes used: 'Negotiate (NTLM or Kerberos);'.
    2015-02-10 07:16:12:730  864 4d8 WS FATAL: OnCallFailure failed with hr=0X8024401B
    2015-02-10 07:16:12:730  864 4d8 IdleTmr WU operation (CAgentProtocolTalker::GetCookie_WithRecovery, operation # 1086) stopped; does use network; is at background priority
    2015-02-10 07:16:12:730  864 4d8 PT WARNING: PTError: 0x8024401b
    2015-02-10 07:16:12:730  864 4d8 PT WARNING: GetCookie_WithRecovery failed : 0x8024401b
    2015-02-10 07:16:12:730  864 4d8 PT WARNING: RefreshCookie failed: 0x8024401b
    2015-02-10 07:16:12:730  864 4d8 PT WARNING: RefreshPTState failed: 0x8024401b
    2015-02-10 07:16:12:730  864 4d8 PT WARNING: PTError: 0x8024401b
    2015-02-10 07:16:12:730  864 4d8 EP Got 117CAB2D-82B1-4B5A-A08C-4D62DBEE7782 redir Reporting URL: "http://statsfe2.ws.microsoft.com/ReportingWebService/ReportingWebService.asmx"
    2015-02-10 07:16:12:730  864 4d8 Report OpenReportingWebServiceConnection, reporting URL =
    http://statsfe2.ws.microsoft.com/ReportingWebService/ReportingWebService.asmx
    2015-02-10 07:16:12:730  864 4d8 IdleTmr WU operation (CLegacyEventUploader::HandleEvents) started; operation # 1087; does use network; is at background priority
    2015-02-10 07:16:12:730  864 4d8 Report Uploading 1 events using cached cookie.
    2015-02-10 07:16:12:730  864 4d8 WS WARNING: Nws Failure: errorCode=0x803d001b
    2015-02-10 07:16:12:730  864 4d8 WS WARNING: There was an error communicating with the endpoint at 'http://statsfe2.ws.microsoft.com/ReportingWebService/ReportingWebService.asmx'.
    2015-02-10 07:16:12:730  864 4d8 WS WARNING: The server returned HTTP status code '407 (0x197)' with text 'Proxy Access Denied'.
    2015-02-10 07:16:12:730  864 4d8 WS WARNING: The proxy requires HTTP authentication scheme 'negotiate'.
    2015-02-10 07:16:12:746  864 4d8 WS WARNING: Nws Failure: errorCode=0x803d0018
    2015-02-10 07:16:12:746  864 4d8 WS WARNING: There was an error communicating with the endpoint at 'http://statsfe2.ws.microsoft.com/ReportingWebService/ReportingWebService.asmx'.
    2015-02-10 07:16:12:746  864 4d8 WS WARNING: The server returned HTTP status code '407 (0x197)' with text 'Proxy Access Denied'.
    2015-02-10 07:16:12:746  864 4d8 WS WARNING: The proxy requires HTTP authentication scheme 'basic'.
    2015-02-10 07:16:12:746  864 4d8 WS WARNING: MapToSusHResult mapped Nws error 0x803d0018 to 0x8024401b
    2015-02-10 07:16:12:746  864 4d8 WS WARNING: Web service call failed with hr = 8024401b.
    2015-02-10 07:16:12:746  864 4d8 WS WARNING: Current service auth scheme='None'.
    2015-02-10 07:16:12:746  864 4d8 WS WARNING: Proxy List used: '10.0.103.220:8080', Bypass List used: '(null)', Last Proxy used: '10.0.103.220:8080', Last auth Schemes used: 'Negotiate (NTLM or Kerberos);'.
    2015-02-10 07:16:12:746  864 4d8 WS FATAL: OnCallFailure failed with hr=0X8024401B
    2015-02-10 07:16:12:746  864 4d8 Report WARNING: Failed to upload events to the server with hr = 8024401b.
    2015-02-10 07:16:12:746  864 4d8 Report WARNING: HandleEvents, ReportEventBatch, failed with proxy/auth error, hr = 0x8024401B.
    2015-02-10 07:16:12:746  864 4d8 EP Got 117CAB2D-82B1-4B5A-A08C-4D62DBEE7782 redir Reporting URL: "http://statsfe2.ws.microsoft.com/ReportingWebService/ReportingWebService.asmx"
    2015-02-10 07:16:12:746  864 4d8 Report OpenReportingWebServiceConnection, reporting URL =
    http://statsfe2.ws.microsoft.com/ReportingWebService/ReportingWebService.asmx
    2015-02-10 07:16:12:746  864 4d8 Report Re-Uploading 1 events using cached cookie, for proxy/auth failure.
    2015-02-10 07:16:12:875  864 4d8 Report Reporter successfully uploaded 1 events.
    2015-02-10 07:16:12:875  864 4d8 IdleTmr WU operation (CLegacyEventUploader::HandleEvents, operation # 1087) stopped; does use network; is at background priority
    2015-02-10 07:16:12:891  864 4d8 EP Got 117CAB2D-82B1-4B5A-A08C-4D62DBEE7782 redir Client/Server URL: "https://fe2.ws.microsoft.com/v6/ClientWebService/client.asmx"
    2015-02-10 07:16:12:906  864 4d8 PT WARNING: Cached cookie has expired or new PID is available
    2015-02-10 07:16:12:906  864 4d8 IdleTmr WU operation (CAgentProtocolTalker::GetCookie_WithRecovery) started; operation # 1088; does use network; is at background priority
    2015-02-10 07:16:12:906  864 4d8 WS WARNING: Nws Failure: errorCode=0x803d001b
    2015-02-10 07:16:12:906  864 4d8 WS WARNING: There was an error communicating with the endpoint at 'https://fe2.ws.microsoft.com/v6/ClientWebService/client.asmx'.
    2015-02-10 07:16:12:906  864 4d8 WS WARNING: The server returned HTTP status code '407 (0x197)' with text 'Proxy Access Denied'.
    2015-02-10 07:16:12:906  864 4d8 WS WARNING: The proxy requires HTTP authentication scheme 'negotiate'.
    2015-02-10 07:16:12:906  864 4d8 WS WARNING: The operation could not be completed because the channel has been aborted.
    2015-02-10 07:16:12:906  864 4d8 WS WARNING: Nws Failure: errorCode=0x803d0018
    2015-02-10 07:16:12:906  864 4d8 WS WARNING: There was an error communicating with the endpoint at 'https://fe2.ws.microsoft.com/v6/ClientWebService/client.asmx'.
    2015-02-10 07:16:12:906  864 4d8 WS WARNING: The server returned HTTP status code '407 (0x197)' with text 'Proxy Access Denied'.
    2015-02-10 07:16:12:906  864 4d8 WS WARNING: The proxy requires HTTP authentication scheme 'basic'.
    2015-02-10 07:16:12:906  864 4d8 WS WARNING: The operation could not be completed because the channel has been aborted.
    2015-02-10 07:16:12:906  864 4d8 WS WARNING: There was an error communicating with the endpoint at 'https://fe2.ws.microsoft.com/v6/ClientWebService/client.asmx'.
    2015-02-10 07:16:12:906  864 4d8 WS WARNING: The server returned HTTP status code '407 (0x197)' with text 'Proxy Access Denied'.
    2015-02-10 07:16:12:906  864 4d8 WS WARNING: The proxy requires HTTP authentication scheme 'negotiate'.
    2015-02-10 07:16:12:906  864 4d8 WS WARNING: The operation could not be completed because the channel has been aborted.
    2015-02-10 07:16:12:906  864 4d8 WS WARNING: MapToSusHResult mapped Nws error 0x803d0018 to 0x8024401b
    2015-02-10 07:16:12:906  864 4d8 WS WARNING: Web service call failed with hr = 8024401b.
    2015-02-10 07:16:12:906  864 4d8 WS WARNING: Current service auth scheme='None'.
    2015-02-10 07:16:12:906  864 4d8 WS WARNING: Proxy List used: '10.0.103.220:8080', Bypass List used: '(null)', Last Proxy used: '10.0.103.220:8080', Last auth Schemes used: 'Negotiate (NTLM or Kerberos);'.
    2015-02-10 07:16:12:906  864 4d8 WS FATAL: OnCallFailure failed with hr=0X8024401B
    2015-02-10 07:16:12:906  864 4d8 IdleTmr WU operation (CAgentProtocolTalker::GetCookie_WithRecovery, operation # 1088) stopped; does use network; is at background priority
    2015-02-10 07:16:12:906  864 4d8 PT WARNING: PTError: 0x8024401b
    2015-02-10 07:16:12:906  864 4d8 PT WARNING: GetCookie_WithRecovery failed : 0x8024401b
    2015-02-10 07:16:12:906  864 4d8 PT WARNING: RefreshCookie failed: 0x8024401b
    2015-02-10 07:16:12:906  864 4d8 PT WARNING: RefreshPTState failed: 0x8024401b
    2015-02-10 07:16:12:906  864 4d8 PT WARNING: PTError: 0x8024401b
    2015-02-10 07:16:12:906  864 4d8 EP Got 117CAB2D-82B1-4B5A-A08C-4D62DBEE7782 redir Reporting URL: "http://statsfe2.ws.microsoft.com/ReportingWebService/ReportingWebService.asmx"
    2015-02-10 07:16:12:906  864 4d8 Report OpenReportingWebServiceConnection, reporting URL =
    http://statsfe2.ws.microsoft.com/ReportingWebService/ReportingWebService.asmx
    2015-02-10 07:16:12:906  864 4d8 IdleTmr WU operation (CLegacyEventUploader::HandleEvents) started; operation # 1089; does use network; is at background priority
    2015-02-10 07:16:12:906  864 4d8 Report Uploading 1 events using cached cookie.
    Ian

  • 2012 R2 DC refuses to report into 2012 WSUS server

    Hi All,Last week, I rolled out a brand new 2012 R2 WSUS box, and let all clients come over to it via GPO (easier route than migrating the existing WSUS setup, as we needed to keep the old WSUS server, due to it running other services too)... Now, all of our machines registered with the new WSUS box, and for the most part, reported their status correctly... However, I have one 2012 R2 DC here that just REFUSES to report into the new WSUS! Yet I have 9 or so other 2012 R2 boxes (that includes 3 more 2012 R2 DC's) that are reporting just fine!It initially registered with the new WSUS box last week, but remained at 0% and claimed it hadn't reported its status yet... I've tried removing it from the WSUS server, and now it won't register either!I've looked at the WindowsUpdate.log file, and it's pointing correctly to the new WSUS box, yet I...
    This topic first appeared in the Spiceworks Community

    That page is a link to the Datacenter version of Server 2012 R2 and the one I am attempting to install numerous times is the non data center version. Anyways I selected Datacenter ISO version, registered and then proceeded to the next page where I seen the
    following error:
    The webpage at http://care.dlservice.microsoft.com/dl/download/6/2/A/62A76ABB-9990-4EFC-A4FE-C7D698DAEB96/9600.17050.WINBLUE_REFRESH.140317-1640_X64FRE_SERVER_EVAL_EN-US-IR3_SSS_X64FREE_EN-US_DV9.I might
    be temporarily down or it may have moved permanently to a new web address.
    Can anyone who has successfully installed Server 2012 R2  (non DataCenter) version from ISO on to a temp system generate
    a check sum of the ISO file?
    I am going around in a circle here after attempting to install it on 2 systems as a standalone install and on two additional
    systems in VirtualBox and VMWare Workstation on one system and VirtualBox on a second system all of which resulted in the all too familiar error.

  • Reporting Services 2012 for SharePoint and SQL Server Agent "Subscriptions and Alerts"

    After installing Reporting Services for SharePoint (Denali) in my test farm, I'm trying to configure the "SQL Server Agent" access for Reporting Services.  From Central Admin I'm going to the Reporting Service applicaiton configuration screen and selecting
    "Provision Subscriptions and Alerts".  I've tried both options on this screen.  I've manually executed the "download sql script" in SQL Server, as well as entering a user with SQL sys admin rights on the SQL server into the login fields on the screen. 
    The role and permissions have been created for the application pool service account, but Reporting Services is still trying to connect with the annonymous login because I'm getting the following alert each time I open the "Provision Subscriptions and Alerts"
    screen:
    Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON'
    The "status" on the screen still shows "SQL Server Agent State cannot be determined".  Has anyone else seen this? 
    Thanks!!

    Thanks for your reply!
    1) Looks like the new Reporting Services does not run as a Windows Service so it's not listed in the "Configure Service Accounts" pulldown.  As a result, I don't see how to set the service account.  It's only assigned to an application pool. 
    I installed it into an existing application pool and that application pool "is" in the list and has a domain service account already assigned.
    2) Which users need to be in here in order to configure the "Provision Subscriptions and Alerts" screen?  I already have the farm admin account which is the account I use when running Central Admin.
    3) As mentioned in #1, I've installed Reporting Services into an existing application pool with other service apps.
    4) This link is for Reporting Services 2008 R2 which is very different install process.  But I did follow the SQL Server Reporting Services 2012 RC0 installation instructions and the Reporting Services is functioning correctly with no errors. 
    I'm just not able to configure the sceduling the alerting with interfaces with the SQL Server Agent.
    Thanks!

  • APEX 4.0 Report Query column limitation, 43 column maximum for the result!

    Hi there,
    I'm trying to generate report from Apex 4.0.1, but I got stucked with column limitation when I'm executing the report query.
    Case:
    Environment: oracle 11g, apex 4.0.1, oracle BI 11, windows xp
    Table: My test table is quite simple, by creating a sample table with 44 columns, the column name is random, i.e. column1..column44, column data type is varchar2 (20)
    report query:my report query is also simple, by "select * from testtable"
    Data: no data in my sample table
    Error: then I'll get the error: "HelpORA-06502: PL/SQL: numeric or value error: character string buffer too small"
    solution: If I shrink the table column from 44 to 43, then the report can be generated to xls, pdf, etc.
    Question: Is there any column limitation for Apex report query? I know there's a 32k row size limitation for varchar, but since there's no single data in my table, it shouldn't be the case.
    Does anybody get this issue before? Thanks for any generous input!! :)
    Horatio

    hi marko,
    Thanks for the reply, but i can't find the 45 column limitation from report query and report printing. any clue for this call?
    Regards
    Horatio

  • SQL Server Reporting Services Add-In for SharePoint not installing properly

    Environment: Windows Server 2008R2, SQL Server 2012, SharePoint 2013 Enterprise
    When I run the install for SQL Server 2012 Reporting Services Add-in for SharePoint it SHOULD install to c:\program files\common files\Microsoft Shared\Web Server Extensions\14 AND 15. Specifically it should drop a mess of ASPx pages for admin to the \templates\Admin\ReportServer
    folder. In this environment it only pushes them to the 14 folder and not the 15. Any ideas on why this would happen? I have not ever seen this before and it is hosing the install completely.

    Hi Gouranga,
    According to your description, when you install the SQL Server 2012 Reporting Services Add-in for SharePoint 2013, you find the files are installed into the folder for sharepoint 2010(..../14). Right?
    In Reporting Services, Not all features are supported in all combinations of report server, Reporting Services add-in for SharePoint, and SharePoint Products. Please see the linke below:
    Supported Combinations of SharePoint and Reporting Services Server and Add-in (SQL Server 2012)
    As you can see in the link, the SQL Server 2012 Reporting Services Add-in is only for Sharepoint 2010. This the reason why it's installed into the file for sharepoint 2010.
    Reference:
    Where to find the Reporting Services add-in for SharePoint Products (SharePoint 2010 and SharePoint 2013)
    Install or Uninstall the Reporting Services Add-in for SharePoint
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

Maybe you are looking for

  • Printer no longer connecting to wireless network

    I updated my wifi password so I had to reconnect all my wifi enabled devices. I decided to just go back to the original password b/c I had too many devices to update then all of a sudden my wireless printer stopped working. It kept telling me the pri

  • Still image looks dark

    I'm importing a still into a motion project, and somehow its opacity not at 100%. However, on the behaviors tab the opacity is at 100%. It seems to be something with this particular project. I opened a new motion project, and imported the same still

  • Hi, Help Please me

    Hi I am getting the below error on the BizTalk application xlang/s engine event log entry: Uncaught exception (see the 'inner exception' below) has suspended an instance of service 'Smol.OE.ReturnEntry.OEProcessor.Orchs.ReturnsEntryProcessorV1_0(31c7

  • MM_swapimage issues

    I have a MMswap image set up with five images in a Table below a larger image (located in the middle of a very tall .php file), when I onmouseover, or onmouseout the smaller images they change out the larger image with the smaller as they should, but

  • Changing text  field (need more positions) of variant ZUK01 in FF67

    I am using a variant called ZUK01 in FF67. In that variant I have a Line item text field, but with not enough positions. Is it possible to change the field properties so I can change the positions of the field? I want to use the variant but need to f