Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Ztruker

Pages: 1 2 [3] 4
51
Tweaking.com Support & Help / Re: Registry Backup Beta
« on: May 25, 2012, 01:36:03 pm »
See what you mean about VSN. If disk imaging is used to clone two drives or partitions then the VSN will be the same. Bummer. I don't know how to find the Disk Signature that same thread mentioned.

Tried the new exe. It still has both tests, so need to drop the first set.

Code: [Select]
IF EXIST "K:\Windows\System32\Config\sam" set WindowsDrive=K:
IF EXIST "J:\Windows\System32\Config\sam" set WindowsDrive=J:
IF EXIST "I:\Windows\System32\Config\sam" set WindowsDrive=I:
IF EXIST "H:\Windows\System32\Config\sam" set WindowsDrive=H:
IF EXIST "G:\Windows\System32\Config\sam" set WindowsDrive=G:
IF EXIST "F:\Windows\System32\Config\sam" set WindowsDrive=F:
IF EXIST "E:\Windows\System32\Config\sam" set WindowsDrive=E:
IF EXIST "D:\Windows\System32\Config\sam" set WindowsDrive=D:
IF EXIST "C:\Windows\System32\Config\sam" set WindowsDrive=C:

IF EXIST "K:\Windows\tweaking.com-regbackup-DELL-P370.dat" set WindowsDrive=K:
IF EXIST "J:\Windows\tweaking.com-regbackup-DELL-P370.dat" set WindowsDrive=J:
IF EXIST "I:\Windows\tweaking.com-regbackup-DELL-P370.dat" set WindowsDrive=I:
IF EXIST "H:\Windows\tweaking.com-regbackup-DELL-P370.dat" set WindowsDrive=H:
IF EXIST "G:\Windows\tweaking.com-regbackup-DELL-P370.dat" set WindowsDrive=G:
IF EXIST "F:\Windows\tweaking.com-regbackup-DELL-P370.dat" set WindowsDrive=F:
IF EXIST "E:\Windows\tweaking.com-regbackup-DELL-P370.dat" set WindowsDrive=E:
IF EXIST "D:\Windows\tweaking.com-regbackup-DELL-P370.dat" set WindowsDrive=D:
IF EXIST "C:\Windows\tweaking.com-regbackup-DELL-P370.dat" set WindowsDrive=C:

The problem still exists where I can have a multi-boot system and ran the backup from I: one time and from C: another.  Your test would always find the one on C: and copy the files saved from I: to C:.

As I mentioned before, I have Win 7, called DELL-P370 on I: and Win 8 Consumer Preview, also called DELL-P370 on I: I do it this way so the computer name is always the same on my network irregardless of which version I boot. Makes sharing much easier.

52
Tweaking.com Support & Help / Re: Registry Backup Beta
« on: May 25, 2012, 01:18:23 pm »
Just to finish the thing with vol, this works:

Code: [Select]
@echo off
set l=c:
vol %l% | find "C89E-70E8"
echo %l% errorlevel %errorlevel%
if %errorlevel% EQU 0 goto found

set l=d:
vol %l% | find "C89E-70E8"
echo %l% errorlevel %errorlevel%
if %errorlevel% EQU 0 goto found

set l=e:
vol %l% | find "C89E-70E8"
echo %l% errorlevel %errorlevel%
if %errorlevel% EQU 0 goto found

set l=f:
vol %l% | find "C89E-70E8"
echo %l% errorlevel %errorlevel%
if %errorlevel% EQU 0 goto found

set l=g:
vol %l% | find "C89E-70E8"
echo %l% errorlevel %errorlevel%
if %errorlevel% EQU 0 goto found

set l=h:
vol %l% | find "C89E-70E8"
echo %l% errorlevel %errorlevel%
if %errorlevel% EQU 0 goto found

"C89E-70E8" drive not found
goto done

:found
echo "C89E-70E8" is drive %l%

:done

On my computer, C89E-70E8 is the VSN for my C: drive where Win 7 is installed and where I ran the reg backup. Doing it this way would not require you to write or look for a specific file. Just a suggestion.

There may be a way to put the above in a for loop but I couldn't figure out how to do it.

53
Tweaking.com Support & Help / Re: Registry Backup Beta
« on: May 25, 2012, 12:05:46 pm »
I think you can use the vol command:

>vol /?
Displays the disk volume label and s

VOL [drive:]

>vol c:
 Volume in drive C is D370_C
 Volume Serial Number is C89E-70E8
>vol d:
 Volume in drive D is D370_D
 Volume Serial Number is 9402-7174

It returns a unique VSN (Volume Serial Number) for each drive or partition. Now to figure out how to parse that info in the dos_restore.cmd file and I think it would be fail safe.

54
Tweaking.com Support & Help / Re: Registry Backup Beta
« on: May 25, 2012, 10:14:01 am »
I booted the Recovery Console. My Win 7 boot drive was still C: even though I have a 100MB System Reserved partition. I know you can't depend on that though.

I guess a marker file on the partition is the best way to go unless each partition has a unique UUID or something that you can query in both environments.

The problem with a marker file is if there is more than one bootable Windows partition and Backup is used on each, then how do you tell which one to use?

Interesting problem. Could you key off the partition name? Each one has to be unique I think. For instance, mine are D370_C through D370_I.

55
Tweaking.com Support & Help / Re: Registry Backup Beta
« on: May 24, 2012, 07:11:33 pm »
Another possibility would be to add a line to backup_info.txt:

WindowsDrive=C:   (or whatever the boot drive actually is)

then you could read that from the dos_restore.cmd file but that's a lot more work. Easiest just to use the HOMEDRIVE variable when creating the cmd file.

56
Tweaking.com Support & Help / Re: Registry Backup Beta
« on: May 24, 2012, 06:58:11 pm »
I don't know, but what I meant was when you create the dos_restore.cmd file, use the HOMEDRIVE variable then, or is the cmd file already built and not being generated on the computer when backup is run?

Next time I get a chance I'll start the Recovery Console and see what environment variables are set.

57
Tweaking.com Support & Help / Re: Registry Backup Beta
« on: May 24, 2012, 06:28:25 pm »
Rebooted with 0.9.7 and there is a problem with the dos_restore.cmd file.

IF EXIST K:\WINDOWS\System32\Config\sam set WindowsDrive=K:
IF EXIST J:\WINDOWS\System32\Config\sam set WindowsDrive=J:
IF EXIST I:\WINDOWS\System32\Config\sam set WindowsDrive=I:
IF EXIST H:\WINDOWS\System32\Config\sam set WindowsDrive=H:
IF EXIST G:\WINDOWS\System32\Config\sam set WindowsDrive=G:
IF EXIST F:\WINDOWS\System32\Config\sam set WindowsDrive=F:
IF EXIST E:\WINDOWS\System32\Config\sam set WindowsDrive=E:
IF EXIST D:\WINDOWS\System32\Config\sam set WindowsDrive=D:
IF EXIST C:\WINDOWS\System32\Config\sam set WindowsDrive=C:

I have Win 7 on C: and Win 8 Customer Preview on I. I guess this will work as it will see the one on C: last and set the WindowsDrive variable correctly, but I think a better method would be for you to look at the HOMEDRIVE environment variable then set WindowsDrive to that value when building the batch file. Should always work.

Ran a manual backup and it worked. Checked C:\Windows\temp and not I have two sets of vss files:
Quote
C:\Windows\Temp>dir vss*
 Volume in drive C is D370_C
 Volume Serial Number is C89E-70E8

 Directory of C:\Windows\Temp

05/24/2012  08:51 PM               308 vss-setvar.cmd
05/24/2012  09:24 PM               308 vss-setvar553.bat
05/24/2012  08:50 PM               518 vss.bat
05/24/2012  09:23 PM               529 vss553.bat
05/24/2012  08:50 PM               290 vss_start.bat
05/24/2012  09:23 PM               296 vss_start553.bat

That works but will end up leaving more and more vss* files there over time. You need to figure out why you were not replacing the vss files before then go back to just the single instance of each.

Were you deleting them before writing new ones previously or just trying to write over them?

58
Tweaking.com Support & Help / Re: Registry Backup Beta
« on: May 24, 2012, 05:54:18 pm »
BINGO!!!!! I deleted the vss* files in C:\Windows\temp and the manual backup worked correctly, so it looks like you are right and they are not being over written for some reason and are probably the ones created when by the scheduled backup at boot time.

Hmmm, just ran it again 3 minutes later and it ran okay again. Seems to only not work after the scheduled backup has occurred, which I think it setup to run under SYSTEM, not my login account.

I'll reboot in a little while then try the manual backup without deleting the vss* files in C:\Windows and see what happens.

59
Tweaking.com Support & Help / Re: Registry Backup Beta
« on: May 24, 2012, 05:47:17 pm »
These are the logs from a good scheduled run at boot time. The vss* files in C:\Windows\temp were all dated today when the computer was booted.


60
Tweaking.com Support & Help / Re: Registry Backup Beta
« on: May 23, 2012, 06:12:50 pm »
Code: [Select]
>dir b:
The system cannot find the path specified.

>dir b:\
The system cannot find the path specified.

Code: [Select]
C:\Users\rrkurtz>vssadmin list shadows
vssadmin 1.1 - Volume Shadow Copy Servi
(C) Copyright 2001-2005 Microsoft Corp.

No items found that satisfy the query.

Code: [Select]
[5/23/2012 - 9:09:46 PM]
--------------------------------------------------------------------------------
Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation.  All rights reserved.

C:\Program Files (x86)\Tweaking.com\Registry Backup>
--------------------------------------------------------------------------------
[5/23/2012 - 9:09:46 PM]
--------------------------------------------------------------------------------
CD /D C:\

C:\>
--------------------------------------------------------------------------------
[5/23/2012 - 9:09:46 PM]
--------------------------------------------------------------------------------
"C:\Windows\temp\vss_start.bat"

C:\>set path=C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files (x86)\Tweaking.com\Registry Backup\files

--------------------------------------------------------------------------------
[5/23/2012 - 9:09:46 PM]
--------------------------------------------------------------------------------

C:\>"C:\Program Files (x86)\Tweaking.com\Registry Backup\files\vss_7_64.exe" -script="C:\Windows\temp\vss-setvar.cmd" -exec="C:\Windows\temp\vss.bat" C:

--------------------------------------------------------------------------------
[5/23/2012 - 9:10:31 PM]
--------------------------------------------------------------------------------

C:\>set path=C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files (x86)\Tweaking.com\Registry Backup\files

C:\>call "C:\Windows\temp\vss-setvar.cmd"

[This script is generated by VSHADOW.EXE for the shadow set {4badf327-19f7-4d78-9ed1-fe60194e7642}]

--------------------------------------------------------------------------------
[5/23/2012 - 9:10:31 PM]
--------------------------------------------------------------------------------

C:\>SET SHADOW_SET_ID={4badf327-19f7-4d78-9ed1-fe60194e7642}

C:\>SET SHADOW_ID_1={624b581a-5d69-4377-a6f8-0fca2ec61188}

