SQL Developer 3.0 error: The parameter is incorrect

I am running a virtualized the SQL Developer 3.0 on windows XP. Today I noticed that there was an error when I created a connection profile.
Source: oracle.dbtools.raptor.navigator.folders.DatabasesFilter
Message: The parameter is incorrect
Despite of the error, I was able to connect to the target database and had no problem with any database operations. The newly added connections were not saved upon exit. Any idea?

In another post on a different subject, Gravenstein posted the following:
<quote>There aren't very many files that RoboSource Control excludes. Let's see, a quick tally of my RH6 webhelp project shows the following to be excluded:
* projectname.cpd
* projectname.pss
* projectname.hhp
* projectname.trl
* ehlpdhtm.js
That's not very many, but the consequences of adding them to RSC are severe--things get very messed up, very fast. That's why I always let RH control the upload into RSC. Not an option if you're not using RSC, I realize.
</quote>
I don't work with source control but I would imagine that list applies to other source control programs and to RH8.
See www.grainge.org for RoboHelp and Authoring tips

Similar Messages

  • Error: The parameter is incorrect

    Hi,
    I am using MS office 2007 and XML publisher desktop.
    When i try to select any items in the BI publisher Add in menu I get this error "Error: The parameter is incorrect".
    What could be wrong? how to resolve this issue?
    --Prasanna                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    The error is resolved after I had reinstalled both MS 2007 and XML publisher desktop.
    --Prasanna                                                                                                                                                                                                       

  • Using MSXML2.ServerXMLHttp in MS SQL 2012 - receiving error "The Parameter is incorrect".

    I have a procedure used to make http post requests to a REST web service external to my SQL server, using MSXML2.ServerXMLHttp via POST request. This procedure works without issue in SQL 2008 r2, but upon upgrade to 2012, begins to fail with the message
    : "The Parameter is incorrect."
    It is failing when I attempt to exec the 'send' method on line 137. I cannot find any documentation about how the MSXML2.ServerXMLHttp object needs to be treated differently in 2012. I found a similar question here: http://social.technet.microsoft.com/Forums/sqlserver/en-US/a6de1eea-5fe9-4087-809b-524c98f20a4d/msxml6dll-methodsend-dont-work-in-windows-server-2012-and-sql-2008r2?forum=sqlxml 
    But it isn't resovled - just indications to file a bug report - and one solution that says to just copy the DLL from 2008 over to 2012 to fix the issue. Is that really the right solution here or does someone have information on how to do this properly with
    2012?
    Here is my procedure:
    CREATE procedure [dbo].[HTTP_REQUEST](@response varchar(4000) out, 
    @method varchar(64),
    @p1name varchar(256) = null,
    @p1value varchar(max) = null,
    @p2name varchar(256) = null,
    @p2value varchar(max) = null,
    @p3name varchar(256) = null,
    @p3value varchar(max) = null,
    @p4name varchar(256) = null,
    @p4value varchar(max) = null,
    @p5name varchar(256) = null,
    @p5value varchar(max) = null,
    @p6name varchar(256) = null,
    @p6value varchar(max) = null,
    @parent_table varchar(30) = null
    As
    Declare
    @obj int
    ,@hr int
    ,@status int
    ,@msg varchar(255)
    ,@apiKey varchar (64)
    ,@params varchar (max)
    SET @apiKey = (Select a.default_value from T_DEFAULTS a WHERE a.parent_table = @parent_table AND a.field_name = 'm2apiKey')
    SET @params = ''
    If @apiKey is null
      Begin
    select @msg = 'Invalid mail2 APIKey'
    RAISERROR(@msg, 11, 2) WITH SETERROR
    return -101
      End
    If @method is null
      Begin
    select @msg = 'No valid mail2 API method provided'
    RAISERROR(@msg, 11, 2) WITH SETERROR
    return -101
      End
    exec @hr = sp_OACreate 'MSXML2.ServerXMLHttp', @obj OUT
    if @hr <> 0 begin Raiserror('sp_OACreate MSXML2.ServerXMLHttp.3.0
    failed', 16,1) return end
    exec @hr = sp_OAMethod @obj, 'open', NULL, 'POST', 'http://api.someapiurl.net/REST/', true
    if @hr <>0 begin set @msg = 'sp_OAMethod Open failed' goto eh end
    exec @hr = sp_OAMethod @obj, 'setRequestHeader', NULL, 'Content-Type',
    'application/x-www-form-urlencoded'
    if @hr <>0 begin set @msg = 'sp_OAMethod setRequestHeader failed' goto
    eh end
    --Set Timeouts
    exec @hr = sp_OAMethod @obj, 'setTimeouts',NULL,5000,5000,10000,10000
    if @hr <>0 begin set @msg = 'sp_OAMethod setTimeouts failed' goto
    eh end
    --Add Method
    SET @params = '&method='+@method
    --Add API key
    SET @params = @params + '&key='+@apiKey
    --Add p1 if present
    IF @p1name IS NOT NULL
    BEGIN
    SET @params = @params + '&' + @p1name + '=' + @p1value
    END
    --Add p2
    IF @p2name IS NOT NULL
    BEGIN
    SET @params = @params + '&' + @p2name + '=' + @p2value
    END
    --Add p3
    IF @p3name IS NOT NULL
    BEGIN
    SET @params = @params + '&' + @p3name + '=' + @p3value
    END
    --Add p4
    IF @p4name IS NOT NULL
    BEGIN
    SET @params = @params + '&' + @p4name + '=' + @p4value
    END
    --Add p5
    IF @p5name IS NOT NULL
    BEGIN
    SET @params = @params + '&' + @p5name + '=' + @p5value
    END
    --Add p6
    IF @p6name IS NOT NULL
    BEGIN
    SET @params = @params + '&' + @p6name + '=' + @p6value
    END
    --SELECT @params
    --Send the request
    exec @hr = sp_OAMethod @obj, send, NULL, @params
    if @hr <>0 begin set @msg = 'sp_OAMethod Send failed' goto eh end
    --Get the status
    exec @hr = sp_OAGetProperty @obj, 'status', @status OUT
    if @hr <>0 begin set @msg = 'sp_OAGetProperty read status failed on get status' goto
    eh
    end
    if @status <> 200 begin set @msg = 'sp_OAMethod http status ' +
    str(@status) goto eh end
    if @status = 200 begin print 'sp_OAMethod http status is 200:Successful ' +
    str(@status) + @params end
    exec @hr = sp_OAGetProperty @obj, 'responseText', @response OUT
    if @hr <>0 begin set @msg = 'sp_OAGetProperty read response failed on get response text error code' + convert(varchar,@hr) goto
    eh end
    exec @hr = sp_OADestroy @obj
    return
    eh:
    exec @hr = sp_OADestroy @obj
    Raiserror(@msg, 16, 1)
    return
    Many thanks for the input - 
    Chris

    How can I fix the problem? changing the OS? I just bought the new server. I do?
    thanks
    Miky
    Rambaldi

  • Application Error - The parameter is incorrect

    During a call on skype, as I was playing a video game, my computer encountered a "blue screen of death". I figured there was something wrong with my hard drive but when my computer rebooted, it seemed fine. However, after my computer attempted to start up applications many of them crashed and restarted with no problem. Except skype, I encountered an application error saying "The parameter is incorrect". I then tried uninstalling and installing, but as I was trying to install Skype it gave me a more specific error "Exception EOutOfResources in module Skype.exe at 0016DED2. The parameter is incorrect". Please help! I cannot install Skype at all.
    Attachments:
    application error.PNG ‏29 KB

    Try first to reset all Skype settings.
    Quit Skype or use Windows Task Manager to kill any Skype.exe process. Go to Windows Start and in the Search/Run box type %appdata% and then press Enter or click the OK button. The Windows File Explorer will pop up. There locate a folder named “Skype”. Rename this folder to something different, e.g. Skype_old.
    Next go to Windows Start and in the Search/Run box type %temp%\skype and then press Enter or click the OK button. Delete the DbTemp folder.
    Restart Skype.
    N.B. If needed, you will still be able to re-establish your call and chat history. All data is still saved in the Skype_old folder.

  • Remote App can't print- Error: The parameter is incorrect

    good morning everyone!
    I have a server 2012R2 with RDS and I published remoteapp in RD Web also my users can access but...
    When they log in their sessions from their computers want to print (for example in notepad) it gives the next message: "The parameter is incorrect".
    They connect through a VPN SSL using a FG.
    have anyone have this issue?
    thanks for your time.

    1. You can try reinstalling Printer drivers.
    2. Reconfigure printer on client machine
       remove printer -> add printer -> local
    3. Check the RDS server, Whether Printer redirection is enabled or not,
    host machine: Computer configuration -> windows components -> remote desktop services -> remote desktop session host -> printer redirection
    set "use remote desktop easy print printer driver first" to disabled
    Restart client machine
    Regards,
    Manjunath Sullad

  • CS 4 error "The parameter is incorrect!" CS4 crashes after when I try to create a link! Help!

    Trying to create a link to draft pages, websites but Contribute CS4 gives me error "parameter is incorrect", window for connection pops up. As I create link CS4 crashes. Any ideas?

    I have the exact same problem and there's no help from Adobe.  I tried re-installing the program. Problem persists.

  • Error while opening HFM Application "The Parameter is Incorrect"

    I have recently installed HFM 11.1.2.1 and created an applicatiion. When I try to open that application, system is giving an error message stating "The Parameter is Incorrect"
    Error Reference Number: {DB65561D-1ECC-4227-9361-BB662D71078A};User Name: admin@Native Directory
    Num: 0x80070057;Type: 0;DTime: 8/24/2011 5:08:09 PM;Svr: HYPERION;File: CHsxServerImpl.cpp;Line: 2025;Ver: 11.1.2.1.000.3082;
    Num: 0x80070057;Type: 0;DTime: 8/24/2011 5:08:15 PM;Svr: HYPERION;File: CHsxServerImpl.cpp;Line: 2361;Ver: 11.1.2.1.000.3082;
    Num: 0x80070057;Type: 0;DTime: 8/24/2011 5:08:15 PM;Svr: HYPERION;File: CHsxServerImpl.cpp;Line: 4092;Ver: 11.1.2.1.000.3082;
    Num: 0x80070057;Type: 1;DTime: 8/24/2011 5:08:15 PM;Svr: HYPERION;File: CHsxServer.cpp;Line: 1460;Ver: 11.1.2.1.000.3082;DStr: OpenApplication: DEMOAPP;
    Num: 0x80070057;Type: 0;DTime: 8/24/2011 5:08:15 PM;Svr: HYPERION;File: CHsxClient.cpp;Line: 2417;Ver: 11.1.2.1.000.3082;
    Did I do something wrong in the installation?

    After upgrading to version 9.3.3, 11.1.1.3.50 or 11.1.2.1 this error could occur with the below scenario...
    The cause was due to a program change in these upgrade version, with how logins work when accessing HFM via workspace. Any login to HFM that does not go through workspace, will inconsistently cause this error.
    To resolve this issue in version 11.1.2.1, download and apply Patch 12865428.
    Refer : Financial Management Error "The Parameter Is Incorrect" Appears Frequently in HsvEventlog.log After Upgrade to Version 9.3.3, 11.1.1.3.50 or 11.1.2.1 (Doc ID 1290122.1)

  • SQL The Parameter is incorrect

    Hi!
    I have installed the latest SQL MP (6.5.4.0) at a Swedish customer that before have a lot of running script errors that was caused by the SQL MP difference scripts. Now we only get one of this alarm left. The alarm is "Operations manager failed to start
    a process" from many of the SQL servers. We get two difference text descriptions:
    1) The text says that the "The parameter is incorrect" the workingflow is from
    Microsoft.SQLServer.2012.DBEngine.ServiceMonitor
    Microsoft.SQLServer.2008.Database.ServiceMonitor
    2) The text says that the "Processes is ending with 0" the workingflow is from
    Microsoft.SQLServer.2012.Database.Configuration.TomPagrDetection
    Microsoft.SQLServer.2012.DBEngineDiscoveryRule.Server
    //Mats A

    Hi Mats,
    Please first update the Monitor Agent:
    Update Rollup for Microsoft Monitoring Agent (KB 3032946)
    https://support.microsoft.com/en-us/kb/3032946
    Is there any event log error? Please also help capture a screenshot.
    Btw, did you see any performance issue on the mointor servers? If so, please increase the desktop heap on the mointor servers.
    1. Open regedit and take a backup.
    2. Go to HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager\SubSystems\Windows. Export it for backup purpose.
    3. The default data for this registry value will look something like the following (all on one line):
    %SystemRoot%\system32\csrss.exe ObjectDirectory=\Windows SharedSection=1024,20480,768 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=sxssrv,4 ProfileControl=Off MaxRequestThreads=16
    4. Modify the SharedSection to SharedSection=1024,20480,1536
    5. Save and reboot the machine.
    Thanks.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • SQL Developer Tool Throws error on "/"

    I am executing a script which is creating a view using sql developer. The script at the end has a "/" but before the / there is a blank line on top. and another view does not have a blank line but has a few spaces before "/" both the cases the sql developer throws compilation error.
    there are other parts of the code which does have lot of balnk lines above eg in procedure & trgger (not views) and they compile perfect.
    When i run the same script in sql plus or command line sql plus both have no issues. Its only the tool which is behaving like this.
    Is this a known issue?

    Example 1:
    CREATE OR REPLACE VIEW x AS
    SELECT abc from A where (abc=3) AND (xyz,6)
    plz note two blank likes above /
    Example 2:
    CREATE OR REPLACE VIEW x AS
    SELECT abc from A where (abc=3) AND (xyz,6)
    plz note few spaces before the /
    error says command not ended properly.
    this works in sql plus

  • Error loading custom extension assembly - "The parameter is incorrect"

    SSRS2012 fails to load my custom authentication assembly.  I see this error in the logs:
    extensionfactory!ReportServer_0-2!10d8!01/02/2015-23:34:49:: e ERROR: Exception caught instantiating Forms report server extension: System.IO.FileLoadException: Could not load file or assembly 'CT.Integrations.SSRS.Web.Impl, Version=1.0.0.0, Culture=neutral,
    PublicKeyToken=null' or one of its dependencies. The parameter is incorrect. (Exception from HRESULT: 0x80070057 (E_INVALIDARG))
    File name: 'CT.Integrations.SSRS.Web.Impl, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' ---> System.ArgumentException: Invalid directory on URL.
    Note, the DLL is purposedly not strong named as this an unfortunate ripple affect causing all referenced assemblies to also be signed.
    The rssrvpolicy.config does have the following entry to hopefully allow for this:
    <CodeGroup
    class="UnionCodeGroup"
    version="1"
    Name="SecurityExtensionCodeGroup"
    Description="Code group for the sample security extension"
    PermissionSetName="FullTrust">
    <IMembershipCondition 
    class="UrlMembershipCondition"
    version="1"
    Url="C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportServer\bin\*.dll"/>
    </CodeGroup>
    I have the DLL in both ReportManager\bin and ReportServer\bin folders.  What might cause this error?
    Fusion logs show the dll loads successfully so not sure why SSRS is not happy.

    Apparently, the Url on the IMembershipCondition doesn't like *.dll.  It has to be:
    Url="C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportServer\bin\*"/>
    Would have been nice if *.dll would have thrown a helpful error instead of making me step through the bowels
    of the .NET framework to figure out what was wrong.

  • SQL Backup fails with error 87 parameter incorrect

    I have a SQL Server 2008 R2 SP2 Standard instance working great, except upon attempts to use SQL backup to a UNC path hosted on Server 2012 R2, backup jobs fail with error 87 (the parameter is incorrect). When backing up to Server 2008 R2 and Server 2012
    shares, everything seems to work normally.
    Any experience with something like this? I've verified perms to the path and reachability in general, and it's clearly not an access denied error (which I've seen before).

    Thanks Alberto - I've verified that user (it's a domain user) has full access perms on that path, and tested outside of SSMS.
    Detailed error:
     System 
      - Provider 
       [ Name]  MSSQLSERVER 
      - EventID 18210 
       [ Qualifiers]  49152 
       Level 2 
       Task 6 
       Keywords 0x80000000000000 
      - TimeCreated 
       [ SystemTime]  2014-05-13T15:57:52.000000000Z 
       EventRecordID 2083317 
       Channel Application 
       Computer GriffinSQL.[local domain here]
      - Security 
       [ UserID]  [guid here]
    - EventData 
       BackupIoRequest::ReportIoError 
       write 
       \\storage\backups\sql\testggg.bak 
       87(The parameter is incorrect.) 
       22470000100000000B0000004700520049004600460049004E00530051004C00000000000000 
    Binary data:
    In Words
    0000: 00004722 00000010 0000000B 00520047 
    0008: 00460049 00490046 0053004E 004C0051 
    0010: 00000000 0000   
    In Bytes
    0000: 22 47 00 00 10 00 00 00   "G......
    0008: 0B 00 00 00 47 00 52 00   ....G.R.
    0010: 49 00 46 00 46 00 49 00   I.F.F.I.
    0018: 4E 00 53 00 51 00 4C 00   N.S.Q.L.
    0020: 00 00 00 00 00 00         ......

  • An unexpected error occurred while the job was running. (ID 104 Details: The parameter is incorrect (0x80070057))

    We are using DPM Version: 4.1.3465.0 with System Center 2012 Service Pack 1 to back up VMs in our Hyper V Cluster. We have a total of 37 VMs with a combination of 2008r2 servers and 2012 servers. One of our 2012 servers will not backup, and we consistently
    get the message "An unexpected error occurred while the job was running. (ID 104 Details: The parameter is incorrect (0x80070057))". I have seen this error message when I Googled it, but cannot get past it. I have deleted the Protection Group and
    data and tried to re-create, but get the same errors. I also thought the the server might be mis-reporting the data size, but I expanded that to cover the replication data. I have also tried to perform consistancy checks multiple times with no luck. I have
    not seen a difinitive answer from my Google searches, so was hopeful someone has seen this also, and have had success in resolving. Currently this server has no backup recovery points, so I am worried if it does crash. I think I have the rollups installed
    as well.

    Hi Kelly,
    does the issue still persists?

  • Error in backup of C:\ during read: Error [0x80070057] The parameter is incorrect.

    Hi,
    Im trying to backup a system state in windows server 2008 R2 HAPP02 using DPM 2010 and im recieving the following error.
    Source: Backup, Event ID 5
    The backup operation that started at '‎2011‎-‎09‎-‎19T06:08:29.143748400Z' has failed with following error code '2155347997'. Please review the event details for a solution, and then rerun the backup operation once the issue is resolved.
    I tried to run WBADMIN START SYSTEMSTATEBACKUP -backupTarget:c: and then i recieve the following error
    Creating a shadow copy of the volumes specified for backup...
    Creating a shadow copy of the volumes specified for backup...
    Please wait while system state files to back up are identified.
    This might take several minutes...
    Found (1113) files.
    Found (6575) files.
    Found (10393) files.
    Found (13356) files.
    Found (16175) files.
    Found (27117) files.
    Found (30612) files.
    Found (34342) files.
    Found (36966) files.
    Found (40656) files.
    Found (41935) files.
    Found (45428) files.
    Found (48639) files.
    Found (51805) files.
    Found (57721) files.
    Found (64792) files.
    Found (72735) files.
    Found (77340) files.
    Found (81183) files.
    Found (81254) files.
    Found (81254) files.
    Found (81254) files.
    The search for system state files is complete.
    Starting to back up files...
    The backup of files reported by 'Task Scheduler Writer' is complete.
    The backup of files reported by 'VSS Metadata Store Writer' is complete.
    The backup of files reported by 'Performance Counters Writer' is complete
    The backup of files reported by 'IIS Config Writer' is complete.
    Overall progress: 0%.
    Currently backing up files reported by 'System Writer'...
    Overall progress: 1%.
    Currently backing up files reported by 'System Writer'...
    Overall progress: 2%.
    Currently backing up files reported by 'System Writer'...
    Overall progress: 4%.
    Currently backing up files reported by 'System Writer'...
    Overall progress: 5%.
    Currently backing up files reported by 'System Writer'...
    Overall progress: 7%.
    Currently backing up files reported by 'System Writer'...
    Overall progress: 8%.
    Currently backing up files reported by 'System Writer'...
    Overall progress: 9%.
    Currently backing up files reported by 'System Writer'...
    Overall progress: 11%.
    Currently backing up files reported by 'System Writer'...
    Overall progress: 12%.
    Currently backing up files reported by 'System Writer'...
    Overall progress: 13%.
    Currently backing up files reported by 'System Writer'...
    Overall progress: 15%.
    Currently backing up files reported by 'System Writer'...
    Summary of the backup operation:
    The backup of the system state failed [2011-09-19 09:42].
    Log of files successfully backed up:
    C:\Windows\Logs\WindowsServerBackup\Backup-19-09-2011_09-36-37.log
    Log of files for which backup failed:
    C:\Windows\Logs\WindowsServerBackup\Backup_Error-19-09-2011_09-36-37.log
    The operation ended before completion.
    The parameter is incorrect.
    When i check the backup_error log file i found the following error
    Error in backup of C:\ during read: Error [0x80070057] The parameter is incorrect.
    Any ideas about the error?
    Thanks in advnace,
    Laith.

    sorry for the delay.
    This error condition has been found with Anti-virus software. 
    Use Msconfig to disable all antivirus services and Startup items [or uninstall temporarily] and test.
    Reviewing logs.
    [0]0ED8.124C::09/22/2011-14:05:02.204 [usa]HardWrite: NtWriteFile failure: 0xc000009d, 0xbb9ee000, 0x10000
    [0]ed8.124c 09/22/2011-14:05:02.208 [service CBlbBackupAsync::SetFormatStatus
    backup.cpp@4817] ERROR:Format was unable to complete successfully, final result: 57
    [0]ed8.124c 09/22/2011-14:05:02.208 [service CBlbBackupAsync::FormatMedia
    backup.cpp@4740] ERROR:Format on
    \\?\Volume{d841345f-e505-11e0-bb05-00155d646a25} failed.
    [0]ed8.124c 09/22/2011-14:05:02.208 [service CBlbBackupAsync::FormatMedia
    backup.cpp@4746] INFO:Format done
    [0]ed8.124c 09/22/2011-14:05:02.208 [service CBlbBackupAsync::MountVHD
    backup.cpp@15683] ERROR:FormatMedia
    \\?\Volume{d841345f-e505-11e0-bb05-00155d646a25} failed, hr: 0x80780046
    [0]ed8.124c 09/22/2011-14:05:02.208 [blbengutils
    BlbSecurityUtils.cpp@1203] ENTER: CBlbImpersonationHelper::Revert
    [0]ed8.124c 09/22/2011-14:05:02.208 [blbengutils CBlbImpersonationHelper::Revert
    BlbSecurityUtils.cpp@1215] INFO:No revert needed.
    [0]ed8.124c 09/22/2011-14:05:02.208 [blbengutils
    BlbSecurityUtils.cpp@1220] EXIT: CBlbImpersonationHelper::Revert
    [0]ed8.124c 09/22/2011-14:05:02.208 [service
    backup.cpp@15702] EXIT: CBlbBackupAsync::MountVHD
    [0]ed8.124c 09/22/2011-14:05:02.208 [service CBlbBackupAsync::CreateVHD
    backup.cpp@9127] ERROR:MountVHD failed for
    \\?\Volume{9f1ea684-a26b-11de-bbc7-806e6f6e6963}\WindowsImageBackup\HEIAPP02\Backup 2011-09-22 135901\9f1ea685-a26b-11de-bbc7-806e6f6e6963.vhd failed hr=0x80780046
    [0]ed8.124c 09/22/2011-14:05:02.208 [blbengutils
    BlbSecurityUtils.cpp@1203] ENTER: CBlbImpersonationHelper::Revert
    [0]ed8.124c 09/22/2011-14:05:02.208 [blbengutils CBlbImpersonationHelper::Revert
    BlbSecurityUtils.cpp@1215] INFO:No revert needed.
    [0]ed8.124c 09/22/2011-14:05:02.208 [blbengutils
    BlbSecurityUtils.cpp@1220] EXIT: CBlbImpersonationHelper::Revert
    [0]ed8.124c 09/22/2011-14:05:02.208 [service
    backup.cpp@9138] EXIT: CBlbBackupAsync::CreateVHD
    [0]ed8.124c 09/22/2011-14:05:02.208 [blbengutils
    BlbSecurityUtils.cpp@1203] ENTER: CBlbImpersonationHelper::Revert
    [0]ed8.124c 09/22/2011-14:05:02.208 [blbengutils CBlbImpersonationHelper::Revert
    BlbSecurityUtils.cpp@1215] INFO:No revert needed.
    [0]ed8.124c 09/22/2011-14:05:02.208 [blbengutils
    BlbSecurityUtils.cpp@1220] EXIT: CBlbImpersonationHelper::Revert
    [0]ed8.124c 09/22/2011-14:05:02.208 [service
    backup.cpp@9592] EXIT: CBlbBackupAsync::PrepareTargetVolumesForSSB
    [0]ed8.124c 09/22/2011-14:05:02.208 [service CBlbBackupAsync::BackupToMediaForSSB
    backup.cpp@10379] ERROR:SSB call failed with hr=0x807800c5, detailed hr=0x80780046
    [0]ed8.124c 09/22/2011-14:05:02.208 [blbsrv
    restoresystemstate.cpp@131] ENTER: CBlbsrvSystemStateRestore::StopFileLogging
    [0]ed8.124c 09/22/2011-14:05:02.208 [blbsrv
    restoresystemstate.cpp@138] EXIT: CBlbsrvSystemStateRestore::StopFileLogging
    [0]ed8.124c 09/22/2011-14:05:02.208 [service
    backup.cpp@10449] EXIT: CBlbBackupAsync::BackupToMediaForSSB
    [0]ed8.124c 09/22/2011-14:05:02.208 [service CBlbBackupAsync::PerformSystemStateBackup
    backup.cpp@17287] WARNING:SSB operation unsuccessful with hr=0x80780046
    [0]ed8.124c 09/22/2011-14:05:02.208 [service CBlbSystemStateBackupAsync::SetState
    systemstatebackup.cpp@1061] INFO:ENGINE STATE:BACKUP SYSTEM STATE:5
    [0]ed8.124c 09/22/2011-14:05:02.208 [service CBlbBackupAsync::PerformSystemStateBackup
    backup.cpp@17300] INFO:Backup has system state = 0
    [0]ed8.124c 09/22/2011-14:05:02.208 [service
    backup.cpp@17306] EXIT: CBlbBackupAsync::PerformSystemStateBackup
    [0]ed8.124c 09/22/2011-14:05:02.208 [service
    backup.cpp@17331] ENTER: CBlbBackupAsync::UpdateBackupInfoIfRequired
    [0]ed8.124c 09/22/2011-14:05:02.208 [service
    backup.cpp@17379] EXIT: CBlbBackupAsync::UpdateBackupInfoIfRequired
    [0]ed8.124c 09/22/2011-14:05:02.208 [componenthelper
    componentbackuphelper.cpp@1456] ENTER: CBlbComponentBackupHelper::BackupComplete
    [0]ed8.124c 09/22/2011-14:05:02.208 [componenthelper CBlbComponentBackupHelper::BackupComplete
    componentbackuphelper.cpp@1460] INFO:bIsBackupFailed: 0
    [0]ed8.124c 09/22/2011-14:05:02.208 [componenthelper
    componentbackuphelper.cpp@1261] ENTER: CBlbComponentBackupHelper::BuildSppBackupCompleteStateArray
    [0]ed8.124c 09/22/2011-14:05:02.208 [componenthelper
    componentbackuphelper.cpp@1323] EXIT: CBlbComponentBackupHelper::BuildSppBackupCompleteStateArray
    [0]0F3C.0EE0::09/22/2011-14:05:02.427 [asrcmn]ENTER: CVssAsrAPIBackup::GetVolumeComponents
    [0]0F3C.0EE0::09/22/2011-14:05:02.427 [asrcmn]ENTER: AsrGetSystemVolumeDevPath
    [0]0F3C.0EE0::09/22/2011-14:05:02.427 [asrcmn]EXIT: AsrGetSystemVolumeDevPath
    [0]0F3C.0EE0::09/22/2011-14:05:02.427 [asrcmn]ENTER: BootGetWinREVolGuid
    [0]0F3C.0EE0::09/22/2011-14:05:02.427 [asrcmn]ENTER: _GetElementData
    [0]0F3C.0EE0::09/22/2011-14:05:02.427 [asrcmn][WPP_ASR_ERROR] NT STATUS ERROR 0xc0000225(STATUS_NOT_FOUND) [status]: (bootlib.cpp:497)
    [0]0F3C.0EE0::09/22/2011-14:05:02.427 [asrcmn]EXIT: _GetElementData
    [0]0F3C.0EE0::09/22/2011-14:05:02.427 [asrcmn]EXIT: BootGetWinREVolGuid
    [0]0F3C.0EE0::09/22/2011-14:05:02.428 [asrcmn]ENTER: AsrVhd::GetDeviceDependencyInformation
    [0]0F3C.0EE0::09/22/2011-14:05:02.428 [asrsys][WPP_ASR_INFO]Disk
    \\?\Volume{9f1ea685-a26b-11de-bbc7-806e6f6e6963} is not a virtual device. Status=3225026581 (asrvhd.cpp:436)
    [0]0F3C.0EE0::09/22/2011-14:05:02.428 [asrcmn]EXIT: AsrVhd::GetDeviceDependencyInformation
    [0]0F3C.0EE0::09/22/2011-14:05:02.428 [asrcmn]ENTER: AsrVhd::GetDeviceDependencyInformation
    [0]0F3C.0EE0::09/22/2011-14:05:02.428 [asrsys][WPP_ASR_INFO]Disk
    \\?\Volume{9f1ea684-a26b-11de-bbc7-806e6f6e6963} is not a virtual device. Status=3225026581 (asrvhd.cpp:436)
    [0]0F3C.0EE0::09/22/2011-14:05:02.428 [asrcmn]EXIT: AsrVhd::GetDeviceDependencyInformation
    [0]0F3C.0EE0::09/22/2011-14:05:02.428 [asrcmn]ENTER: AsrVhd::GetDeviceDependencyInformation
    [0]0F3C.0EE0::09/22/2011-14:05:02.428 [asrsys][WPP_ASR_INFO]Disk
    \\?\Volume{d513444f-a276-11de-b33e-00155d663512} is not a virtual device. Status=3225026581 (asrvhd.cpp:436)
    [0]0F3C.0EE0::09/22/2011-14:05:02.428 [asrcmn]EXIT: AsrVhd::GetDeviceDependencyInformation
    [0]0F3C.0EE0::09/22/2011-14:05:02.428 [asrwriter][WPP_ASR_INFO]cComponents = 3 , cMaxComponents = 5 (asrwriterbackup.cpp:602)
    [0]0F3C.0EE0::09/22/2011-14:05:02.428 [asrcmn]EXIT: CVssAsrAPIBackup::GetVolumeComponents
    [0]0F3C.0EE0::09/22/2011-14:05:02.429 [asrcmn]ENTER: CVssAsrAPIBackup::GetDiskComponents
    [0]0F3C.0EE0::09/22/2011-14:05:02.429 [asrcmn]ENTER: DiskListInitialize
    [0]0F3C.0EE0::09/22/2011-14:05:02.478 [asrcmn]ENTER: GetDriveTypeByHandle
    [0]0F3C.0EE0::09/22/2011-14:05:02.478 [asrcmn]EXIT: GetDriveTypeByHandle
    [0]0F3C.0EE0::09/22/2011-14:05:02.478 [asrcmn]ENTER: AsrVhd::GetDeviceDependencyInformation
    [0]0F3C.0EE0::09/22/2011-14:05:02.478 [asrsys][WPP_ASR_INFO]Disk
    \\?\ide#diskvirtual_hd______________________________1.1.0___#5&35dc7040&0&0.0.0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b} is not a virtual device. Status=3225026581 (asrvhd.cpp:436)
    [0]0F3C.0EE0::09/22/2011-14:05:02.478 [asrcmn]EXIT: AsrVhd::GetDeviceDependencyInformation
    [0]0F3C.0EE0::09/22/2011-14:05:02.478 [asrcmn]ENTER: GetDriveTypeByHandle
    [0]0F3C.0EE0::09/22/2011-14:05:02.478 [asrcmn]EXIT: GetDriveTypeByHandle
    [0]0F3C.0EE0::09/22/2011-14:05:02.478 [asrcmn]ENTER: AsrVhd::GetDeviceDependencyInformation
    [0]0F3C.0EE0::09/22/2011-14:05:02.478 [asrsys][WPP_ASR_INFO]Disk
    \\?\ide#diskvirtual_hd______________________________1.1.0___#5&35dc7040&0&0.1.0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b} is not a virtual device. Status=3225026581 (asrvhd.cpp:436)
    [0]0F3C.0EE0::09/22/2011-14:05:02.478 [asrcmn]EXIT: AsrVhd::GetDeviceDependencyInformation
    [0]0F3C.0EE0::09/22/2011-14:05:02.478 [asrcmn]EXIT: DiskListInitialize
    [0]0F3C.0EE0::09/22/2011-14:05:02.478 [asrcmn]ENTER: DiskListMarkClusteredDisks
    [0]0F3C.0EE0::09/22/2011-14:05:02.478 [asrcmn]EXIT: DiskListMarkClusteredDisks
    [0]0F3C.0EE0::09/22/2011-14:05:02.478 [asrcmn]ENTER: DiskListPopulateLayoutInfo
    [0]0F3C.0EE0::09/22/2011-14:05:02.478 [asrsys][WPP_ASR_INFO]Getting disk info:
    \\?\ide#diskvirtual_hd______________________________1.1.0___#5&35dc7040&0&0.1.0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b} (asrbkup.cpp:1415)
    [0]0F3C.0EE0::09/22/2011-14:05:02.478 [asrcmn]ENTER: AsrpGetDiskLayout
    [0]0F3C.0EE0::09/22/2011-14:05:02.478 [asrcmn]ENTER: DiskForceDriversSync
    [0]0F3C.0EE0::09/22/2011-14:05:02.709 [asrcmn]EXIT: DiskForceDriversSync
    [0]0F3C.0EE0::09/22/2011-14:05:02.709 [asrcmn]ENTER: AsrpGetMorePartitionInfo
    [0]0F3C.0EE0::09/22/2011-14:05:02.709 [asrcmn]ENTER: GetRdisk0DeviceNumber
    [0]0F3C.0EE0::09/22/2011-14:05:02.710 [asrcmn]EXIT: GetRdisk0DeviceNumber
    [0]0F3C.0EE0::09/22/2011-14:05:02.710 [asrcmn]ENTER: AsrGetSystemVolumeGlobalRootPath
    [0]0F3C.0EE0::09/22/2011-14:05:02.710 [asrcmn]ENTER: AsrGetSystemVolumeDevPath
    [0]0F3C.0EE0::09/22/2011-14:05:02.710 [asrcmn]EXIT: AsrGetSystemVolumeDevPath
    [0]0F3C.0EE0::09/22/2011-14:05:02.710 [asrcmn]EXIT: AsrGetSystemVolumeGlobalRootPath
    [0]0F3C.0EE0::09/22/2011-14:05:02.711 [asrcmn]ENTER: DiskBuildDevicePartitionPath
    [0]0F3C.0EE0::09/22/2011-14:05:02.711 [asrcmn]EXIT: DiskBuildDevicePartitionPath
    [0]0F3C.0EE0::09/22/2011-14:05:02.711 [asrcmn]ENTER: MtMgrGetSymbolicNames
    [0]0F3C.0EE0::09/22/2011-14:05:02.711 [asrcmn]ENTER: MtMgrGetMountPoints
    [0]0F3C.0EE0::09/22/2011-14:05:02.711 [asrcmn]ENTER: MtMgrOpen
    [0]0F3C.0EE0::09/22/2011-14:05:02.711 [asrcmn]EXIT: MtMgrOpen
    [0]0F3C.0EE0::09/22/2011-14:05:02.711 [asrcmn]EXIT: MtMgrGetMountPoints
    [0]0F3C.0EE0::09/22/2011-14:05:02.711 [asrcmn]EXIT: MtMgrGetSymbolicNames
    [0]0F3C.0EE0::09/22/2011-14:05:02.711 [asrcmn]EXIT: AsrpGetMorePartitionInfo
    [0]0F3C.0EE0::09/22/2011-14:05:02.711 [asrcmn]EXIT: AsrpGetDiskLayout
    [0]0F3C.0EE0::09/22/2011-14:05:02.711 [asrsys][WPP_ASR_INFO]Disk device number=1 (asrbkup.cpp:1495)
    [0]0F3C.0EE0::09/22/2011-14:05:02.711 [asrsys][WPP_ASR_INFO]Getting disk info:
    \\?\ide#diskvirtual_hd______________________________1.1.0___#5&35dc7040&0&0.0.0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b} (asrbkup.cpp:1415)
    [0]0F3C.0EE0::09/22/2011-14:05:02.711 [asrcmn]ENTER: AsrpGetDiskLayout
    [0]0F3C.0EE0::09/22/2011-14:05:02.711 [asrcmn]ENTER: DiskForceDriversSync
    [0]0F3C.0EE0::09/22/2011-14:05:02.756 [asrcmn]EXIT: DiskForceDriversSync
    [0]0F3C.0EE0::09/22/2011-14:05:02.756 [asrcmn]ENTER: AsrpGetMorePartitionInfo
    [0]0F3C.0EE0::09/22/2011-14:05:02.756 [asrcmn]ENTER: GetRdisk0DeviceNumber
    [0]0F3C.0EE0::09/22/2011-14:05:02.756 [asrcmn]EXIT: GetRdisk0DeviceNumber
    [0]0F3C.0EE0::09/22/2011-14:05:02.756 [asrcmn]ENTER: AsrGetSystemVolumeGlobalRootPath
    [0]0F3C.0EE0::09/22/2011-14:05:02.756 [asrcmn]ENTER: AsrGetSystemVolumeDevPath
    [0]0F3C.0EE0::09/22/2011-14:05:02.757 [asrcmn]EXIT: AsrGetSystemVolumeDevPath
    [0]0F3C.0EE0::09/22/2011-14:05:02.757 [asrcmn]EXIT: AsrGetSystemVolumeGlobalRootPath
    [0]0F3C.0EE0::09/22/2011-14:05:02.757 [asrcmn]ENTER: DiskBuildDevicePartitionPath
    [0]0F3C.0EE0::09/22/2011-14:05:02.757 [asrcmn]EXIT: DiskBuildDevicePartitionPath
    [0]0F3C.0EE0::09/22/2011-14:05:02.757 [asrcmn]ENTER: MtMgrGetSymbolicNames
    [0]0F3C.0EE0::09/22/2011-14:05:02.757 [asrcmn]ENTER: MtMgrGetMountPoints
    [0]0F3C.0EE0::09/22/2011-14:05:02.757 [asrcmn]ENTER: MtMgrOpen
    [0]0F3C.0EE0::09/22/2011-14:05:02.757 [asrcmn]EXIT: MtMgrOpen
    [0]0F3C.0EE0::09/22/2011-14:05:02.757 [asrcmn]EXIT: MtMgrGetMountPoints
    [0]0F3C.0EE0::09/22/2011-14:05:02.757 [asrcmn]EXIT: MtMgrGetSymbolicNames
    [0]0F3C.0EE0::09/22/2011-14:05:02.757 [asrcmn]ENTER: DiskBuildDevicePartitionPath
    [0]0F3C.0EE0::09/22/2011-14:05:02.757 [asrcmn]EXIT: DiskBuildDevicePartitionPath
    [0]0F3C.0EE0::09/22/2011-14:05:02.757 [asrcmn]ENTER: MtMgrGetSymbolicNames
    [0]0F3C.0EE0::09/22/2011-14:05:02.757 [asrcmn]ENTER: MtMgrGetMountPoints
    [0]0F3C.0EE0::09/22/2011-14:05:02.757 [asrcmn]ENTER: MtMgrOpen
    [0]0F3C.0EE0::09/22/2011-14:05:02.757 [asrcmn]EXIT: MtMgrOpen
    [0]0F3C.0EE0::09/22/2011-14:05:02.758 [asrcmn]EXIT: MtMgrGetMountPoints
    [0]0F3C.0EE0::09/22/2011-14:05:02.758 [asrcmn]EXIT: MtMgrGetSymbolicNames
    [0]0F3C.0EE0::09/22/2011-14:05:02.758 [asrcmn]EXIT: AsrpGetMorePartitionInfo
    [0]0F3C.0EE0::09/22/2011-14:05:02.758 [asrcmn]EXIT: AsrpGetDiskLayout
    [0]0F3C.0EE0::09/22/2011-14:05:02.758 [asrsys][WPP_ASR_INFO]Disk device number=0 (asrbkup.cpp:1495)
    [0]0F3C.0EE0::09/22/2011-14:05:02.758 [asrcmn]EXIT: DiskListPopulateLayoutInfo
    [0]0F3C.0EE0::09/22/2011-14:05:02.758 [asrcmn]ENTER: DiskListMarkOfflineDisks
    [0]0F3C.0EE0::09/22/2011-14:05:02.758 [asrsys][WPP_ASR_INFO]Getting Online/Offline disk:
    \\?\ide#diskvirtual_hd______________________________1.1.0___#5&35dc7040&0&0.1.0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b} (asrsys.cpp:233)
    [0]0F3C.0EE0::09/22/2011-14:05:02.758 [asrsys][WPP_ASR_INFO]Getting Online/Offline disk:
    \\?\ide#diskvirtual_hd______________________________1.1.0___#5&35dc7040&0&0.0.0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b} (asrsys.cpp:233)
    [0]0F3C.0EE0::09/22/2011-14:05:02.758 [asrcmn]EXIT: DiskListMarkOfflineDisks
    [0]0F3C.0EE0::09/22/2011-14:05:02.758 [asrcmn]EXIT: CVssAsrAPIBackup::GetDiskComponents
    [0]0F3C.0EE0::09/22/2011-14:05:02.758 [asrcmn]ENTER: CVssAsrAPIBackup::GetBcdComponent
    [0]0F3C.0EE0::09/22/2011-14:05:02.758 [asrcmn]ENTER: AsrGetSystemVolumeDevPath
    [0]0F3C.0EE0::09/22/2011-14:05:02.759 [asrcmn]EXIT: AsrGetSystemVolumeDevPath
    [0]0F3C.0EE0::09/22/2011-14:05:02.759 [asrcmn]ENTER: GetVolumeNameFromDeviceName
    [0]0F3C.0EE0::09/22/2011-14:05:02.759 [asrcmn]EXIT: GetVolumeNameFromDeviceName
    [0]0F3C.0EE0::09/22/2011-14:05:02.759 [asrcmn]EXIT: CVssAsrAPIBackup::GetBcdComponent
    [0]ed8.f68 09/22/2011-14:05:03.228 [service
    backup.cpp@3149] ENTER: CBlbBackupAsync::QueryStatus
    [0]ed8.f68 09/22/2011-14:05:03.228 [service
    backup.cpp@3209] ENTER: CBlbBackupAsync::QueryVolumeBackupStatus
    [0]ed8.f68 09/22/2011-14:05:03.228 [componenthelper
    componentbackuphelper.cpp@1850] ENTER: CBlbComponentBackupHelper::FillComponentConsistencyStatus
    [0]ed8.f68 09/22/2011-14:05:03.228 [componenthelper
    componentbackuphelper.cpp@1944] EXIT: CBlbComponentBackupHelper::FillComponentConsistencyStatus
    [0]ed8.f68 09/22/2011-14:05:03.228 [service
    backup.cpp@3342] EXIT: CBlbBackupAsync::QueryVolumeBackupStatus
    [0]ed8.f68 09/22/2011-14:05:03.228 [service
    backup.cpp@3359] ENTER: CBlbBackupAsync::QuerySystemStateBackupStatus
    [0]ed8.f68 09/22/2011-14:05:03.228 [service
    systemstatebackup.cpp@740] ENTER: CBlbSystemStateBackupAsync::QueryStatus
    [0]ed8.f68 09/22/2011-14:05:03.228 [service
    systemstatebackup.cpp@874] EXIT: CBlbSystemStateBackupAsync::QueryStatus
    [0]ed8.f68 09/22/2011-14:05:03.228 [service
    backup.cpp@3399] EXIT: CBlbBackupAsync::QuerySystemStateBackupStatus
    [0]ed8.f68 09/22/2011-14:05:03.228 [service
    backup.cpp@3192] EXIT: CBlbBackupAsync::QueryStatus
    [0]ed8.124c 09/22/2011-14:05:03.742 [componenthelper
    componentbackuphelper.cpp@1518] EXIT: CBlbComponentBackupHelper::BackupComplete
    [0]ed8.124c 09/22/2011-14:05:03.742 [service
    backup.cpp@6290] ENTER: CBlbBackupAsync::WriteBackupComponents
    [0]ed8.124c 09/22/2011-14:05:03.742 [blbengutils
    BlbSecurityUtils.cpp@1146] ENTER: CBlbImpersonationHelper::ImpersonateCaller
    [0]ed8.124c 09/22/2011-14:05:03.742 [blbengutils CBlbImpersonationHelper::ImpersonateCaller
    BlbSecurityUtils.cpp@1178] INFO:No impersonation done.
    [0]ed8.124c 09/22/2011-14:05:03.742 [blbengutils
    BlbSecurityUtils.cpp@1183] EXIT: CBlbImpersonationHelper::ImpersonateCaller
    [0]ed8.124c 09/22/2011-14:05:03.743 [util
    systemutils.cpp@709] ENTER: BlbutilRegReadDWORD
    [0]ed8.124c 09/22/2011-14:05:03.743 [util BlbutilRegReadDWORD
    systemutils.cpp@731] WARNING:RegQueryValueEx NoTargetSnapshot unsuccessful, hr:0x80070002
    [0]ed8.124c 09/22/2011-14:05:03.743 [util
    systemutils.cpp@749] EXIT: BlbutilRegReadDWORD
    [0]ed8.124c 09/22/2011-14:05:03.755 [blbengutils
    BlbSecurityUtils.cpp@1203] ENTER: CBlbImpersonationHelper::Revert
    [0]ed8.124c 09/22/2011-14:05:03.755 [blbengutils CBlbImpersonationHelper::Revert
    BlbSecurityUtils.cpp@1215] INFO:No revert needed.
    [0]ed8.124c 09/22/2011-14:05:03.755 [blbengutils
    BlbSecurityUtils.cpp@1220] EXIT: CBlbImpersonationHelper::Revert
    [0]ed8.124c 09/22/2011-14:05:03.755 [service
    backup.cpp@6444] EXIT: CBlbBackupAsync::WriteBackupComponents
    [0]ed8.124c 09/22/2011-14:05:03.755 [service
    backup.cpp@8946] ENTER: CBlbBackupAsync::UpdateLocalCatalogAfterbackup
    [0]ed8.124c 09/22/2011-14:05:03.755 [service
    backup.cpp@7790] ENTER: CBlbBackupAsync::GetComponentsList
    [0]ed8.124c 09/22/2011-14:05:03.755 [componenthelper CBlbComponentBackupContext::GetComponentVolumeInfo
    componentbackuphelper.cpp@249] INFO:Component 'TasksStore' has data on volume '{9f1ea685-a26b-11de-bbc7-806e6f6e6963}'
    [0]ed8.124c 09/22/2011-14:05:03.755 [service CBlbBackupAsync::GetComponentsList
    backup.cpp@7856] INFO:Adding component (0) <NULL>\TasksStore.
    [0]ed8.124c 09/22/2011-14:05:03.755 [componenthelper CBlbComponentBackupContext::GetComponentVolumeInfo
    componentbackuphelper.cpp@249] INFO:Component 'WriterMetadataStore' has data on volume '{9f1ea685-a26b-11de-bbc7-806e6f6e6963}'
    [0]ed8.124c 09/22/2011-14:05:03.755 [service CBlbBackupAsync::GetComponentsList
    backup.cpp@7856] INFO:Adding component (1) <NULL>\WriterMetadataStore.
    [0]ed8.124c 09/22/2011-14:05:03.755 [componenthelper CBlbComponentBackupContext::GetComponentVolumeInfo
    componentbackuphelper.cpp@249] INFO:Component 'PerformanceCounters' has data on volume '{9f1ea685-a26b-11de-bbc7-806e6f6e6963}'
    [0]ed8.124c 09/22/2011-14:05:03.755 [service CBlbBackupAsync::GetComponentsList
    backup.cpp@7856] INFO:Adding component (2) <NULL>\PerformanceCounters.
    [0]ed8.124c 09/22/2011-14:05:03.755 [componenthelper CBlbComponentBackupContext::GetComponentVolumeInfo
    componentbackuphelper.cpp@249] INFO:Component 'WMI' has data on volume '{9f1ea685-a26b-11de-bbc7-806e6f6e6963}'
    [0]ed8.124c 09/22/2011-14:05:03.755 [service CBlbBackupAsync::GetComponentsList
    backup.cpp@7856] INFO:Adding component (3) <NULL>\WMI.
    [0]ed8.124c 09/22/2011-14:05:03.755 [componenthelper CBlbComponentBackupContext::GetComponentVolumeInfo
    componentbackuphelper.cpp@249] INFO:Component 'IISMETABASE' has data on volume '{9f1ea685-a26b-11de-bbc7-806e6f6e6963}'
    [0]ed8.124c 09/22/2011-14:05:03.755 [service CBlbBackupAsync::GetComponentsList
    backup.cpp@7856] INFO:Adding component (4) <NULL>\IISMETABASE.
    [0]ed8.124c 09/22/2011-14:05:03.755 [componenthelper CBlbComponentBackupContext::GetComponentVolumeInfo
    componentbackuphelper.cpp@249] INFO:Component 'COM+ REGDB' has data on volume '{9f1ea685-a26b-11de-bbc7-806e6f6e6963}'
    [0]ed8.124c 09/22/2011-14:05:03.755 [service CBlbBackupAsync::GetComponentsList
    backup.cpp@7856] INFO:Adding component (5) <NULL>\COM+ REGDB.
    [0]ed8.124c 09/22/2011-14:05:03.755 [componenthelper CBlbComponentBackupContext::GetComponentVolumeInfo
    componentbackuphelper.cpp@249] INFO:Component 'IISCONFIG' has data on volume '{9f1ea685-a26b-11de-bbc7-806e6f6e6963}'
    [0]ed8.124c 09/22/2011-14:05:03.755 [service CBlbBackupAsync::GetComponentsList
    backup.cpp@7856] INFO:Adding component (6) <NULL>\IISCONFIG.
    [0]ed8.124c 09/22/2011-14:05:03.768 [componenthelper CBlbComponentBackupContext::GetComponentVolumeInfo
    componentbackuphelper.cpp@249] INFO:Component 'System Files' has data on volume '{9f1ea685-a26b-11de-bbc7-806e6f6e6963}'
    [0]ed8.124c 09/22/2011-14:05:03.768 [service CBlbBackupAsync::GetComponentsList
    backup.cpp@7856] INFO:Adding component (7) <NULL>\System Files.
    [0]ed8.124c 09/22/2011-14:05:03.768 [componenthelper CBlbComponentBackupContext::GetComponentVolumeInfo
    componentbackuphelper.cpp@249] INFO:Component 'Registry' has data on volume '{9f1ea685-a26b-11de-bbc7-806e6f6e6963}'
    [0]ed8.124c 09/22/2011-14:05:03.768 [service CBlbBackupAsync::GetComponentsList
    backup.cpp@7856] INFO:Adding component (8) <NULL>\Registry.
    [0]ed8.124c 09/22/2011-14:05:03.768 [service
    backup.cpp@7917] EXIT: CBlbBackupAsync::GetComponentsList
    [0]ed8.124c 09/22/2011-14:05:03.768 [service
    backup.cpp@7943] ENTER: CBlbBackupAsync::AddComponentsToLocalCatalog
    [0]ed8.124c 09/22/2011-14:05:03.768 [service
    backup.cpp@7961] EXIT: CBlbBackupAsync::AddComponentsToLocalCatalog
    [0]ed8.124c 09/22/2011-14:05:03.768 [service
    backup.cpp@11835] ENTER: CBlbBackupAsync::SetVolumesInLocalCatalog
    [0]ed8.124c 09/22/2011-14:05:03.768 [service
    backup.cpp@1557] ENTER: CBlbVolumeBackupContext::GetOriginalAccessPath
    [0]ed8.124c 09/22/2011-14:05:03.768 [service
    backup.cpp@1585] EXIT: CBlbVolumeBackupContext::GetOriginalAccessPath
    [0]ed8.124c 09/22/2011-14:05:03.768 [service CBlbBackupAsync::SetVolumesInLocalCatalog
    backup.cpp@11894] INFO:Not adding volume C: to catalog since it failed
    [0]ed8.124c 09/22/2011-14:05:03.768 [service CBlbBackupAsync::SetVolumesInLocalCatalog
    backup.cpp@11943] ERROR:Backup of all the source volumes failed.
    [0]ed8.124c 09/22/2011-14:05:03.768 [service
    backup.cpp@11970] EXIT: CBlbBackupAsync::SetVolumesInLocalCatalog
    [0]ed8.124c 09/22/2011-14:05:03.768 [service CBlbBackupAsync::UpdateLocalCatalogAfterbackup
    backup.cpp@8986] ERROR:CBlbBackupAsync::SetVolumesInLocalCatalog failed with hr=0x80780049
    [0]ed8.124c 09/22/2011-14:05:03.768 [blbengutils
    BlbSecurityUtils.cpp@1203] ENTER: CBlbImpersonationHelper::Revert
    [0]ed8.124c 09/22/2011-14:05:03.768 [blbengutils CBlbImpersonationHelper::Revert
    BlbSecurityUtils.cpp@1215] INFO:No revert needed.
    [0]ed8.124c 09/22/2011-14:05:03.768 [blbengutils
    BlbSecurityUtils.cpp@1220] EXIT: CBlbImpersonationHelper::Revert
    [0]ed8.124c 09/22/2011-14:05:03.768 [service
    backup.cpp@9050] EXIT: CBlbBackupAsync::UpdateLocalCatalogAfterbackup
    [0]ed8.124c 09/22/2011-14:05:03.768 [service
    backup.cpp@15335] ENTER: CBlbBackupAsync::RemoveESPCache
    [0]ed8.124c 09/22/2011-14:05:03.768 [service CBlbBackupAsync::RemoveESPCache
    backup.cpp@15338] INFO:No esp cache created, so not freeing up
    [0]ed8.124c 09/22/2011-14:05:03.768 [service
    backup.cpp@15345] EXIT: CBlbBackupAsync::RemoveESPCache
    [0]ed8.124c 09/22/2011-14:05:03.768 [service BlbBackupThreadFunc
    backup.cpp@19732] INFO:BlbBackupThreadFunc took 363232 ms to complete
    [0]ed8.124c 09/22/2011-14:05:03.768 [service
    backup.cpp@15795] ENTER: CBlbBackupAsync::DismountAllVHDs
    [0]ed8.124c 09/22/2011-14:05:03.768 [service
    backup.cpp@15723] ENTER: CBlbBackupAsync::DismountVHD
    Unknown( 70): GUID=7a2b0bca-701d-904a-c23d-62f5e0f26656 (No Format Information found).
    Unknown( 68): GUID=7a2b0bca-701d-904a-c23d-62f5e0f26656 (No Format Information found).
    Unknown( 69): GUID=7a2b0bca-701d-904a-c23d-62f5e0f26656 (No Format Information found).
    Unknown( 77): GUID=7a2b0bca-701d-904a-c23d-62f5e0f26656 (No Format Information found).
    Unknown( 78): GUID=7a2b0bca-701d-904a-c23d-62f5e0f26656 (No Format Information found).
    Unknown( 74): GUID=7a2b0bca-701d-904a-c23d-62f5e0f26656 (No Format Information found).
    Unknown( 79): GUID=7a2b0bca-701d-904a-c23d-62f5e0f26656 (No Format Information found).
    Unknown( 80): GUID=7a2b0bca-701d-904a-c23d-62f5e0f26656 (No Format Information found).
    Unknown( 71): GUID=7a2b0bca-701d-904a-c23d-62f5e0f26656 (No Format Information found).
    Unknown( 72): GUID=7a2b0bca-701d-904a-c23d-62f5e0f26656 (No Format Information found).
    [0]ed8.124c 09/22/2011-14:05:03.769 [service CBlbBackupAsync::DismountVHD
    backup.cpp@15744] ERROR:CBlbVhdHelper::Dismount failed for '\\?\Volume{d841345f-e505-11e0-bb05-00155d646a25}', hr: 0x80070490
    [0]ed8.124c 09/22/2011-14:05:03.769 [service
    backup.cpp@15775] EXIT: CBlbBackupAsync::DismountVHD
    [0]ed8.124c 09/22/2011-14:05:03.769 [blbengutils
    BlbSecurityUtils.cpp@1203] ENTER: CBlbImpersonationHelper::Revert
    [0]ed8.124c 09/22/2011-14:05:03.769 [blbengutils CBlbImpersonationHelper::Revert
    BlbSecurityUtils.cpp@1215] INFO:No revert needed.
    [0]ed8.124c 09/22/2011-14:05:03.769 [blbengutils
    BlbSecurityUtils.cpp@1220] EXIT: CBlbImpersonationHelper::Revert
    [0]ed8.124c 09/22/2011-14:05:03.769 [service
    backup.cpp@15819] EXIT: CBlbBackupAsync::DismountAllVHDs
    [0]ed8.124c 09/22/2011-14:05:03.769 [service BlbBackupThreadFunc
    backup.cpp@19738] WARNING:DismountAllVHDs unsuccessful with hr=0x80070490
    [0]ed8.124c 09/22/2011-14:05:03.769 [blbengutils
    BlbBackupTargetUtils.cpp@3225] ENTER: BlbDeleteOldBackupLogFiles
    [0]ed8.124c 09/22/2011-14:05:03.769 [blbengutils
    BlbFsUtils.cpp@1258] ENTER: BlbDeleteOldLogFiles
    [0]ed8.124c 09/22/2011-14:05:03.769 [util
    blbtrace.cpp@637] ENTER: GetBlbTracingDirectory
    [0]ed8.124c 09/22/2011-14:05:03.769 [util
    blbtrace.cpp@589] ENTER: GetWindowsLogsDirectory
    [0]ed8.124c 09/22/2011-14:05:03.769 [util
    blbtrace.cpp@618] EXIT: GetWindowsLogsDirectory
    [0]ed8.124c 09/22/2011-14:05:03.769 [util
    blbtrace.cpp@693] EXIT: GetBlbTracingDirectory
    [0]ed8.124c 09/22/2011-14:05:03.769 [blbengutils
    BlbFsUtils.cpp@1151] ENTER: BlbFindFiles
    [0]ed8.124c 09/22/2011-14:05:03.769 [blbengutils BlbFindFiles
    BlbFsUtils.cpp@1208] INFO:Found '3' log files in path 'C:\Windows\Logs\WindowsServerBackup\Backup-*'
    [0]ed8.124c 09/22/2011-14:05:03.769 [blbengutils
    BlbFsUtils.cpp@1232] EXIT: BlbFindFiles
    [0]ed8.124c 09/22/2011-14:05:03.769 [blbengutils BlbDeleteOldLogFiles
    BlbFsUtils.cpp@1303] INFO:Found '3' log files in path 'C:\Windows\Logs\WindowsServerBackup', retaining '5' logs
    [0]ed8.124c 09/22/2011-14:05:03.769 [blbengutils
    BlbFsUtils.cpp@1336] EXIT: BlbDeleteOldLogFiles
    [0]ed8.124c 09/22/2011-14:05:03.769 [blbengutils
    BlbFsUtils.cpp@1258] ENTER: BlbDeleteOldLogFiles
    [0]ed8.124c 09/22/2011-14:05:03.769 [util
    blbtrace.cpp@637] ENTER: GetBlbTracingDirectory
    [0]ed8.124c 09/22/2011-14:05:03.769 [util
    blbtrace.cpp@589] ENTER: GetWindowsLogsDirectory
    [0]ed8.124c 09/22/2011-14:05:03.769 [util
    blbtrace.cpp@618] EXIT: GetWindowsLogsDirectory
    [0]ed8.124c 09/22/2011-14:05:03.769 [util
    blbtrace.cpp@693] EXIT: GetBlbTracingDirectory
    [0]ed8.124c 09/22/2011-14:05:03.769 [blbengutils
    BlbFsUtils.cpp@1151] ENTER: BlbFindFiles
    [0]ed8.124c 09/22/2011-14:05:03.769 [blbengutils BlbFindFiles
    BlbFsUtils.cpp@1208] INFO:Found '3' log files in path 'C:\Windows\Logs\WindowsServerBackup\Backup_Error*'
    [0]ed8.124c 09/22/2011-14:05:03.769 [blbengutils
    BlbFsUtils.cpp@1232] EXIT: BlbFindFiles
    [0]ed8.124c 09/22/2011-14:05:03.769 [blbengutils BlbDeleteOldLogFiles
    BlbFsUtils.cpp@1303] INFO:Found '3' log files in path 'C:\Windows\Logs\WindowsServerBackup', retaining '5' logs
    [0]ed8.124c 09/22/2011-14:05:03.769 [blbengutils
    BlbFsUtils.cpp@1336] EXIT: BlbDeleteOldLogFiles
    [0]ed8.124c 09/22/2011-14:05:03.769 [blbengutils
    BlbFsUtils.cpp@1258] ENTER: BlbDeleteOldLogFiles
    [0]ed8.124c 09/22/2011-14:05:03.769 [util
    blbtrace.cpp@637] ENTER: GetBlbTracingDirectory
    [0]ed8.124c 09/22/2011-14:05:03.769 [util
    blbtrace.cpp@589] ENTER: GetWindowsLogsDirectory
    [0]ed8.124c 09/22/2011-14:05:03.769 [util
    blbtrace.cpp@618] EXIT: GetWindowsLogsDirectory
    [0]ed8.124c 09/22/2011-14:05:03.769 [util
    blbtrace.cpp@693] EXIT: GetBlbTracingDirectory
    [0]ed8.124c 09/22/2011-14:05:03.769 [blbengutils
    BlbFsUtils.cpp@1151] ENTER: BlbFindFiles
    [0]ed8.124c 09/22/2011-14:05:03.769 [blbengutils BlbFindFiles
    BlbFsUtils.cpp@1208] INFO:Found '0' log files in path 'C:\Windows\Logs\WindowsServerBackup\Backup_Operations*'
    [0]ed8.124c 09/22/2011-14:05:03.769 [blbengutils
    BlbFsUtils.cpp@1232] EXIT: BlbFindFiles
    [0]ed8.124c 09/22/2011-14:05:03.769 [blbengutils BlbDeleteOldLogFiles
    BlbFsUtils.cpp@1303] INFO:Found '0' log files in path 'C:\Windows\Logs\WindowsServerBackup', retaining '5' logs
    [0]ed8.124c 09/22/2011-14:05:03.769 [blbengutils
    BlbFsUtils.cpp@1336] EXIT: BlbDeleteOldLogFiles
    [0]ed8.124c 09/22/2011-14:05:03.769 [blbengutils
    BlbBackupTargetUtils.cpp@3260] EXIT: BlbDeleteOldBackupLogFiles
    [0]ed8.124c 09/22/2011-14:05:03.769 [blbengutils
    BlbSecurityUtils.cpp@1203] ENTER: CBlbImpersonationHelper::Revert
    [0]ed8.124c 09/22/2011-14:05:03.769 [blbengutils CBlbImpersonationHelper::Revert
    BlbSecurityUtils.cpp@1215] INFO:No revert needed.
    [0]ed8.124c 09/22/2011-14:05:03.769 [blbengutils
    BlbSecurityUtils.cpp@1220] EXIT: CBlbImpersonationHelper::Revert
    [0]ed8.124c 09/22/2011-14:05:03.769 [componenthelper
    componentbackuphelper.cpp@1456] ENTER: CBlbComponentBackupHelper::BackupComplete
    [0]ed8.124c 09/22/2011-14:05:03.769 [componenthelper CBlbComponentBackupHelper::BackupComplete
    componentbackuphelper.cpp@1460] INFO:bIsBackupFailed: 1
    [0]ed8.124c 09/22/2011-14:05:03.769 [componenthelper CBlbComponentBackupHelper::BackupComplete
    componentbackuphelper.cpp@1473] INFO:BackupComplete already attempted.
    [0]ed8.124c 09/22/2011-14:05:03.769 [componenthelper
    componentbackuphelper.cpp@1518] EXIT: CBlbComponentBackupHelper::BackupComplete
    [0]ed8.124c 09/22/2011-14:05:03.769 [service
    backup.cpp@13649] ENTER: CBlbBackupAsync::DeleteSourceSnapshotsIfNeeded
    [0]ed8.124c 09/22/2011-14:05:03.769 [service
    PerformanceManager.cpp@550] ENTER: CPerformanceManager::Initialize
    [0]ed8.124c 09/22/2011-14:05:03.769 [service
    PerformanceManager.cpp@281] ENTER: CPerformanceManager::QueryPerformanceSettings
    [0]ed8.124c 09/22/2011-14:05:03.770 [service CPerformanceManager::QueryPerformanceSettings
    PerformanceManager.cpp@382] INFO:Buffer size is 4. First line is <NULL>
    [0]ed8.124c 09/22/2011-14:05:03.770 [service CPerformanceManager::QueryPerformanceSettings
    PerformanceManager.cpp@389] INFO:Custom performance settings is empty.
    [0]ed8.124c 09/22/2011-14:05:03.770 [service
    PerformanceManager.cpp@484] EXIT: CPerformanceManager::QueryPerformanceSettings
    [0]ed8.124c 09/22/2011-14:05:03.770 [service
    PerformanceManager.cpp@560] EXIT: CPerformanceManager::Initialize
    [0]ed8.124c 09/22/2011-14:05:03.777 [util
    systemutils.cpp@709] ENTER: BlbutilRegReadDWORD
    [0]ed8.124c 09/22/2011-14:05:03.777 [util BlbutilRegReadDWORD
    systemutils.cpp@731] WARNING:RegQueryValueEx DoNotDeleteFFBSnapshot unsuccessful, hr:0x80070002
    [0]ed8.124c 09/22/2011-14:05:03.777 [util
    systemutils.cpp@749] EXIT: BlbutilRegReadDWORD
    [0]ed8.124c 09/22/2011-14:05:03.777 [service
    PerformanceManager.cpp@585] ENTER: CPerformanceManager::GetSettingsForVolume
    [0]ed8.124c 09/22/2011-14:05:03.777 [service
    PerformanceManager.cpp@620] EXIT: CPerformanceManager::GetSettingsForVolume
    [0]ed8.124c 09/22/2011-14:05:03.777 [service CBlbBackupAsync::DeleteSourceSnapshotsIfNeeded
    backup.cpp@14045] INFO:Deleting current snapshot (\\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy8\)
    [0]ed8.124c 09/22/2011-14:05:03.931 [service
    backup.cpp@14082] EXIT: CBlbBackupAsync::DeleteSourceSnapshotsIfNeeded
    [0]ed8.124c 09/22/2011-14:05:03.933 [service
    backup.cpp@14432] ENTER: CBlbBackupAsync::SetSourceDiffAreasIfNeeded
    [0]ed8.124c 09/22/2011-14:05:03.933 [service
    backup.cpp@14539] EXIT: CBlbBackupAsync::SetSourceDiffAreasIfNeeded
    [0]ed8.124c 09/22/2011-14:05:03.933 [service
    backup.cpp@14737] ENTER: CBlbBackupAsync::ResetTargetDiffAreaSize
    [0]ed8.124c 09/22/2011-14:05:03.933 [service CBlbBackupAsync::ResetTargetDiffAreaSize
    backup.cpp@14754] INFO:Not resetting diff area
    [0]ed8.124c 09/22/2011-14:05:03.933 [service
    backup.cpp@14866] EXIT: CBlbBackupAsync::ResetTargetDiffAreaSize
    [0]ed8.124c 09/22/2011-14:05:03.963 [service BlbBackupThreadFunc
    backup.cpp@19873] ERROR:Backup operation aborted with hr=80780049
    [0]ed8.124c 09/22/2011-14:05:03.963 [service CBlbSystemStateBackupAsync::SetState
    systemstatebackup.cpp@1061] INFO:ENGINE STATE:BACKUP SYSTEM STATE:5
    [0]ed8.124c 09/22/2011-14:05:03.963 [service CBlbBackupAsync::SetState
    backup.cpp@14709] INFO:ENGINE STATE:BACKUP:12. Previous state:8
    [0]ed8.124c 09/22/2011-14:05:03.963 [util
    fileutils.cpp@1388] ENTER: BlbutilDeleteDirectory
    [0]ed8.124c 09/22/2011-14:05:03.963 [util
    fileutils.cpp@1183] ENTER: BlbutilDeleteDirectory2
    [0]ed8.124c 09/22/2011-14:05:03.970 [util
    fileutils.cpp@1344] EXIT: BlbutilDeleteDirectory2
    [0]ed8.124c 09/22/2011-14:05:03.970 [util BlbutilDeleteDirectory
    fileutils.cpp@1443] INFO:Aborting deletion of
    \\?\Volume{9f1ea684-a26b-11de-bbc7-806e6f6e6963}\WindowsImageBackup\HEIAPP02\Backup 2011-09-22 135901 as one or more diectories or files are not getting deleted
    [0]ed8.124c 09/22/2011-14:05:03.970 [util BlbutilDeleteDirectory
    fileutils.cpp@1463] INFO:Total number of files/directories deleted in
    \\?\Volume{9f1ea684-a26b-11de-bbc7-806e6f6e6963}\WindowsImageBackup\HEIAPP02\Backup 2011-09-22 135901 is 17
    [0]ed8.124c 09/22/2011-14:05:03.970 [util BlbutilDeleteDirectory
    fileutils.cpp@1465] INFO:Deleting
    \\?\Volume{9f1ea684-a26b-11de-bbc7-806e6f6e6963}\WindowsImageBackup\HEIAPP02\Backup 2011-09-22 135901 took 0 ms
    [0]ed8.124c 09/22/2011-14:05:03.970 [util
    fileutils.cpp@1467] EXIT: BlbutilDeleteDirectory
    [0]ed8.124c 09/22/2011-14:05:03.970 [service
    backup.cpp@12718] ENTER: CBlbBackupAsync::PublishAllBackupStopEvents
    [0]ed8.124c 09/22/2011-14:05:03.971 [service CBlbBackupAsync::PublishAllBackupStopEvents
    backup.cpp@13047] INFO:Backup info for Volume [hr=8078001D, detailed hr = 0, Flags=1574, backupTypeDetermined = 1, IsCritical = 1]
    [0]ed8.124c 09/22/2011-14:05:03.971 [componenthelper
    componentbackuphelper.cpp@1850] ENTER: CBlbComponentBackupHelper::FillComponentConsistencyStatus
    [0]ed8.124c 09/22/2011-14:05:03.971 [componenthelper
    componentbackuphelper.cpp@1944] EXIT: CBlbComponentBackupHelper::FillComponentConsistencyStatus
    [0]ed8.124c 09/22/2011-14:05:03.971 [service
    systemstatebackup.cpp@1526] ENTER: CBlbSystemStateBackupAsync::GetSSBTimes
    [0]ed8.124c 09/22/2011-14:05:03.971 [service
    systemstatebackup.cpp@1531] EXIT: CBlbSystemStateBackupAsync::GetSSBTimes
    [0]ed8.124c 09/22/2011-14:05:03.971 [blbengutils
    BlbSqmUtils.cpp@342] ENTER: PublishBackupSqmDatapoint
    [0]ed8.124c 09/22/2011-14:05:03.971 [service
    backup.cpp@13273] EXIT: CBlbBackupAsync::PublishAllBackupStopEvents
    [0]ed8.124c 09/22/2011-14:05:03.971 [service
    backup.cpp@15016] ENTER: CBlbBackupAsync::UpdateBackupStatInRegistry
    [0]ed8.124c 09/22/2011-14:05:03.971 [service
    backup.cpp@14895] ENTER: CBlbBackupAsync::GetLastSuccessfulBackupInfo
    [0]ed8.124c 09/22/2011-14:05:03.971 [service CBlbBackupAsync::GetLastSuccessfulBackupInfo
    backup.cpp@14960] INFO:Last successful backup stats.  utc time 0,  target name (NULL), target access path (NULL)
    [0]ed8.124c 09/22/2011-14:05:03.971 [service
    backup.cpp@14991] EXIT: CBlbBackupAsync::GetLastSuccessfulBackupInfo
    [0]ed8.124c 09/22/2011-14:05:03.971 [helper
    blbBackupStatUpdater.cpp@205] ENTER: CBlbBackupStatUpdater::SaveStatsToRegistry
    [0]ed8.124c 09/22/2011-14:05:03.971 [helper CBlbBackupStatUpdater::SaveStatsToRegistry
    blbBackupStatUpdater.cpp@233] INFO:RegOpenKeyEx was unsuccessful for HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsBackup.  hr=0x80070002
    [0]ed8.124c 09/22/2011-14:05:03.971 [helper
    blbBackupStatUpdater.cpp@368] EXIT: CBlbBackupStatUpdater::SaveStatsToRegistry
    [0]ed8.124c 09/22/2011-14:05:03.971 [service CBlbBackupAsync::UpdateBackupStatInRegistry
    backup.cpp@15058] WARNING:pBlbBackupStatUpdater->SaveStatsToRegistry unsuccessful with hr=0x80070002. This should be fine on server skus.
    [0]ed8.124c 09/22/2011-14:05:03.971 [service
    backup.cpp@15069] EXIT: CBlbBackupAsync::UpdateBackupStatInRegistry
    [0]ed8.124c 09/22/2011-14:05:03.971 [service BlbBackupThreadFunc
    backup.cpp@19957] WARNING:UpdateBackupStatInRegistry unsuccessful with hr=80070002
    [0]ed8.124c 09/22/2011-14:05:03.971 [blbsrv
    restoresystemstate.cpp@259] ENTER: CBlbsrvSystemStateRestore::FinalRelease
    [0]ed8.124c 09/22/2011-14:05:03.971 [blbsrv
    restorefiles.cpp@162] ENTER: CBlbsrvRestoreFiles::FinalRelease
    [0]ed8.124c 09/22/2011-14:05:03.971 [blbsrv
    srvutil.cpp@139] ENTER: BlbsrvFreeRestoreFileSpecs
    [0]ed8.124c 09/22/2011-14:05:03.971 [blbsrv
    srvutil.cpp@151] EXIT: BlbsrvFreeRestoreFileSpecs
    [0]ed8.124c 09/22/2011-14:05:03.971 [blbsrv
    restorefiles.cpp@210] EXIT: CBlbsrvRestoreFiles::FinalRelease
    [0]ed8.124c 09/22/2011-14:05:03.971 [blbsrv
    restoresystemstate.cpp@312] EXIT: CBlbsrvSystemStateRestore::FinalRelease
    [0]ed8.124c 09/22/2011-14:05:03.971 [service CBlbAsync::Done
    async.cpp@187] INFO:Marking async operation as completed
    [0]ed8.124c 09/22/2011-14:05:03.971 [service CBlbAsync::Done
    async.cpp@190] INFO:Calling CompleteAsyncOperation for parent operation
    [0]ed8.124c 09/22/2011-14:05:03.971 [service
    backup.cpp@19987] EXIT: BlbBackupThreadFunc
    [0]ed8.f68 09/22/2011-14:05:04.227 [service
    backup.cpp@3149] ENTER: CBlbBackupAsync::QueryStatus
    [0]ed8.f68 09/22/2011-14:05:04.227 [service
    backup.cpp@3209] ENTER: CBlbBackupAsync::QueryVolumeBackupStatus
    [0]ed8.f68 09/22/2011-14:05:04.227 [componenthelper
    componentbackuphelper.cpp@1850] ENTER: CBlbComponentBackupHelper::FillComponentConsistencyStatus
    [0]ed8.f68 09/22/2011-14:05:04.227 [componenthelper
    componentbackuphelper.cpp@1944] EXIT: CBlbComponentBackupHelper::FillComponentConsistencyStatus
    [0]ed8.f68 09/22/2011-14:05:04.227 [service
    backup.cpp@3342] EXIT: CBlbBackupAsync::QueryVolumeBackupStatus
    [0]ed8.f68 09/22/2011-14:05:04.227 [service
    backup.cpp@3359] ENTER: CBlbBackupAsync::QuerySystemStateBackupStatus
    [0]ed8.f68 09/22/2011-14:05:04.227 [service
    systemstatebackup.cpp@740] ENTER: CBlbSystemStateBackupAsync::QueryStatus
    [0]ed8.f68 09/22/2011-14:05:04.227 [service
    systemstatebackup.cpp@874] EXIT: CBlbSystemStateBackupAsync::QueryStatus
    [0]ed8.f68 09/22/2011-14:05:04.227 [service
    backup.cpp@3399] EXIT: CBlbBackupAsync::QuerySystemStateBackupStatus
    [0]ed8.f68 09/22/2011-14:05:04.227 [service
    backup.cpp@3192] EXIT: CBlbBackupAsync::QueryStatus
    [0]bf0.fe0 09/22/2011-14:05:04.228 [util
    blbtrace.cpp@853] ENTER: BlbStopTracing
    [0]bf0.fe0 09/22/2011-14:05:04.228 [util
    blbtrace.cpp@397] ENTER: BlbStopTracing
    [0]bf0.fe0 09/22/2011-14:05:04.228 [util
    blbtrace.cpp@51] ENTER: BlbAllocateEventTraceProp
    [0]bf0.fe0 09/22/2011-14:05:04.228 [util
    blbtrace.cpp@83] EXIT: BlbAllocateEventTraceProp
    Log Name:      Microsoft-Windows-Backup
    Source:        Microsoft-Windows-Backup
    Date:          9/22/2011 1:28:44 AM
    Event ID:      5
    Task Category: None
    Level:         Error
    Keywords:     
    User:          SYSTEM
    Computer:      HEIAPP02.heimstaden.local
    Description:
    The backup operation that started at '‎2011‎-‎09‎-‎22T06:22:24.687716500Z' has failed with following error code '2155347997'. Please review the event details for a solution, and then rerun the backup operation once the issue is resolved.
    Sumesh P - Microsoft Online Community Support

  • Error Message: "The parameter is incorrect" when trying to modify SSLs

    Like I wrote in my subject line, RoboHelp pop-ups the error message “The Parameter is incorrect” when I try to modify any SSL.
    What happens next, is that the “Print Document General” window opens, but does not allow me to select anything (the fields are blank).
    If I close the window and open it again, it seems to work until I have to select the styles from our Microsoft Word Template.
    Then the error message “The parameter is incorrect” appears again, and RoboHelp does not allow me to select anything but a stylesheet
    (which is not what I need).
    This is very strange, because not only  until recently I was able to build Word documents and PDFs, but also my colleagues are able to
    produce them out of my source.
    Even the old projects, that I was able to build, now I cannot.
    I do not have any problem in generating CHMs.
    Until now I have tried everything I found in the forum:
    I deleted the PSS file (also following the advice in your snippet number 14 from 10 – RoboHelp HTML –Features and Use).
    http://forums.adobe.com/thread/120022
    I reinstalled RoboHelp and the Adobe Technical Communication Suite (I also used CCleaner to delete the registries).
    http://forums.adobe.com/thread/598335
    I gave Administrator rights to all users in my computer (what seemed to work for some SSLs, but not for all)
    http://forums.adobe.com/thread/870339
    I am also looking at all programs that I installed since the last time I was able to build .docs in case there is a conflict, but I do not find anything!
    My computer has Windows 7 installed and I use the Adobe Technical Communication Suite 3.5, with RoboHelp 9.
    My Microsoft Office is 2010.
    Can somebody please help me? Did someone have the same problem?
    Thanks in advance.

    Hi there
    I know you said you reinstalled, but did you reinstall before or after you gave administrator rights to all users on your computer? And how many users *ARE* on your computer?
    Often you need administrator rights to properly install things.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7, 8 or 9 within the day!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Contribute 6.5 the parameter is incorrect error

    I have three clients who all have the same problem on the same day on different site. When they try to edit a page and add a link they get an error message 'the parameter is incorrect' - if they continue to add link from the pop up box Contribute crashes. Any ideas?

    Not sure if you've tried, but you might get better/faster answers in the Contribute Forum: Contribute General Discussion

