What the Tech logo
Welcome! Register for a free account (or login) > How does it work?
  1. Quickly register. It will only take 60 seconds.
  2. Start a new topic. Ask your question. Wait for an email reply.
  3. Is your system infected? Begin reading the malware removal guide.
register button
Reply to this topicStart new topic
> Unable to restore XP system state (whole registry), VBScript Error/Catastrophic Failure
computernut
post Sep 27 2009, 03:15 PM
Post #1


New Member
*

Group: New Member
Posts: 4
Joined: 27-September 09
Member No.: 88,105
Operating System: xp



Hello.
My current desktop has a Pentium 4, 3.4GHZ CPU, running 4gb of RAM on a 2-year old Asus P5B-VM. I have 8 operating systems on 5 drives but the relevant system is Win XP32. My default browser in this partition is Google Chrome.

I am operating with administrator rights.

I currently am unable to do a full backup (system state) of my xp registry. I had been accustomed to using the guided help vpscript from Microsoft http://support.microsoft.com/kb/322756 but today I get the vpscript error regarding my drive not being accessible (see attached screen capture) When i try to do this manually using the advanced feature of XP Backup I get another error message. Log file below. Any assistance would be much appreciated.



Backup Status
Operation: Backup
Active backup destination: File
Media name: "RegBack.bkf created 2009-09-27 at 18:31"


Error returned while creating the volume shadow copy:Catastrophic failure


Aborting Backup.

----------------------

The operation did not successfully complete.

----------------------

I tried using the suggestions on this page which I probably should have realized was not relevant. I have since returned the settings to normal. http://kb.mit.edu/confluence/display/istco...rmissions+issue

------------------------------------------------------------------------------------------

EDIT: The manual process seemed to work once I made sure that Volume Shadowing was turned on, but I'm not sure from the first part of this report if it's a good backup or not. The MS script still fails with the same VB Script message.

Backup Status
Operation: Backup
Active backup destination: File
Media name: "RegBack.bkf created 2009-09-27 at 19:35"


Error returned while creating the volume shadow copy:8004230f
Reverting to non-shadow copy backup mode.
Backup of "System State"
Backup set #1 on media #1
Backup description: "Set created 2009-09-27 at 19:35"
Media name: "RegBack.bkf created 2009-09-27 at 19:35"

Backup Type: Copy

Backup started on 2009-09-27 at 19:36.
Backup completed on 2009-09-27 at 19:38.
Directories: 173
Files: 2849
Bytes: 609,328,219
Time: 2 minutes and 4 seconds

----------------------

This post has been edited by computernut: Sep 27 2009, 04:14 PM
Attached File(s)
Attached File  backup_error.jpg ( 118.26K ) Number of downloads: 3
 
Go to the top of the page
 
+Quote Post
 
Start new topic
Replies (1 - 5)
appleoddity
post Sep 27 2009, 05:39 PM
Post #2


SuperMember
Group Icon

Group: Tech Team
Posts: 1,941
Joined: 7-January 09
From: Flint, Michigan
Member No.: 83,485
Operating System: Windows XP, Server 2003/2008, Linux



Yes, turning on the volume shadow copy service fixed your one problem.

Now, the message about vbscript states exactly what is wrong and where the error occurs in exactly what file. smile.gif

Please navigate to the file listed in the message, open it in notepad, look at line 7 and copy and paste that line here. It sounds like it is trying to connect to a remote service that is unavailable.

The command at line 7 is returning your error.
Go to the top of the page
 
+Quote Post
computernut
post Sep 27 2009, 07:46 PM
Post #3


New Member
*

Group: New Member
Posts: 4
Joined: 27-September 09
Member No.: 88,105
Operating System: xp



Thanks for the reply. Here is the full file that I extracted from the executable using WinZip.