C:\>SET SHADOW_DEVICE_1=\\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy8

C:\>"C:\Program Files (x86)\Tweaking.com\Registry Backup\files\dosdev.exe" -a B: \\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy8

--------------------------------------------------------------------------------
[5/23/2012 - 9:10:31 PM]
--------------------------------------------------------------------------------
Current definition: B: = \??\GLOBALROOT\Device\HarddiskVolumeShadowCopy8

C:\>"C:\Program Files (x86)\Tweaking.com\Registry Backup\files\dosdev.exe"
--------------------------------------------------------------------------------
[5/23/2012 - 9:10:31 PM]
--------------------------------------------------------------------------------
B: = \??\GLOBALROOT\Device\HarddiskVolumeShadowCopy8 [NoRootDir] *** LOGICAL DRIVE BIT NOT SET ***
C: = \Device\HarddiskVolume5 [Fixed]
D: = \Device\HarddiskVolume1 [Fixed]
E: = \Device\HarddiskVolume2 [Fixed]
F: = \Device\HarddiskVolume3 [Fixed]
G: = \Device\HarddiskVolume6 [Fixed]
H: = \Device\HarddiskVolume7 [Fixed]
I: = \Device\HarddiskVolume8 [Fixed]
O: = \Device\CdRom0 [CDRom]

C:\>start "" /wait "C:\Program Files (x86)\Tweaking.com\Registry Backup\files\vss_pause.exe"

--------------------------------------------------------------------------------
[5/23/2012 - 9:10:52 PM]
--------------------------------------------------------------------------------

C:\>"C:\Program Files (x86)\Tweaking.com\Registry Backup\files\dosdev.exe" -r -d B:

--------------------------------------------------------------------------------
[5/23/2012 - 9:10:52 PM]
--------------------------------------------------------------------------------
Current definition: B: = \??\GLOBALROOT\Device\HarddiskVolumeShadowCopy8
B: deleted.

--------------------------------------------------------------------------------
[5/23/2012 - 9:10:54 PM]
--------------------------------------------------------------------------------

VSHADOW.EXE 3.0 - Volume Shadow Copy sample client.
Copyright (C) 2005 Microsoft Corporation. All rights reserved.

(Option: Generate SETVAR script 'C:\Windows\temp\vss-setvar.cmd')
(Option: Execute binary/script after shadow creation 'C:\Windows\temp\vss.bat')
(Option: Create shadow copy set)
(Gathering writer metadata...)
(Waiting for the asynchronous operation to finish...)
Initialize writer metadata ...
Discover directly excluded components ...
- Excluding writer 'MSSearch Service Writer' since it has no selected components for restore.
- Excluding writer 'Shadow Copy Optimization Writer' since it has no selected components for restore.
- Excluding writer 'BITS Writer' since it has no selected components for restore.
Discover components that reside outside the shadow set ...
- Component '\BCD\BCD' from writer 'ASR Writer' is excluded from backup (it requires  in the shadow set)
Discover all excluded components ...
Discover excluded writers ...
- The writer 'ASR Writer' is now entirely excluded from the backup:
  (the top-level non-selectable component '\BCD\BCD' is an excluded component)
Discover explicitly included components ...
Verifying explicitly specified writers/components ...
Select explicitly included components ...
 * Writer 'Task Scheduler Writer':
   - Add component \TasksStore
 * Writer 'VSS Metadata Store Writer':
   - Add component \WriterMetadataStore
 * Writer 'Performance Counters Writer':
   - Add component \PerformanceCounters
 * Writer 'System Writer':
   - Add component \System Files
 * Writer 'Registry Writer':
   - Add component \Registry
 * Writer 'COM+ REGDB Writer':
   - Add component \COM+ REGDB
 * Writer 'WMI Writer':
   - Add component \WMI
Creating shadow set {208494ff-45c7-4082-86a3-750db3c29517} ...
- Adding volume \\?\Volume{bcbe9ee2-e6d1-11de-8e59-806e6f6e6963}\ [C:\] to the shadow set...
Preparing for backup ...
(Waiting for the asynchronous operation to finish...)
(Waiting for the asynchronous operation to finish...)
Creating the shadow (DoSnapshotSet) ...
(Waiting for the asynchronous operation to finish...)
(Waiting for the asynchronous operation to finish...)
Shadow copy set succesfully created.

List of created shadow copies:

Querying all shadow copies with the SnapshotSetID {208494ff-45c7-4082-86a3-750db3c29517} ...

* SNAPSHOT ID = {429519cb-419b-4788-8df0-f2b4b4e683ce} ...
   - Shadow copy Set: {208494ff-45c7-4082-86a3-750db3c29517}
   - Original count of shadow copies = 1
   - Original Volume name: \\?\Volume{bcbe9ee2-e6d1-11de-8e59-806e6f6e6963}\ [C:\]
   - Creation Time: 5/23/2012 9:10:27 PM
   - Shadow copy device name: \\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy13
   - Originating machine: Dell-P370
   - Service machine: Dell-P370
   - Not Exposed
   - Provider id: {b5946137-7b9f-4925-af80-51abd60b20d5}
   - Attributes:  Auto_Release Differential

Generating the SETVAR script (C:\Windows\temp\vss-setvar.cmd) ...
- Executing command 'C:\Windows\temp\vss.bat' ...
-----------------------------------------------------
-----------------------------------------------------
- Mark all writers as succesfully backed up...
Completing the backup (BackupComplete) ...
(Waiting for the asynchronous operation to finish...)
(Waiting for the asynchronous operation to finish...)

Snapshot creation done.

--------------------------------------------------------------------------------
[5/23/2012 - 9:10:54 PM]
--------------------------------------------------------------------------------

C:\>
--------------------------------------------------------------------------------
[5/23/2012 - 9:10:57 PM]
--------------------------------------------------------------------------------
Closed. No longer reading pipes.
--------------------------------------------------------------------------------

The weird part is this works fine when it's run automatically at boot time.

61
Tweaking.com Support & Help / Re: Registry Backup Beta
« on: May 23, 2012, 06:02:47 pm »
Same problem after deleting shadows on all volumes, C: D: and E:.

[5/23/2012 - 9:01:51 PM] Backing Up Files...:
[5/23/2012 - 9:01:51 PM] --------------------------------------------------------------------------------
[5/23/2012 - 9:01:51 PM] Backing Up File: C:\Windows\System32\Config\default
[5/23/2012 - 9:01:51 PM] Result: Failed - Error: Couldn't find the file on the volume snapshot.

62
Tweaking.com Support & Help / Re: Registry Backup Beta
« on: May 23, 2012, 05:52:56 pm »
What will deleting shadows do to me? I have other software that uses Shadow Copy, especially Acronis True Image and I don't want to mess with it. (Can you tell I'm not up to speed on Shadow Copy  :tongue:)

Also, I use Shadow Explore to browse Shadow Copies to sometimes recover files that Windows has backed up. What kind of an effect does it have on that?

I just did a vssadmin list shadows and this is the response:
Code: [Select]
C:\Users\rrkurtz>vssadmin list shadows
vssadmin 1.1 - Volume Shadow Copy Service administrative command-line tool
(C) Copyright 2001-2005 Microsoft Corp.

Contents of shadow copy set ID: {7b188938-d370-4feb-9a9e-8b9c62084dfa}
   Contained 3 shadow copies at creation time: 5/21/2012 4:29:00 PM
      Shadow Copy ID: {aa946877-595a-4179-8992-2b7f5b3df833}
         Original Volume: (D:)\\?\Volume{bcbe9ede-e6d1-11de-8e59-806e6f6e6963}\
         Shadow Copy Volume: \\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy1
         Originating Machine: Dell-P370
         Service Machine: Dell-P370
         Provider: 'Microsoft Software Shadow Copy provider 1.0'
         Type: ClientAccessibleWriters
         Attributes: Persistent, Client-accessible, No auto release, Differential, Auto recovered

      Shadow Copy ID: {086270b9-c5e0-4b78-bf00-27171d8911c4}
         Original Volume: (E:)\\?\Volume{bcbe9edf-e6d1-11de-8e59-806e6f6e6963}\
         Shadow Copy Volume: \\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy3
         Originating Machine: Dell-P370
         Service Machine: Dell-P370
         Provider: 'Microsoft Software Shadow Copy provider 1.0'
         Type: ClientAccessibleWriters
         Attributes: Persistent, Client-accessible, No auto release, Differential, Auto recovered

      Shadow Copy ID: {9d7b82a4-de52-4b41-b823-52245a2754bc}
         Original Volume: (C:)\\?\Volume{bcbe9ee2-e6d1-11de-8e59-806e6f6e6963}\
         Shadow Copy Volume: \\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy5
         Originating Machine: Dell-P370
         Service Machine: Dell-P370
         Provider: 'Microsoft Software Shadow Copy provider 1.0'
         Type: ClientAccessibleWriters
         Attributes: Persistent, Client-accessible, No auto release, Differential, Auto recovered

Contents of shadow copy set ID: {6d0d06be-076f-4d75-a04d-fc0a0fe0c3ad}
   Contained 3 shadow copies at creation time: 5/22/2012 3:06:09 PM
      Shadow Copy ID: {d43b6a93-6928-49d4-b488-ffa072df21fa}
         Original Volume: (D:)\\?\Volume{bcbe9ede-e6d1-11de-8e59-806e6f6e6963}\
         Shadow Copy Volume: \\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy2
         Originating Machine: Dell-P370
         Service Machine: Dell-P370
         Provider: 'Microsoft Software Shadow Copy provider 1.0'
         Type: ClientAccessibleWriters
         Attributes: Persistent, Client-accessible, No auto release, Differential, Auto recovered

      Shadow Copy ID: {1a114272-e9f0-40a6-a3ca-31f985b5c373}
         Original Volume: (E:)\\?\Volume{bcbe9edf-e6d1-11de-8e59-806e6f6e6963}\
         Shadow Copy Volume: \\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy4
         Originating Machine: Dell-P370
         Service Machine: Dell-P370
         Provider: 'Microsoft Software Shadow Copy provider 1.0'
         Type: ClientAccessibleWriters
         Attributes: Persistent, Client-accessible, No auto release, Differential, Auto recovered

      Shadow Copy ID: {02b7b622-cf97-48f8-9ecf-f554dd4e4abf}
         Original Volume: (C:)\\?\Volume{bcbe9ee2-e6d1-11de-8e59-806e6f6e6963}\
         Shadow Copy Volume: \\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy7
         Originating Machine: Dell-P370
         Service Machine: Dell-P370
         Provider: 'Microsoft Software Shadow Copy provider 1.0'
         Type: ClientAccessibleWriters
         Attributes: Persistent, Client-accessible, No auto release, Differential, Auto recovered

63
Tweaking.com Support & Help / Re: Registry Backup Beta
« on: May 23, 2012, 04:55:30 pm »
Same failure. It did create new bat files this time though but still got the same failure. Trying to attach a zip file with the two log files in it.

