Below is example of simple vbs script program that may create system backup using System Restore Service (for Windows XP, Vista and above).
Copy & paste the text into a file named Create_Restore_Point.vbs and save it in Registry Healer folder. By default this folder is
"C:\Program Files\RegHealer".
Then run Registry Healer, open Advanced Settings, click on "Registry Backup" item and set the custom backup tool command as
"C:\Program Files\RegHealer\Create_Restore_Point.vbs"
Note you should use quotes in the command exactly as above.
If WScript.Arguments.Count = 0 Then
Set objShell = CreateObject("Shell.Application")
objShell.ShellExecute "wscript.exe", Chr(34) & WScript.ScriptFullName & Chr(34) & " Run", , "runas", 1
Else
GetObject("winmgmts:\\.\root\default:Systemrestore").CreateRestorePoint "Registry Healer backup", 0, 100
End If