Maybe you are looking for

  • Bridge not loading in CS6

    Win 7 system.  Fresh installation of CS6 from DVD.  I did not install the beta previously.  Photoshop CS6 64-bit loads and ACR imports images but Bridge in CS6 does not seem to load.  I get the message "Waiting for Bridge CS6 ..." but nothing happens

  • A good viewer for photoshop, indesign and illustrator files.

    Hello everyone. I work at an designers firm, and we are avid users of the Adobe Creative Suite. However, it's expensive software, and certain people at the company only have to view the files we create. It's a bit of a hassle to create PDFs for them,

  • Creating A New MySQL Database With Coldfusion Code

    Hi, I was wondering if anyone knew how to create a whole entire new database simply by executing a Coldfusion template (via a form for example). I'm pretty confident at creating a new table in an already existing database but not sure how to go about

  • No Applescript works in iChat!

    I've tested this on 3 different Macs (all with OS 10.5.1) but all of them gets the same error. What I'm trying to do is to run Apples preinstalled script in iChat, but regardless of which of the scripts I run, I always get the following errormessage:

  • I cannot get the right apps.

    I am ashamed to admit that at the age of 66 I find it confusing when trying to follow the help lines and never seem to get it correct. Due to this problem we have to use IE10 is not what my wife and I like.