Event Viewer has two errors:

Code: [Select]
Log Name:      Application
Source:        Application Error
Date:          23/05/2012 7:54:02 PM
Event ID:      1005
Task Category: (100)
Level:         Error
Keywords:      Classic
User:          N/A
Computer:      Dell-P370
Description:
Windows cannot access the file  for one of the following reasons: there is a problem with the network connection, the disk that the file is stored on, or the storage drivers installed on this computer; or the disk is missing. Windows closed the program SeaMonkey because of this error.

Program: SeaMonkey
File:

The error value is listed in the Additional Data section.
User Action
1. Open the file again. This situation might be a temporary problem that corrects itself when the program runs again.
2. If the file still cannot be accessed and
- It is on the network, your network administrator should verify that there is not a problem with the network and that the server can be contacted.
- It is on a removable disk, for example, a floppy disk or CD-ROM, verify that the disk is fully inserted into the computer.
3. Check and repair the file system by running CHKDSK. To run CHKDSK, click Start, click Run, type CMD, and then click OK. At the command prompt, type CHKDSK /F, and then press ENTER.
4. If the problem persists, restore the file from a backup copy.
5. Determine whether other files on the same disk can be opened. If not, the disk might be damaged. If it is a hard disk, contact your administrator or computer hardware vendor for further assistance.

Additional Data
Error value: 00000000
Disk type: 0
Event Xml:
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
  <System>
    <Provider Name="Application Error" />
    <EventID Qualifiers="49152">1005</EventID>
    <Level>2</Level>
    <Task>100</Task>
    <Keywords>0x80000000000000</Keywords>
    <TimeCreated SystemTime="2012-05-23T23:54:02.000000000Z" />
    <EventRecordID>69770</EventRecordID>
    <Channel>Application</Channel>
    <Computer>Dell-P370</Computer>
    <Security />
  </System>
  <EventData>
    <Data>
    </Data>
    <Data>SeaMonkey</Data>
    <Data>00000000</Data>
    <Data>0</Data>
  </EventData>
</Event>/code]

[code]Log Name:      Application
Source:        Application Error
Date:          23/05/2012 7:54:02 PM
Event ID:      1000
Task Category: (100)
Level:         Error
Keywords:      Classic
User:          N/A
Computer:      Dell-P370
Description:
Faulting application name: seamonkey.exe, version: 12.0.0.4502, time stamp: 0x4f9d0caa
Faulting module name: unknown, version: 0.0.0.0, time stamp: 0x00000000
Exception code: 0xc000001d
Fault offset: 0x1d16f814
Faulting process id: 0x2f8
Faulting application start time: 0x01cd393a76fea7e6
Faulting application path: C:\Program Files (x86)\SeaMonkey\seamonkey.exe
Faulting module path: unknown
Report Id: 91e5f965-a532-11e1-909c-080027009859
Event Xml:
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
  <System>
    <Provider Name="Application Error" />
    <EventID Qualifiers="0">1000</EventID>
    <Level>2</Level>
    <Task>100</Task>
    <Keywords>0x80000000000000</Keywords>
    <TimeCreated SystemTime="2012-05-23T23:54:02.000000000Z" />
    <EventRecordID>69769</EventRecordID>
    <Channel>Application</Channel>
    <Computer>Dell-P370</Computer>
    <Security />
  </System>
  <EventData>
    <Data>seamonkey.exe</Data>
    <Data>12.0.0.4502</Data>
    <Data>4f9d0caa</Data>
    <Data>unknown</Data>
    <Data>0.0.0.0</Data>
    <Data>00000000</Data>
    <Data>c000001d</Data>
    <Data>1d16f814</Data>
    <Data>2f8</Data>
    <Data>01cd393a76fea7e6</Data>
    <Data>C:\Program Files (x86)\SeaMonkey\seamonkey.exe</Data>
    <Data>unknown</Data>
    <Data>91e5f965-a532-11e1-909c-080027009859</Data>
  </EventData>
</Event>



64
Tweaking.com Support & Help / Re: Registry Backup Beta
« on: May 21, 2012, 07:03:56 pm »
Same failure with 0.9.,67. Log_Backup.txt same. Here is the new Log_VSS.txt:
Code: [Select]
[5/21/2012 - 9:58:25 PM]
--------------------------------------------------------------------------------
Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation.  All rights reserved.

E:\sources\Registry Tools\Registry Backup - tweaking.com>
--------------------------------------------------------------------------------
[5/21/2012 - 9:58:25 PM]
--------------------------------------------------------------------------------
CD /D C:\

C:\>
--------------------------------------------------------------------------------
[5/21/2012 - 9:58:25 PM]
--------------------------------------------------------------------------------
"C:\Windows\temp\vss_start.bat"

C:\>set path=C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files (x86)\Tweaking.com\Registry Backup\files\files

C:\>"C:\Program Files (x86)\Tweaking.com\Registry Backup\files\vss_7_64.exe" -script="C:\Windows\temp\vss-setvar.cmd" -exec="C:\Windows\temp\vss.bat" C:

--------------------------------------------------------------------------------
[5/21/2012 - 9:59:21 PM]
--------------------------------------------------------------------------------

C:\>set path=C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files (x86)\Tweaking.com\Registry Backup\files\files

C:\>call "C:\Windows\temp\vss-setvar.cmd"

[This script is generated by VSHADOW.EXE for the shadow set {719da51b-c324-4f91-a3f3-821449617018}]


C:\>SET SHADOW_SET_ID={719da51b-c324-4f91-a3f3-821449617018}

C:\>SET SHADOW_ID_1={c538846b-31f6-4e96-8f3a-a78c3400bd67}

C:\>SET SHADOW_DEVICE_1=\\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy1

C:\>"C:\Program Files (x86)\Tweaking.com\Registry Backup\files\dosdev.exe" B: \\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy1

--------------------------------------------------------------------------------
[5/21/2012 - 9:59:21 PM]
--------------------------------------------------------------------------------
Current definition: B: = \??\GLOBALROOT\Device\HarddiskVolumeShadowCopy1

C:\>start "" /wait "C:\Program Files (x86)\Tweaking.com\Registry Backup\files\vss_pause.exe"

--------------------------------------------------------------------------------
[5/21/2012 - 9:59:33 PM]
--------------------------------------------------------------------------------

C:\>"C:\Program Files (x86)\Tweaking.com\Registry Backup\files\dosdev.exe" -r -d B:

--------------------------------------------------------------------------------
[5/21/2012 - 9:59:33 PM]
--------------------------------------------------------------------------------
Current definition: B: = \??\GLOBALROOT\Device\HarddiskVolumeShadowCopy1
B: deleted.

--------------------------------------------------------------------------------
[5/21/2012 - 9:59:35 PM]
--------------------------------------------------------------------------------

VSHADOW.EXE 3.0 - Volume Shadow Copy sample client.
Copyright (C) 2005 Microsoft Corporation. All rights reserved.


(Option: Generate SETVAR script 'C:\Windows\temp\vss-setvar.cmd')
(Option: Execute binary/script after shadow creation 'C:\Windows\temp\vss.bat')
(Option: Create shadow copy set)
(Gathering writer metadata...)
(Waiting for the asynchronous operation to finish...)
Initialize writer metadata ...
Discover directly excluded components ...
- Excluding writer 'Shadow Copy Optimization Writer' since it has no selected components for restore.
- Excluding writer 'MSSearch Service Writer' since it has no selected components for restore.
- Excluding writer 'BITS Writer' since it has no selected components for restore.
Discover components that reside outside the shadow set ...
- Component '\BCD\BCD' from writer 'ASR Writer' is excluded from backup (it requires  in the shadow set)
Discover all excluded components ...
Discover excluded writers ...
- The writer 'ASR Writer' is now entirely excluded from the backup:
  (the top-level non-selectable component '\BCD\BCD' is an excluded component)
Discover explicitly included components ...
Verifying explicitly specified writers/components ...
Select explicitly included components ...
 * Writer 'Task Scheduler Writer':
   - Add component \TasksStore
 * Writer 'VSS Metadata Store Writer':
   - Add component \WriterMetadataStore
 * Writer 'Performance Counters Writer':
   - Add component \PerformanceCounters
 * Writer 'System Writer':
   - Add component \System Files
 * Writer 'COM+ REGDB Writer':
   - Add component \COM+ REGDB
 * Writer 'Registry Writer':
   - Add component \Registry
 * Writer 'WMI Writer':
   - Add component \WMI
Creating shadow set {a097f8c6-00a8-421e-9cee-b8124b49c776} ...
- Adding volume \\?\Volume{bcbe9ee2-e6d1-11de-8e59-806e6f6e6963}\ [C:\] to the shadow set...
Preparing for backup ...
(Waiting for the asynchronous operation to finish...)
(Waiting for the asynchronous operation to finish...)
Creating the shadow (DoSnapshotSet) ...
(Waiting for the asynchronous operation to finish...)
(Waiting for the asynchronous operation to finish...)
Shadow copy set succesfully created.

List of created shadow copies:


Querying all shadow copies with the SnapshotSetID {a097f8c6-00a8-421e-9cee-b8124b49c776} ...

* SNAPSHOT ID = {7c264225-468c-440f-8e35-b1f090205238} ...
   - Shadow copy Set: {a097f8c6-00a8-421e-9cee-b8124b49c776}
   - Original count of shadow copies = 1
   - Original Volume name: \\?\Volume{bcbe9ee2-e6d1-11de-8e59-806e6f6e6963}\ [C:\]
   - Creation Time: 5/21/2012 9:59:15 PM
   - Shadow copy device name: \\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy6
   - Originating machine: Dell-P370
   - Service machine: Dell-P370
   - Not Exposed
   - Provider id: {b5946137-7b9f-4925-af80-51abd60b20d5}
   - Attributes:  Auto_Release Differential

Generating the SETVAR script (C:\Windows\temp\vss-setvar.cmd) ...
- Executing command 'C:\Windows\temp\vss.bat' ...
-----------------------------------------------------
-----------------------------------------------------
- Mark all writers as succesfully backed up...
Completing the backup (BackupComplete) ...
(Waiting for the asynchronous operation to finish...)
(Waiting for the asynchronous operation to finish...)

Snapshot creation done.

--------------------------------------------------------------------------------
[5/21/2012 - 9:59:35 PM]
--------------------------------------------------------------------------------

C:\>
--------------------------------------------------------------------------------
[5/21/2012 - 9:59:38 PM]
--------------------------------------------------------------------------------
Closed. No longer reading pipes.
--------------------------------------------------------------------------------

65
Tweaking.com Support & Help / Re: Registry Backup Beta
« on: May 21, 2012, 08:30:59 am »
Rebooted and the scheduled backup under System worked okay. Tried to run it manually and it fails every time. When it fails it is not closing

vss_7_64.exe, vss_pause.exe and vss_start.exe

Here are the logs from the last failed run:

Log_VSS:
Code: [Select]
[5/21/2012 - 11:22:27 AM] Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation.  All rights reserved.