strComputer = "."
Set objShell = CreateObject("WScript.Shell")
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set colDisks = objWMIService.ExecQuery _
("Select * from Win32_LogicalDisk Where DeviceID = 'C:'")
For Each objDisk in colDisks
intFreeSpace = objDisk.FreeSpace
gbFreeSpace = round((intFreeSpace / 1073741824),2)
if gbFreeSpace > 1 then
objShell.RegWrite "HKCU\Software\Microsoft\GuidedHelp\Content\322756\CDriveFreeSpace", "GreaterThan1GB", "REG_SZ"
End if
if gbFreeSpace < 1 then
objShell.RegWrite "HKCU\Software\Microsoft\GuidedHelp\Content\322756\CDriveFreeSpace", "LessThan1GB", "REG_SZ"
End if
objShell.RegWrite "HKCU\Software\Microsoft\GuidedHelp\Content\322756\getCDriveFreeSpace.vbs", "Installed", "REG_SZ"
Next

This post has been edited by computernut: Sep 27 2009, 07:48 PM
Go to the top of the page
 
+Quote Post
computernut
post Sep 28 2009, 02:33 AM
Post #4


New Member
*

Group: New Member
Posts: 4
Joined: 27-September 09
Member No.: 88,105
Operating System: xp



I have another MS vb script that I've been accustomed to using "instantrestorepoint.vbs." clicking on it creates a restore point quickly. Now I get another VBS error with this script (see attached) I looked in services but couldn't see remote server in the list. What does RPC server stand for. The only "RPC" service that wouldn't start is something called Remote Packet Capture which gives a "system cannot find the path specified" error. The code for the instantrestorepoint.vbs script is listed below:

Set IRP = getobject("winmgmts:\\.\root\default:Systemrestore")

MYRP = IRP.createrestorepoint ("My Restore Point", 0, 100)

I don't know any Virtual Basic so I don't have much of a clue about this or if it's related to the earlier vbs error.

I'm beginning to think that I've notgood things up when I used a cmd line argument last night in this page

I ran this line not really knowing what i was doing

cacls "%appdata%\Microsoft\Crypto\RSA" /t /e /c /g "%username%":f

some lines scrolled down the screen.

but I forgot to edit username to my own username.

when I ran the line again using my own username it came back saying that nothing was mapped.

The page I had been following was

http://kb.mit.edu/confluence/display/istco...rmissions+issue.

This post has been edited by computernut: Sep 28 2009, 02:36 AM
Attached File(s)
Attached File  rpc.JPG ( 76.89K ) Number of downloads: 5
 
Go to the top of the page
 
+Quote Post
computernut
post Sep 28 2009, 07:59 AM
Post #5


New Member
*

Group: New Member
Posts: 4
Joined: 27-September 09
Member No.: 88,105
Operating System: xp



I managed to get the two vbscripts to work again. All I did was to go down all the services and manually turned on all those that I thought might be relevant to this problem that were currently not started. Now I need to turn off one service at a time to see which one was the culprit. This requires a little patience. There is also the problem of needing to know why some of these essential services didn't start on their own There have been some problems with Windows Installer not working as well. I don't know if they're fixed yet or not.
Go to the top of the page
 
+Quote Post
Ztruker
post Sep 28 2009, 11:01 AM
Post #6


WTT Tech
Group Icon

Group: Tech Team
Posts: 3,022
Joined: 6-August 05
From: Central Florida
Member No.: 37,720
Operating System: Windows 7 Pro, Windows XP Pro and Ubuntu Linux



RPC = Remote Procedure Call (not Remote Procedure Call Locator)
Go to the top of the page
 
+Quote Post

Reply to this topicStart new topic

 

Collapse

> Similar Topics

    Topic Title Replies Topic Starter Views Last Action
No New Posts   3 ErinMatthews 29 39 minutes ago
Last post by: paws
No New Posts   3 jhell 67 19th March 2010 - 07:28 AM
Last post by: CatByte
No New Posts   6 Juliusmaximus 162 12th March 2010 - 04:14 PM
Last post by: Juliusmaximus
No new   36 Juliusmaximus 582 12th March 2010 - 06:53 AM
Last post by: CatByte

RSS Time is now: 21st March 2010 - 09:28 AM
Advertisements do not imply our endorsement of that product or service. The forum is run by volunteers who donate their time and expertise. We make every attempt to ensure that the help and advice posted is accurate and will not cause harm to your computer. However, we do not guarantee that they are accurate and they are to be used at your own risk.
Member site: Alliance of Security Analysis Professionals | UNITE Against Malware
Memory Forums | Auto Repair Forum
© Geeks to Go, Inc. | All Rights Reserved | Privacy Policy