[5/21/2012 - 11:22:27 AM]
C:\Program Files (x86)\Tweaking.com\Registry Backup>CD /D C:\

C:\>
[5/21/2012 - 11:22:27 AM] "C:\Windows\temp\vss_start.bat"

C:\>set path=C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files (x86)\Tweaking.com\Registry Backup\files\files

C:\>"C:\Program Files (x86)\Tweaking.com\Registry Backup\files\vss_7_64.exe" -script="C:\Windows\temp\vss-setvar.cmd" -exec="C:\Windows\temp\vss.bat" C:

[5/21/2012 - 11:23:17 AM]
C:\>set path=C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files (x86)\Tweaking.com\Registry Backup\files\files

C:\>call "C:\Windows\temp\vss-setvar.cmd"

[This script is generated by VSHADOW.EXE for the shadow set {719da51b-c324-4f91-a3f3-821449617018}]

C:\>SET SHADOW_SET_ID={719da51b-c324-4f91-a3f3-821449617018}
C:\>SET SHADOW_ID_1={c538846b-31f6-4e96-8f3a-a78c3400bd67}
C:\>SET SHADOW_DEVICE_1=\\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy1

C:\>"C:\Program Files (x86)\Tweaking.com\Registry Backup\files\dosdev.exe" B: \\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy1

[5/21/2012 - 11:23:18 AM] B:: The operation completed successfully.

C:\>start "" /wait "C:\Program Files (x86)\Tweaking.com\Registry Backup\files\vss_pause.exe"

[5/21/2012 - 11:23:28 AM]
C:\>"C:\Program Files (x86)\Tweaking.com\Registry Backup\files\dosdev.exe" -r -d B:

[5/21/2012 - 11:23:28 AM] B:: The operation completed successfully.

[5/21/2012 - 11:23:30 AM]
VSHADOW.EXE 3.0 - Volume Shadow Copy sample client.
Copyright (C) 2005 Microsoft Corporation. All rights reserved.

(Option: Generate SETVAR script 'C:\Windows\temp\vss-setvar.cmd')
(Option: Execute binary/script after shadow creation 'C:\Windows\temp\vss.bat')
(Option: Create shadow copy set)
(Gathering writer metadata...)
(Waiting for the asynchronous operation to finish...)
Initialize writer metadata ...
Discover directly excluded components ...
- Excluding writer 'BITS Writer' since it has no selected components for restore.
- Excluding writer 'MSSearch Service Writer' since it has no selected components for restore.
- Excluding writer 'Shadow Copy Optimization Writer' since it has no selected components for restore.
Discover components that reside outside the shadow set ...
- Component '\BCD\BCD' from writer 'ASR Writer' is excluded from backup (it requires  in the shadow set)
Discover all excluded components ...
Discover excluded writers ...
- The writer 'ASR Writer' is now entirely excluded from the backup:
  (the top-level non-selectable component '\BCD\BCD' is an excluded component)
Discover explicitly included components ...
Verifying explicitly specified writers/components ...
Select explicitly included components ...
 * Writer 'Task Scheduler Writer':
   - Add component \TasksStore
 * Writer 'VSS Metadata Store Writer':
   - Add component \WriterMetadataStore
 * Writer 'Performance Counters Writer':
   - Add component \PerformanceCounters
 * Writer 'System Writer':
   - Add component \System Files
 * Writer 'WMI Writer':
   - Add component \WMI
 * Writer 'COM+ REGDB Writer':
   - Add component \COM+ REGDB
 * Writer 'Registry Writer':
   - Add component \Registry
Creating shadow set {a80db78c-3807-4599-aff8-7658a13803b0} ...
- Adding volume \\?\Volume{bcbe9ee2-e6d1-11de-8e59-806e6f6e6963}\ [C:\] to the shadow set...
Preparing for backup ...
(Waiting for the asynchronous operation to finish...)
(Waiting for the asynchronous operation to finish...)
Creating the shadow (DoSnapshotSet) ...
(Waiting for the asynchronous operation to finish...)
(Waiting for the asynchronous operation to finish...)
Shadow copy set succesfully created.

List of created shadow copies:

Querying all shadow copies with the SnapshotSetID {a80db78c-3807-4599-aff8-7658a13803b0} ...

* SNAPSHOT ID = {0e373e66-576c-45c8-9084-e777afee5e56} ...
   - Shadow copy Set: {a80db78c-3807-4599-aff8-7658a13803b0}
   - Original count of shadow copies = 1
   - Original Volume name: \\?\Volume{bcbe9ee2-e6d1-11de-8e59-806e6f6e6963}\ [C:\]
   - Creation Time: 5/21/2012 11:23:12 AM
   - Shadow copy device name: \\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy2
   - Originating machine: Dell-P370
   - Service machine: Dell-P370
   - Not Exposed
   - Provider id: {b5946137-7b9f-4925-af80-51abd60b20d5}
   - Attributes:  Auto_Release Differential

Generating the SETVAR script (C:\Windows\temp\vss-setvar.cmd) ...
- Executing command 'C:\Windows\temp\vss.bat' ...
-----------------------------------------------------
-----------------------------------------------------
- Mark all writers as succesfully backed up...
Completing the backup (BackupComplete) ...
(Waiting for the asynchronous operation to finish...)
(Waiting for the asynchronous operation to finish...)

Snapshot creation done.

[5/21/2012 - 11:23:30 AM]
C:\>
[5/21/2012 - 11:23:33 AM] Closed. No longer reading pipes.
[5/21/2012 - 11:23:33 AM] Error: 402 - Not processing a command to cancel.
[5/21/2012 - 11:23:33 AM] Error: 402 - Not processing a command to cancel.

Log_Backup:
Code: [Select]
[5/21/2012 - 11:22:26 AM] Waiting for Volume Shadow Copy snapshot...

[5/21/2012 - 11:23:18 AM] Auto Delete Old Backups Enabled, Working...
[5/21/2012 - 11:23:18 AM] --------------------------------------------------------------------------------
[5/21/2012 - 11:23:18 AM] --------------------------------------------------------------------------------

[5/21/2012 - 11:23:18 AM] Starting Backup...

[5/21/2012 - 11:23:18 AM] Backup Location: D:\Registry Backup\

[5/21/2012 - 11:23:18 AM] Files To Backup:
[5/21/2012 - 11:23:18 AM] --------------------------------------------------------------------------------
[5/21/2012 - 11:23:18 AM] C:\Windows\System32\Config\default
[5/21/2012 - 11:23:18 AM] C:\Windows\System32\Config\sam
[5/21/2012 - 11:23:18 AM] C:\Windows\System32\Config\security
[5/21/2012 - 11:23:18 AM] C:\Windows\System32\Config\software
[5/21/2012 - 11:23:18 AM] C:\Windows\System32\Config\system
[5/21/2012 - 11:23:18 AM] C:\Users\Administrator\AppData\Local\Microsoft\Windows\UsrClass.dat
[5/21/2012 - 11:23:18 AM] C:\Users\Administrator\ntuser.dat
[5/21/2012 - 11:23:18 AM] C:\Users\Default\ntuser.dat
[5/21/2012 - 11:23:18 AM] C:\Users\Guest\AppData\Local\Microsoft\Windows\UsrClass.dat
[5/21/2012 - 11:23:18 AM] C:\Users\Guest\ntuser.dat
[5/21/2012 - 11:23:18 AM] C:\Users\rrkurtz\AppData\Local\Microsoft\Windows\UsrClass.dat
[5/21/2012 - 11:23:18 AM] C:\Users\rrkurtz\ntuser.dat
[5/21/2012 - 11:23:18 AM] C:\Users\UpdatusUser\AppData\Local\Microsoft\Windows\UsrClass.dat
[5/21/2012 - 11:23:18 AM] C:\Users\UpdatusUser\ntuser.dat
[5/21/2012 - 11:23:18 AM] C:\Windows\ServiceProfiles\LocalService\ntuser.dat
[5/21/2012 - 11:23:18 AM] C:\Windows\ServiceProfiles\NetworkService\ntuser.dat
[5/21/2012 - 11:23:18 AM] --------------------------------------------------------------------------------

[5/21/2012 - 11:23:19 AM] Backing Up Files...:
[5/21/2012 - 11:23:19 AM] --------------------------------------------------------------------------------
[5/21/2012 - 11:23:19 AM] Backing Up File: C:\Windows\System32\Config\default
[5/21/2012 - 11:23:19 AM] Result: Failed - Error: Couldn't find the file on the volume snapshot.

[5/21/2012 - 11:23:19 AM] Backing Up File: C:\Windows\System32\Config\sam
[5/21/2012 - 11:23:19 AM] Result: Failed - Error: Couldn't find the file on the volume snapshot.

[5/21/2012 - 11:23:19 AM] Backing Up File: C:\Windows\System32\Config\security
[5/21/2012 - 11:23:19 AM] Result: Failed - Error: Couldn't find the file on the volume snapshot.

[5/21/2012 - 11:23:19 AM] Backing Up File: C:\Windows\System32\Config\software
[5/21/2012 - 11:23:19 AM] Result: Failed - Error: Couldn't find the file on the volume snapshot.

[5/21/2012 - 11:23:19 AM] Backing Up File: C:\Windows\System32\Config\system
[5/21/2012 - 11:23:19 AM] Result: Failed - Error: Couldn't find the file on the volume snapshot.

[5/21/2012 - 11:23:19 AM] Backing Up File: C:\Users\Administrator\AppData\Local\Microsoft\Windows\UsrClass.dat
[5/21/2012 - 11:23:19 AM] Result: Failed - Error: Couldn't find the file on the volume snapshot.

[5/21/2012 - 11:23:19 AM] Backing Up File: C:\Users\Administrator\ntuser.dat
[5/21/2012 - 11:23:19 AM] Result: Failed - Error: Couldn't find the file on the volume snapshot.

[5/21/2012 - 11:23:19 AM] Backing Up File: C:\Users\Default\ntuser.dat
[5/21/2012 - 11:23:19 AM] Result: Failed - Error: Couldn't find the file on the volume snapshot.

[5/21/2012 - 11:23:19 AM] Backing Up File: C:\Users\Guest\AppData\Local\Microsoft\Windows\UsrClass.dat
[5/21/2012 - 11:23:19 AM] Result: Failed - Error: Couldn't find the file on the volume snapshot.

[5/21/2012 - 11:23:19 AM] Backing Up File: C:\Users\Guest\ntuser.dat
[5/21/2012 - 11:23:19 AM] Result: Failed - Error: Couldn't find the file on the volume snapshot.

[5/21/2012 - 11:23:19 AM] Backing Up File: C:\Users\rrkurtz\AppData\Local\Microsoft\Windows\UsrClass.dat
[5/21/2012 - 11:23:19 AM] Result: Failed - Error: Couldn't find the file on the volume snapshot.

[5/21/2012 - 11:23:19 AM] Backing Up File: C:\Users\rrkurtz\ntuser.dat
[5/21/2012 - 11:23:19 AM] Result: Failed - Error: Couldn't find the file on the volume snapshot.

[5/21/2012 - 11:23:19 AM] Backing Up File: C:\Users\UpdatusUser\AppData\Local\Microsoft\Windows\UsrClass.dat
[5/21/2012 - 11:23:19 AM] Result: Failed - Error: Couldn't find the file on the volume snapshot.

[5/21/2012 - 11:23:19 AM] Backing Up File: C:\Users\UpdatusUser\ntuser.dat
[5/21/2012 - 11:23:19 AM] Result: Failed - Error: Couldn't find the file on the volume snapshot.

[5/21/2012 - 11:23:19 AM] Backing Up File: C:\Windows\ServiceProfiles\LocalService\ntuser.dat
[5/21/2012 - 11:23:19 AM] Result: Failed - Error: Couldn't find the file on the volume snapshot.

[5/21/2012 - 11:23:19 AM] Backing Up File: C:\Windows\ServiceProfiles\NetworkService\ntuser.dat
[5/21/2012 - 11:23:19 AM] Result: Failed - Error: Couldn't find the file on the volume snapshot.

[5/21/2012 - 11:23:19 AM] --------------------------------------------------------------------------------

Is theere anything else I can provide?

66
Tweaking.com Support & Help / Re: Registry Backup Beta
« on: May 21, 2012, 08:16:52 am »
Installed 0.9.5. It failed same as before when I tried to run it under my account. It also then failed under System.

I looked at TaskManager and it looks like you are not closing the VSS tasks when an error occurs so subsequent runs won't work until you exit the program then start it again. Not sure if this is intentional or not.



I tried looking at B:\Windows as you mentioned since vss_pause.exe was running, but it doesn't exist.

Just tried using System from a fresh start of the program but it fails the same as before. This is hte error in Log_Backup.txt:

[5/21/2012 - 11:15:08 AM] Backing Up Files...:
[5/21/2012 - 11:15:08 AM] --------------------------------------------------------------------------------
[5/21/2012 - 11:15:08 AM] Backing Up File: C:\Windows\System32\Config\default
[5/21/2012 - 11:15:08 AM] Result: Failed - Error: Couldn't find the file on the volume snapshot.



67
Tweaking.com Support & Help / Re: Registry Backup Beta
« on: May 21, 2012, 07:57:10 am »
One other suggestion. Change the name of the download files to include the version, like

tweaking.com_registry_backup_setup.exe ==> tweaking.com_registry_backup_setup_0.9.5.exe

Makes it easier to keep track of what I have.

I'd also like to follow-up on the question Tomas_Sweden raised (though I can't find it now, odd). How do I restore the registry if I can't boot in normal or Safe mode? With ERUNT, I can boot the Recovery Console and run the ERDNT.EXE I want from there. This doesn't seem possible with Registry Backup.

68
Tweaking.com Support & Help / Re: Registry Backup Beta
« on: May 21, 2012, 07:51:15 am »
I'll try installing 0.9.5 over 0.9.4 and see what happens.

At the end of Log_VSS.txt, I see this.

C:\>
[10:33:39 AM] Closed. No longer reading pipes.
[10:33:39 AM] Error: 402 - Not processing a command to cancel.
[10:33:39 AM] Error: 402 - Not processing a command to cancel.


Don't know if the 402 error is a problem or not.

I would like to see the Log.VSS.txt file also written to the backup directory instead of the program directory.

69
Tweaking.com Support & Help / Re: Registry Backup Beta
« on: May 20, 2012, 07:18:27 pm »
Uninstalled, deleted D:\Registry Backup, rebooted, reinstall 0.9.4.

It now works when I run it manually from the GUI so there must have been some left over stuff in the install directory or backup directory that was causing the problem.

Deleted and created a new task to run under my account and it failed. This is the Task Scheduler history:
Code: [Select]
Error 5/20/2012 10:01:21 PM 101 Task Start Failed Launch Failure
Information 5/20/2012 10:01:21 PM 118 Task triggered by computer startup Info 352b665c-53c1-4b3b-95ea-54ea1e1eccc3
Information 5/20/2012 9:59:29 PM 140 Task registration updated Info
Information 5/20/2012 9:58:36 PM 140 Task registration updated Info
Error 5/20/2012 9:50:30 PM 103 Action start failed Run Failure a470fc7c-ccc8-4a91-acd8-f2acdc42deb7
Error 5/20/2012 9:50:30 PM 203 Action failed to start Launch Failure a470fc7c-ccc8-4a91-acd8-f2acdc42deb7
Information 5/20/2012 9:50:30 PM 200 Action started (1) a470fc7c-ccc8-4a91-acd8-f2acdc42deb7
Information 5/20/2012 9:50:30 PM 100 Task Started (1) a470fc7c-ccc8-4a91-acd8-f2acdc42deb7
Information 5/20/2012 9:50:29 PM 319 Task Engine received message to start task (1)
Information 5/20/2012 9:50:29 PM 118 Task triggered by computer startup Info a470fc7c-ccc8-4a91-acd8-f2acdc42deb7

Deleted and recreated the task setting it to run under System and rebooted and it worked correctly.
Reg_Backup.txt:
Code: [Select]
[5/20/2012 - 10:11:42 PM] C:\Windows\System32\Config\default
[5/20/2012 - 10:11:42 PM] C:\Windows\System32\Config\sam
[5/20/2012 - 10:11:42 PM] C:\Windows\System32\Config\security
[5/20/2012 - 10:11:42 PM] C:\Windows\System32\Config\software
[5/20/2012 - 10:11:42 PM] C:\Windows\System32\Config\system
[5/20/2012 - 10:11:42 PM] C:\Users\Administrator\AppData\Local\Microsoft\Windows\UsrClass.dat
[5/20/2012 - 10:11:42 PM] C:\Users\Administrator\ntuser.dat
[5/20/2012 - 10:11:42 PM] C:\Users\Default\ntuser.dat
[5/20/2012 - 10:11:42 PM] C:\Users\Guest\AppData\Local\Microsoft\Windows\UsrClass.dat
[5/20/2012 - 10:11:42 PM] C:\Users\Guest\ntuser.dat
[5/20/2012 - 10:11:42 PM] C:\Users\rrkurtz\AppData\Local\Microsoft\Windows\UsrClass.dat
[5/20/2012 - 10:11:42 PM] C:\Users\rrkurtz\ntuser.dat
[5/20/2012 - 10:11:42 PM] C:\Users\UpdatusUser\AppData\Local\Microsoft\Windows\UsrClass.dat
[5/20/2012 - 10:11:42 PM] C:\Users\UpdatusUser\ntuser.dat
[5/20/2012 - 10:11:42 PM] C:\Windows\ServiceProfiles\LocalService\ntuser.dat
[5/20/2012 - 10:11:42 PM] C:\Windows\ServiceProfiles\NetworkService\ntuser.dat
[5/20/2012 - 10:11:42 PM] --------------------------------------------------------------------------------
[5/20/2012 - 10:11:42 PM]
[5/20/2012 - 10:11:42 PM] Backing Up Files...:
[5/20/2012 - 10:11:42 PM] --------------------------------------------------------------------------------
[5/20/2012 - 10:11:42 PM] Backing Up File: C:\Windows\System32\Config\default
[5/20/2012 - 10:11:43 PM] Result: Successful - D:\Registry Backup\DELL-P370\5.20.2012_10.10.52-PM\C\Windows\System32\Config\default
[5/20/2012 - 10:11:43 PM]
[5/20/2012 - 10:11:43 PM] Backing Up File: C:\Windows\System32\Config\sam
[5/20/2012 - 10:11:43 PM] Result: Successful - D:\Registry Backup\DELL-P370\5.20.2012_10.10.52-PM\C\Windows\System32\Config\sam
[5/20/2012 - 10:11:43 PM]
[5/20/2012 - 10:11:43 PM] Backing Up File: C:\Windows\System32\Config\security
[5/20/2012 - 10:11:43 PM] Result: Successful - D:\Registry Backup\DELL-P370\5.20.2012_10.10.52-PM\C\Windows\System32\Config\security
[5/20/2012 - 10:11:43 PM]
[5/20/2012 - 10:11:43 PM] Backing Up File: C:\Windows\System32\Config\software
[5/20/2012 - 10:11:45 PM] Result: Successful - D:\Registry Backup\DELL-P370\5.20.2012_10.10.52-PM\C\Windows\System32\Config\software
[5/20/2012 - 10:11:45 PM]
[5/20/2012 - 10:11:45 PM] Backing Up File: C:\Windows\System32\Config\system
[5/20/2012 - 10:11:45 PM] Result: Successful - D:\Registry Backup\DELL-P370\5.20.2012_10.10.52-PM\C\Windows\System32\Config\system
[5/20/2012 - 10:11:45 PM]
[5/20/2012 - 10:11:45 PM] Backing Up File: C:\Users\Administrator\AppData\Local\Microsoft\Windows\UsrClass.dat
[5/20/2012 - 10:11:46 PM] Result: Successful - D:\Registry Backup\DELL-P370\5.20.2012_10.10.52-PM\C\Users\Administrator\AppData\Local\Microsoft\Windows\UsrClass.dat
[5/20/2012 - 10:11:46 PM]
[5/20/2012 - 10:11:46 PM] Backing Up File: C:\Users\Administrator\ntuser.dat
[5/20/2012 - 10:11:46 PM] Result: Successful - D:\Registry Backup\DELL-P370\5.20.2012_10.10.52-PM\C\Users\Administrator\ntuser.dat
[5/20/2012 - 10:11:46 PM]
[5/20/2012 - 10:11:46 PM] Backing Up File: C:\Users\Default\ntuser.dat
[5/20/2012 - 10:11:46 PM] Result: Successful - D:\Registry Backup\DELL-P370\5.20.2012_10.10.52-PM\C\Users\Default\ntuser.dat
[5/20/2012 - 10:11:46 PM]
[5/20/2012 - 10:11:46 PM] Backing Up File: C:\Users\Guest\AppData\Local\Microsoft\Windows\UsrClass.dat
[5/20/2012 - 10:11:46 PM] Result: Successful - D:\Registry Backup\DELL-P370\5.20.2012_10.10.52-PM\C\Users\Guest\AppData\Local\Microsoft\Windows\UsrClass.dat
[5/20/2012 - 10:11:46 PM]
[5/20/2012 - 10:11:46 PM] Backing Up File: C:\Users\Guest\ntuser.dat
[5/20/2012 - 10:11:46 PM] Result: Successful - D:\Registry Backup\DELL-P370\5.20.2012_10.10.52-PM\C\Users\Guest\ntuser.dat
[5/20/2012 - 10:11:46 PM]
[5/20/2012 - 10:11:46 PM] Backing Up File: C:\Users\rrkurtz\AppData\Local\Microsoft\Windows\UsrClass.dat
[5/20/2012 - 10:11:46 PM] Result: Successful - D:\Registry Backup\DELL-P370\5.20.2012_10.10.52-PM\C\Users\rrkurtz\AppData\Local\Microsoft\Windows\UsrClass.dat
[5/20/2012 - 10:11:46 PM]
[5/20/2012 - 10:11:46 PM] Backing Up File: C:\Users\rrkurtz\ntuser.dat
[5/20/2012 - 10:11:47 PM] Result: Successful - D:\Registry Backup\DELL-P370\5.20.2012_10.10.52-PM\C\Users\rrkurtz\ntuser.dat
[5/20/2012 - 10:11:47 PM]
[5/20/2012 - 10:11:47 PM] Backing Up File: C:\Users\UpdatusUser\AppData\Local\Microsoft\Windows\UsrClass.dat
[5/20/2012 - 10:11:47 PM] Result: Successful - D:\Registry Backup\DELL-P370\5.20.2012_10.10.52-PM\C\Users\UpdatusUser\AppData\Local\Microsoft\Windows\UsrClass.dat
[5/20/2012 - 10:11:47 PM]
[5/20/2012 - 10:11:47 PM] Backing Up File: C:\Users\UpdatusUser\ntuser.dat
[5/20/2012 - 10:11:47 PM] Result: Successful - D:\Registry Backup\DELL-P370\5.20.2012_10.10.52-PM\C\Users\UpdatusUser\ntuser.dat
[5/20/2012 - 10:11:47 PM]
[5/20/2012 - 10:11:47 PM] Backing Up File: C:\Windows\ServiceProfiles\LocalService\ntuser.dat
[5/20/2012 - 10:11:47 PM] Result: Successful - D:\Registry Backup\DELL-P370\5.20.2012_10.10.52-PM\C\Windows\ServiceProfiles\LocalService\ntuser.dat
[5/20/2012 - 10:11:47 PM]
[5/20/2012 - 10:11:47 PM] Backing Up File: C:\Windows\ServiceProfiles\NetworkService\ntuser.dat
[5/20/2012 - 10:11:47 PM] Result: Successful - D:\Registry Backup\DELL-P370\5.20.2012_10.10.52-PM\C\Windows\ServiceProfiles\NetworkService\ntuser.dat
[5/20/2012 - 10:11:47 PM]
[5/20/2012 - 10:11:47 PM] --------------------------------------------------------------------------------
[5/20/2012 - 10:11:47 PM]

If there is any more info I can provide please let me know.


70
Tweaking.com Support & Help / Re: Registry Backup Beta
« on: May 20, 2012, 06:41:57 pm »
Same failure but the log has useful info in it now:

Log_Backup.txt:
Code: [Select]
[5/20/2012 - 9:38:19 PM] C:\Windows\System32\Config\default
[5/20/2012 - 9:38:19 PM] C:\Windows\System32\Config\sam
[5/20/2012 - 9:38:19 PM] C:\Windows\System32\Config\security
[5/20/2012 - 9:38:19 PM] C:\Windows\System32\Config\software
[5/20/2012 - 9:38:19 PM] C:\Windows\System32\Config\system
[5/20/2012 - 9:38:19 PM] C:\Users\Administrator\AppData\Local\Microsoft\Windows\UsrClass.dat
[5/20/2012 - 9:38:19 PM] C:\Users\Administrator\ntuser.dat
[5/20/2012 - 9:38:19 PM] C:\Users\Default\ntuser.dat
[5/20/2012 - 9:38:19 PM] C:\Users\Guest\AppData\Local\Microsoft\Windows\UsrClass.dat
[5/20/2012 - 9:38:19 PM] C:\Users\Guest\ntuser.dat
[5/20/2012 - 9:38:19 PM] C:\Users\rrkurtz\AppData\Local\Microsoft\Windows\UsrClass.dat
[5/20/2012 - 9:38:19 PM] C:\Users\rrkurtz\ntuser.dat
[5/20/2012 - 9:38:19 PM] C:\Users\UpdatusUser\AppData\Local\Microsoft\Windows\UsrClass.dat
[5/20/2012 - 9:38:19 PM] C:\Users\UpdatusUser\ntuser.dat
[5/20/2012 - 9:38:19 PM] C:\Windows\ServiceProfiles\LocalService\ntuser.dat
[5/20/2012 - 9:38:19 PM] C:\Windows\ServiceProfiles\NetworkService\ntuser.dat
[5/20/2012 - 9:38:19 PM] --------------------------------------------------------------------------------
[5/20/2012 - 9:38:19 PM]
[5/20/2012 - 9:38:20 PM] Backing Up Files...:
[5/20/2012 - 9:38:20 PM] --------------------------------------------------------------------------------
[5/20/2012 - 9:38:20 PM] Backing Up File: C:\Windows\System32\Config\default
[5/20/2012 - 9:38:20 PM] Result: Failed - Error: 3: The system cannot find the path specified.
                                                                                                                                                           
[5/20/2012 - 9:38:20 PM]
[5/20/2012 - 9:38:20 PM] Backing Up File: C:\Windows\System32\Config\sam
[5/20/2012 - 9:38:20 PM] Result: Failed - Error: 3: The system cannot find the path specified.
                                                                                                                                                           
[5/20/2012 - 9:38:20 PM]
[5/20/2012 - 9:38:20 PM] Backing Up File: C:\Windows\System32\Config\security
[5/20/2012 - 9:38:20 PM] Result: Failed - Error: 3: The system cannot find the path specified.
                                                                                                                                                           
[5/20/2012 - 9:38:20 PM]
[5/20/2012 - 9:38:20 PM] Backing Up File: C:\Windows\System32\Config\software
[5/20/2012 - 9:38:20 PM] Result: Failed - Error: 3: The system cannot find the path specified.
                                                                                                                                                           
[5/20/2012 - 9:38:20 PM]
[5/20/2012 - 9:38:20 PM] Backing Up File: C:\Windows\System32\Config\system
[5/20/2012 - 9:38:20 PM] Result: Failed - Error: 3: The system cannot find the path specified.
                                                                                                                                                           
[5/20/2012 - 9:38:20 PM]
[5/20/2012 - 9:38:20 PM] Backing Up File: C:\Users\Administrator\AppData\Local\Microsoft\Windows\UsrClass.dat
[5/20/2012 - 9:38:20 PM] Result: Failed - Error: 3: The system cannot find the path specified.
                                                                                                                                                           
[5/20/2012 - 9:38:20 PM]
[5/20/2012 - 9:38:20 PM] Backing Up File: C:\Users\Administrator\ntuser.dat
[5/20/2012 - 9:38:20 PM] Result: Failed - Error: 3: The system cannot find the path specified.
                                                                                                                                                           
[5/20/2012 - 9:38:20 PM]
[5/20/2012 - 9:38:20 PM] Backing Up File: C:\Users\Default\ntuser.dat
[5/20/2012 - 9:38:20 PM] Result: Failed - Error: 3: The system cannot find the path specified.
                                                                                                                                                           
[5/20/2012 - 9:38:20 PM]
[5/20/2012 - 9:38:20 PM] Backing Up File: C:\Users\Guest\AppData\Local\Microsoft\Windows\UsrClass.dat
[5/20/2012 - 9:38:20 PM] Result: Failed - Error: 3: The system cannot find the path specified.
                                                                                                                                                           
[5/20/2012 - 9:38:20 PM]
[5/20/2012 - 9:38:20 PM] Backing Up File: C:\Users\Guest\ntuser.dat
[5/20/2012 - 9:38:20 PM] Result: Failed - Error: 3: The system cannot find the path specified.
                                                                                                                                                           
[5/20/2012 - 9:38:20 PM]
[5/20/2012 - 9:38:20 PM] Backing Up File: C:\Users\rrkurtz\AppData\Local\Microsoft\Windows\UsrClass.dat
[5/20/2012 - 9:38:20 PM] Result: Failed - Error: 3: The system cannot find the path specified.
                                                                                                                                                           
[5/20/2012 - 9:38:20 PM]
[5/20/2012 - 9:38:20 PM] Backing Up File: C:\Users\rrkurtz\ntuser.dat
[5/20/2012 - 9:38:20 PM] Result: Failed - Error: 3: The system cannot find the path specified.
                                                                                                                                                           
[5/20/2012 - 9:38:20 PM]
[5/20/2012 - 9:38:20 PM] Backing Up File: C:\Users\UpdatusUser\AppData\Local\Microsoft\Windows\UsrClass.dat
[5/20/2012 - 9:38:20 PM] Result: Failed - Error: 3: The system cannot find the path specified.
                                                                                                                                                           
[5/20/2012 - 9:38:20 PM]
[5/20/2012 - 9:38:20 PM] Backing Up File: C:\Users\UpdatusUser\ntuser.dat
[5/20/2012 - 9:38:20 PM] Result: Failed - Error: 3: The system cannot find the path specified.
                                                                                                                                                           
[5/20/2012 - 9:38:20 PM]
[5/20/2012 - 9:38:20 PM] Backing Up File: C:\Windows\ServiceProfiles\LocalService\ntuser.dat
[5/20/2012 - 9:38:20 PM] Result: Failed - Error: 3: The system cannot find the path specified.
                                                                                                                                                           
[5/20/2012 - 9:38:20 PM]
[5/20/2012 - 9:38:20 PM] Backing Up File: C:\Windows\ServiceProfiles\NetworkService\ntuser.dat
[5/20/2012 - 9:38:20 PM] Result: Failed - Error: 3: The system cannot find the path specified.
                                                                                                                                                           
[5/20/2012 - 9:38:20 PM]
[5/20/2012 - 9:38:20 PM] --------------------------------------------------------------------------------
[5/20/2012 - 9:38:20 PM]

Log_VSS.txt is still in the program directory though:
Code: [Select]
Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation.  All rights reserved.

E:\sources\Registry Tools\Registry Backup - tweaking.com>
CD /D C:\

C:\>
"C:\Windows\temp\vss_start.bat"

[This script is generated by VSHADOW.EXE for the shadow set {918d3385-d5a3-4faf-846f-051f3f7d3263}]

B:: The operation completed successfully.


71
Tweaking.com Support & Help / Re: Registry Backup Beta
« on: May 20, 2012, 11:19:42 am »
Thanks Shane. I like the idea of keeping the log files with the snapshot.

Edit: I just checked and nothing under D:\Registry Backup\DELL-P370\5.20.2012_1.55.04-PM\C was created, neither under Users or Windows. The folder structure is there but no data.

Edit #2: I ran the above under my account. Just tried it under System and get the same failure.

72
Tweaking.com Support & Help / Re: Registry Backup Beta
« on: May 20, 2012, 11:03:01 am »
Installed 0.9.3 and it says it failed.



Here are the log files:

Log_Backup.txt:

Code: [Select]
Waiting for Volume Shadow Copy...

Auto Delete Old Backups Enabled, Working...
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Starting Backup...
Backup Location: D:\Registry Backup\
Files To Backup:
--------------------------------------------------------------------------------
C:\Windows\System32\Config\default
C:\Windows\System32\Config\sam
C:\Windows\System32\Config\security
C:\Windows\System32\Config\software
C:\Windows\System32\Config\system
C:\Users\Administrator\AppData\Local\Microsoft\Windows\UsrClass.dat
C:\Users\Administrator\ntuser.dat
C:\Users\Default\ntuser.dat
C:\Users\Guest\AppData\Local\Microsoft\Windows\UsrClass.dat
C:\Users\Guest\ntuser.dat
C:\Users\rrkurtz\AppData\Local\Microsoft\Windows\UsrClass.dat
C:\Users\rrkurtz\ntuser.dat
C:\Users\UpdatusUser\AppData\Local\Microsoft\Windows\UsrClass.dat
C:\Users\UpdatusUser\ntuser.dat
C:\Windows\ServiceProfiles\LocalService\ntuser.dat
C:\Windows\ServiceProfiles\NetworkService\ntuser.dat
--------------------------------------------------------------------------------

Backing Up Files...:
--------------------------------------------------------------------------------
Backing Up File: C:\Windows\System32\Config\default
Result: Failed - Error: 0: The operation completed successfully.
                                                                                                                                                                 
Backing Up File: C:\Windows\System32\Config\sam
Result: Failed - Error: 0: The operation completed successfully.
                                                                                                                                                                 
Backing Up File: C:\Windows\System32\Config\security
Result: Failed - Error: 0: The operation completed successfully.
                                                                                                                                                                 
Backing Up File: C:\Windows\System32\Config\software
Result: Failed - Error: 0: The operation completed successfully.
                                                                                                                                                                 
Backing Up File: C:\Windows\System32\Config\system
Result: Failed - Error: 0: The operation completed successfully.                                                                                                                                                         

Backing Up File: C:\Users\Administrator\AppData\Local\Microsoft\Windows\UsrClass.dat
Result: Failed - Error: 0: The operation completed successfully.                                                                                                                                                               

Backing Up File: C:\Users\Administrator\ntuser.dat
Result: Failed - Error: 0: The operation completed successfully.                                                                                                                                                               

Backing Up File: C:\Users\Default\ntuser.dat
Result: Failed - Error: 0: The operation completed successfully.                                                                                                                                                         

Backing Up File: C:\Users\Guest\AppData\Local\Microsoft\Windows\UsrClass.dat
Result: Failed - Error: 0: The operation completed successfully.                                                                                                                                                               

Backing Up File: C:\Users\Guest\ntuser.dat
Result: Failed - Error: 0: The operation completed successfully.

Backing Up File: C:\Users\rrkurtz\AppData\Local\Microsoft\Windows\UsrClass.dat
Result: Failed - Error: 0: The operation completed successfully.

Backing Up File: C:\Users\rrkurtz\ntuser.dat
Result: Failed - Error: 0: The operation completed successfully.
 
Backing Up File: C:\Users\UpdatusUser\AppData\Local\Microsoft\Windows\UsrClass.dat
Result: Failed - Error: 0: The operation completed successfully.

Backing Up File: C:\Users\UpdatusUser\ntuser.dat
Result: Failed - Error: 0: The operation completed successfully.

Backing Up File: C:\Windows\ServiceProfiles\LocalService\ntuser.dat
Result: Failed - Error: 0: The operation completed successfully.
 
Backing Up File: C:\Windows\ServiceProfiles\NetworkService\ntuser.dat
Result: Failed - Error: 0: The operation completed successfully.
--------------------------------------------------------------------------------

Log_VSS.txt:
Code: [Select]
Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation.  All rights reserved.

E:\sources\Registry Tools\Registry Backup - tweaking.com>
CD /D C:\

C:\>"C:\Program Files (x86)\Tweaking.com\Registry Backup\files\vss_7_64.exe" -da

VSHADOW.EXE 3.0 - Volume Shadow Copy sample client.
Copyright (C) 2005 Microsoft Corporation. All rights reserved.

(Option: Delete all shadow copies)
This will delete all shadow copies in the system. Are you sure? [Y/N]

- Setting the VSS context to: 0xffffffff
- Deleting shadow copy {7308fad1-040b-4fd1-b045-516c71c8f33d} on \\?\Volume{bcbe9ede-e6d1-11de-8e59-806e6f6e6963}\ from provider {b5946137-7b9f-4925-af80-51abd60b20d5} [0x0042000d]...
- Deleting shadow copy {f2dd77a7-2e20-4c01-a028-4ec6f8190164} on \\?\Volume{bcbe9edf-e6d1-11de-8e59-806e6f6e6963}\ from provider {b5946137-7b9f-4925-af80-51abd60b20d5} [0x0042000d]...
- Deleting shadow copy {03e34211-4705-40df-81f1-9328873b9e70} on \\?\Volume{bcbe9ee2-e6d1-11de-8e59-806e6f6e6963}\ from provider {b5946137-7b9f-4925-af80-51abd60b20d5} [0x0042000d]...

C:\>"C:\Windows\temp\vss_start.bat"

[This script is generated by VSHADOW.EXE for the shadow set {918d3385-d5a3-4faf-846f-051f3f7d3263}]

B:: The operation completed successfully.

B:: The operation completed successfully.


VSHADOW.EXE 3.0 - Volume Shadow Copy sample client.
Copyright (C) 2005 Microsoft Corporation. All rights reserved.

(Option: Generate SETVAR script 'C:\Windows\temp\vss-setvar.cmd')
(Option: Execute binary/script after shadow creation 'C:\Windows\temp\vss.bat')
(Option: Create shadow copy set)
(Gathering writer metadata...)
(Waiting for the asynchronous operation to finish...)
Initialize writer metadata ...
Discover directly excluded components ...
- Excluding writer 'BITS Writer' since it has no selected components for restore.
- Excluding writer 'MSSearch Service Writer' since it has no selected components for restore.
- Excluding writer 'Shadow Copy Optimization Writer' since it has no selected components for restore.
Discover components that reside outside the shadow set ...
- Component '\BCD\BCD' from writer 'ASR Writer' is excluded from backup (it requires  in the shadow set)
Discover all excluded components ...
Discover excluded writers ...
- The writer 'ASR Writer' is now entirely excluded from the backup:
  (the top-level non-selectable component '\BCD\BCD' is an excluded component)
Discover explicitly included components ...
Verifying explicitly specified writers/components ...
Select explicitly included components ...
 * Writer 'Task Scheduler Writer':
   - Add component \TasksStore
 * Writer 'VSS Metadata Store Writer':
   - Add component \WriterMetadataStore
 * Writer 'Performance Counters Writer':
   - Add component \PerformanceCounters
 * Writer 'System Writer':
   - Add component \System Files
 * Writer 'COM+ REGDB Writer':
   - Add component \COM+ REGDB
 * Writer 'WMI Writer':
   - Add component \WMI
 * Writer 'Registry Writer':
   - Add component \Registry
Creating shadow set {eeb3c839-bd43-4f54-8d2a-dd8300af379e} ...
- Adding volume \\?\Volume{bcbe9ee2-e6d1-11de-8e59-806e6f6e6963}\ [C:\] to the shadow set...
Preparing for backup ...
(Waiting for the asynchronous operation to finish...)
(Waiting for the asynchronous operation to finish...)
Creating the shadow (DoSnapshotSet) ...
(Waiting for the asynchronous operation to finish...)
(Waiting for the asynchronous operation to finish...)
Shadow copy set succesfully created.

List of created shadow copies:

Querying all shadow copies with the SnapshotSetID {eeb3c839-bd43-4f54-8d2a-dd8300af379e} ...

* SNAPSHOT ID = {e00067a4-dc2d-45dd-a8b3-d6d714edaeca} ...
   - Shadow copy Set: {eeb3c839-bd43-4f54-8d2a-dd8300af379e}
   - Original count of shadow copies = 1
   - Original Volume name: \\?\Volume{bcbe9ee2-e6d1-11de-8e59-806e6f6e6963}\ [C:\]
   - Creation Time: 5/20/2012 1:54:57 PM
   - Shadow copy device name: \\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy5
   - Originating machine: Dell-P370
   - Service machine: Dell-P370
   - Not Exposed
   - Provider id: {b5946137-7b9f-4925-af80-51abd60b20d5}
   - Attributes:  Auto_Release Differential

Generating the SETVAR script (C:\Windows\temp\vss-setvar.cmd) ...
- Executing command 'C:\Windows\temp\vss.bat' ...
-----------------------------------------------------
-----------------------------------------------------
- Mark all writers as succesfully backed up...
Completing the backup (BackupComplete) ...
(Waiting for the asynchronous operation to finish...)
(Waiting for the asynchronous operation to finish...)

Snapshot creation done.

C:\>
[1:57:47 PM] Closed. No longer reading pipes.
[1:57:47 PM] Error: 402 - Not processing a command to cancel.
[1:57:47 PM] Error: 402 - Not processing a command to cancel.

73
Tweaking.com Support & Help / Re: Registry Backup Beta
« on: May 20, 2012, 10:49:43 am »
Yes, I also have UAC turned off.

This is going to be a large post sorry, but I will include the Log_VSS.txt and Log_Backup.txt files. The Log_VSS.txt concerns me. I hope it is not doing what it says it's doing and actually deleting all shadow copies in the system. ShadowExplorer shows my shadow copy data is still there so this must mean only the Registry Backup data, right?????

Here are the log files. Note that 11:44PM is when I shut down last night so that's when everything magically appeared. All the files must have still been open so were not visible. Might want to explicitly close them when the backup is done.


Log_VSS.txt

Code: [Select]
Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation.  All rights reserved.

C:\Program Files (x86)\Tweaking.com\Registry Backup>
CD /D C:\

C:\>
"C:\Program Files (x86)\Tweaking.com\Registry Backup\files\vss_7_64.exe" -da

VSHADOW.EXE 3.0 - Volume Shadow Copy sample client.
Copyright (C) 2005 Microsoft Corporation. All rights reserved.

(Option: Delete all shadow copies)
This will delete all shadow copies in the system. Are you sure? [Y/N]

- Setting the VSS context to: 0xffffffff

There are no shadow copies on the system

C:\>"C:\Windows\temp\vss_start.bat"

[This script is generated by VSHADOW.EXE for the shadow set {918d3385-d5a3-4faf-846f-051f3f7d3263}]

B:: The operation completed successfully.

B:: The operation completed successfully.

VSHADOW.EXE 3.0 - Volume Shadow Copy sample client.
Copyright (C) 2005 Microsoft Corporation. All rights reserved.

(Option: Generate SETVAR script 'C:\Windows\temp\vss-setvar.cmd')
(Option: Execute binary/script after shadow creation 'C:\Windows\temp\vss.bat')
(Option: Create shadow copy set)
(Gathering writer metadata...)
(Waiting for the asynchronous operation to finish...)
Initialize writer metadata ...
Discover directly excluded components ...
- Excluding writer 'MSSearch Service Writer' since it has no selected components for restore.
- Excluding writer 'Shadow Copy Optimization Writer' since it has no selected components for restore.
Discover components that reside outside the shadow set ...
- Component '\BCD\BCD' from writer 'ASR Writer' is excluded from backup (it requires  in the shadow set)
Discover all excluded components ...
Discover excluded writers ...
- The writer 'ASR Writer' is now entirely excluded from the backup:
  (the top-level non-selectable component '\BCD\BCD' is an excluded component)
Discover explicitly included components ...
Verifying explicitly specified writers/components ...
Select explicitly included components ...
 * Writer 'Task Scheduler Writer':
   - Add component \TasksStore
 * Writer 'VSS Metadata Store Writer':
   - Add component \WriterMetadataStore
 * Writer 'Performance Counters Writer':
   - Add component \PerformanceCounters
 * Writer 'System Writer':
   - Add component \System Files
 * Writer 'Registry Writer':
   - Add component \Registry
 * Writer 'WMI Writer':
   - Add component \WMI
 * Writer 'COM+ REGDB Writer':
   - Add component \COM+ REGDB
Creating shadow set {918d3385-d5a3-4faf-846f-051f3f7d3263} ...
- Adding volume \\?\Volume{bcbe9ee2-e6d1-11de-8e59-806e6f6e6963}\ [C:\] to the shadow set...
Preparing for backup ...
(Waiting for the asynchronous operation to finish...)
(Waiting for the asynchronous operation to finish...)
Creating the shadow (DoSnapshotSet) ...
(Waiting for the asynchronous operation to finish...)
(Waiting for the asynchronous operation to finish...)
Shadow copy set succesfully created.

List of created shadow copies:

Querying all shadow copies with the SnapshotSetID {918d3385-d5a3-4faf-846f-051f3f7d3263} ...

* SNAPSHOT ID = {959ce2f7-e162-4aad-8cbb-6380faa808bd} ...
   - Shadow copy Set: {918d3385-d5a3-4faf-846f-051f3f7d3263}
   - Original count of shadow copies = 1
   - Original Volume name: \\?\Volume{bcbe9ee2-e6d1-11de-8e59-806e6f6e6963}\ [C:\]
   - Creation Time: 5/20/2012 11:44:26 AM
   - Shadow copy device name: \\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy1
   - Originating machine: Dell-P370
   - Service machine: Dell-P370
   - Not Exposed
   - Provider id: {b5946137-7b9f-4925-af80-51abd60b20d5}
   - Attributes:  Auto_Release Differential

Generating the SETVAR script (C:\Windows\temp\vss-setvar.cmd) ...
- Executing command 'C:\Windows\temp\vss.bat' ...
-----------------------------------------------------
-----------------------------------------------------
- Mark all writers as succesfully backed up...
Completing the backup (BackupComplete) ...
(Waiting for the asynchronous operation to finish...)
(Waiting for the asynchronous operation to finish...)

Snapshot creation done.

C:\>
[11:44:55 AM] Closed. No longer reading pipes.
[11:44:55 AM] Error: 402 - Not processing a command to cancel.
[11:44:55 AM] Error: 402 - Not processing a command to cancel.

Log_Backup.txt:
Code: [Select]
Waiting for Volume Shadow Copy...

Auto Delete Old Backups Enabled, Working...
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Starting Backup...
Backup Location: D:\Registry Backup\

Files To Backup:
--------------------------------------------------------------------------------
C:\Windows\System32\Config\default
C:\Windows\System32\Config\sam
C:\Windows\System32\Config\security
C:\Windows\System32\Config\software
C:\Windows\System32\Config\system
C:\Users\Administrator\AppData\Local\Microsoft\Windows\UsrClass.dat
C:\Users\Administrator\ntuser.dat
C:\Users\Default\ntuser.dat
C:\Users\Guest\AppData\Local\Microsoft\Windows\UsrClass.dat
C:\Users\Guest\ntuser.dat
C:\Users\rrkurtz\AppData\Local\Microsoft\Windows\UsrClass.dat
C:\Users\rrkurtz\ntuser.dat
C:\Users\UpdatusUser\AppData\Local\Microsoft\Windows\UsrClass.dat
C:\Users\UpdatusUser\ntuser.dat
C:\Windows\ServiceProfiles\LocalService\ntuser.dat
C:\Windows\ServiceProfiles\NetworkService\ntuser.dat
--------------------------------------------------------------------------------

Backing Up Files...:
--------------------------------------------------------------------------------
Backing Up File: C:\Windows\System32\Config\default
Result: Successful - D:\Registry Backup\DELL-P370\5.20.2012_11.44.42-AM\C\Windows\System32\Config\default

Backing Up File: C:\Windows\System32\Config\sam
Result: Successful - D:\Registry Backup\DELL-P370\5.20.2012_11.44.42-AM\C\Windows\System32\Config\sam

Backing Up File: C:\Windows\System32\Config\security
Result: Successful - D:\Registry Backup\DELL-P370\5.20.2012_11.44.42-AM\C\Windows\System32\Config\security

Backing Up File: C:\Windows\System32\Config\software
Result: Successful - D:\Registry Backup\DELL-P370\5.20.2012_11.44.42-AM\C\Windows\System32\Config\software

Backing Up File: C:\Windows\System32\Config\system
Result: Successful - D:\Registry Backup\DELL-P370\5.20.2012_11.44.42-AM\C\Windows\System32\Config\system

Backing Up File: C:\Users\Administrator\AppData\Local\Microsoft\Windows\UsrClass.dat
Result: Successful - D:\Registry Backup\DELL-P370\5.20.2012_11.44.42-AM\C\Users\Administrator\AppData\Local\Microsoft\Windows\UsrClass.dat

Backing Up File: C:\Users\Administrator\ntuser.dat
Result: Successful - D:\Registry Backup\DELL-P370\5.20.2012_11.44.42-AM\C\Users\Administrator\ntuser.dat

Backing Up File: C:\Users\Default\ntuser.dat
Result: Successful - D:\Registry Backup\DELL-P370\5.20.2012_11.44.42-AM\C\Users\Default\ntuser.dat

Backing Up File: C:\Users\Guest\AppData\Local\Microsoft\Windows\UsrClass.dat
Result: Successful - D:\Registry Backup\DELL-P370\5.20.2012_11.44.42-AM\C\Users\Guest\AppData\Local\Microsoft\Windows\UsrClass.dat

Backing Up File: C:\Users\Guest\ntuser.dat
Result: Successful - D:\Registry Backup\DELL-P370\5.20.2012_11.44.42-AM\C\Users\Guest\ntuser.dat

Backing Up File: C:\Users\rrkurtz\AppData\Local\Microsoft\Windows\UsrClass.dat
Result: Successful - D:\Registry Backup\DELL-P370\5.20.2012_11.44.42-AM\C\Users\rrkurtz\AppData\Local\Microsoft\Windows\UsrClass.dat

Backing Up File: C:\Users\rrkurtz\ntuser.dat
Result: Successful - D:\Registry Backup\DELL-P370\5.20.2012_11.44.42-AM\C\Users\rrkurtz\ntuser.dat

Backing Up File: C:\Users\UpdatusUser\AppData\Local\Microsoft\Windows\UsrClass.dat
Result: Successful - D:\Registry Backup\DELL-P370\5.20.2012_11.44.42-AM\C\Users\UpdatusUser\AppData\Local\Microsoft\Windows\UsrClass.dat

Backing Up File: C:\Users\UpdatusUser\ntuser.dat
Result: Successful - D:\Registry Backup\DELL-P370\5.20.2012_11.44.42-AM\C\Users\UpdatusUser\ntuser.dat

Backing Up File: C:\Windows\ServiceProfiles\LocalService\ntuser.dat
Result: Successful - D:\Registry Backup\DELL-P370\5.20.2012_11.44.42-AM\C\Windows\ServiceProfiles\LocalService\ntuser.dat

Backing Up File: C:\Windows\ServiceProfiles\NetworkService\ntuser.dat
Result: Successful - D:\Registry Backup\DELL-P370\5.20.2012_11.44.42-AM\C\Windows\ServiceProfiles\NetworkService\ntuser.dat
--------------------------------------------------------------------------------

One change I would strongly suggest is to time stamp each log entry so you know how long it's taking to do things.

I'll try 0.9.3 and run under my account, see what happens.

74
Tweaking.com Support & Help / Re: Registry Backup Beta
« on: May 19, 2012, 08:15:18 pm »
Scheduled backup not working correctly or at least not ending. I rebooted at 10:58, here is the Task log:

Code: [Select]
Information 5/19/2012 10:58:52 PM 129 Created Task Process Info
Information 5/19/2012 10:58:51 PM 200 Action started (1) 79f591a5-e685-4d27-ad3a-14aa4716c9ba
Information 5/19/2012 10:58:51 PM 100 Task Started (1) 79f591a5-e685-4d27-ad3a-14aa4716c9ba
Information 5/19/2012 10:58:51 PM 319 Task Engine received message to start task (1)
Information 5/19/2012 10:58:51 PM 118 Task triggered by computer startup Info 79f591a5-e685-4d27-ad3a-14aa4716c9ba

It has not completed as far as I can tell and it's not 11:15PM.. No new backup in D:\Registry Backups and nothing in Log_Backup.txt to show it';s even started.

Works correctly if I start it from the Task Scheduler under my own account but doesn't seem to run right when run under SYSTEM.

75
Tweaking.com Support & Help / Re: Registry Backup Beta
« on: May 19, 2012, 07:56:13 pm »
It looks like the scheduled backup completed but the task itself never terminated and was stopped when it reached it's max run time which I set to 30 minutes.




I just ran it again by starting it from the Task Scheduler and it ran and completed quickly.


Code: [Select]
Information 5/19/2012 10:42:58 PM 102 Task completed (2) 5d386e9c-22c0-4527-99fa-d684951c8592
Information 5/19/2012 10:42:58 PM 201 Action completed (2) 5d386e9c-22c0-4527-99fa-d684951c8592
Information 5/19/2012 10:42:29 PM 129 Created Task Process Info
Information 5/19/2012 10:42:29 PM 200 Action started (1) 5d386e9c-22c0-4527-99fa-d684951c8592
Information 5/19/2012 10:42:29 PM 100 Task Started (1) 5d386e9c-22c0-4527-99fa-d684951c8592
Information 5/19/2012 10:42:29 PM 319 Task Engine received message to start task (1)
Information 5/19/2012 10:42:29 PM 110 Task triggered by user Info 5d386e9c-22c0-4527-99fa-d684951c8592
Information 5/19/2012 10:42:13 PM 129 Created Task Process Info
Information 5/19/2012 10:42:13 PM 200 Action started (1) 4bceecc6-3749-4aa3-9856-a9a4dc36c762
Information 5/19/2012 10:42:13 PM 100 Task Started (1) 4bceecc6-3749-4aa3-9856-a9a4dc36c762
Information 5/19/2012 10:42:13 PM 319 Task Engine received message to start task (1)
Information 5/19/2012 10:42:13 PM 110 Task triggered by user Info 4bceecc6-3749-4aa3-9856-a9a4dc36c762

I'll try it again from a boot and see what happens.

Pages: 1 2 [3] 4