तो ... मैं एक छोटे से VBScript पर काम कर रहा हूँ जो कर सकते हैं:
- लगातार वीएसएस स्नैपशॉट लें
- उन्हें एक फ़ोल्डर में माउंट करें (जिससे आप तब फ़ाइलों का बैकअप ले सकते हैं)
- वीएसएस स्नैपशॉट को अनमाउंट करें
यह Microsoft से उपलब्ध वॉल्यूम छाया प्रति सेवा SDK 7.2 के भाग vshadow.exe
( प्रलेखन ) पर निर्भर करता है । मैं इस संस्करण के साथ काम कर रहा हूँ: " VSHADOW.EXE 2.2 - वॉल्यूम छाया प्रति नमूना ग्राहक, कॉपीराइट (C) 2005 Microsoft Corporation। "
मूल रूप से, यह इन चार vshadow आदेशों के आसपास एक साफ सा आवरण है:
vshadow.exe -q - सिस्टम में सभी छाया प्रतियों को सूचीबद्ध करें
vshadow.exe -p {वॉल्यूम सूची} - लगातार छाया प्रतियों का प्रबंधन करता है
vshadow.exe -el = {SnapID}, dir - एक छाया बिंदु के रूप में छाया प्रति को उजागर करें
vshadow.exe -ds = {SnapID} - इस छाया प्रति को हटाता है
यहाँ इसकी मदद स्क्रीन है:
वीएसएस स्नैपशॉट बनाएँ / माउंट टूल
उपयोग:
cscript / nologo VssSnapshot.vbs / लक्ष्य: पथ {/ आयतन: X | / अनमाउंट} [/ डिबग]
/ मात्रा - स्नैपशॉट के लिए वॉल्यूम का ड्राइव अक्षर
/ टारगेट - स्नैपशॉट माउंट करने के लिए पथ (निरपेक्ष या सापेक्ष)
/ डिबग - डिबग आउटपुट पर स्विच
उदाहरण:
CScript / nologo VssSnapshot.vbs / target: C: \ Backup \ DriveD / volume: D
CScript / nologo VssSnapshot.vbs / target: C: \ Backup \ DriveD / unmount
संकेत: नया स्नैपशॉट लेने से पहले अनमाउंट करने की आवश्यकता नहीं है।
यहाँ कुछ नमूना उत्पादन:
C: \ VssSnapshot> cscript / nologo VssSnapshot.vbs / लक्ष्य: माउंट पॉइंट्स \ ई / वॉल्यूम: ई
05/03/2010 17:13:04 वीएसएस माउंट बिंदु की तैयारी ...
05/03/2010 17:13:04 माउंट पॉइंट तैयार किया गया: C: \ VssSnapshot \ MountPoints \ E
05/03/2010 17:13:04 वॉल्यूम के लिए वीएसएस स्नैपशॉट बनाना: ई
05/03/2010 17:13:08 स्नैपशॉट आईडी के साथ बनाया गया: {4ed3a907-c66f-4b20-bda0-9dcda3b667ec}
05/03/2010 17:13:08 वीएसएस स्नैपशॉट सफलतापूर्वक घुड़सवार
05/03/2010 17:13:08 समाप्त हो गया
C: \ VssSnapshot> cscript / nologo VssSnapshot.vbs / लक्ष्य: माउंट पॉइंट्स / ई / अनमाउंट
05/03/2010 17:13:35 वीएसएस माउंट बिंदु तैयार करना ...
05/03/2010 17:13:36 और कुछ नहीं करना है
05/03/2010 17:13:36 समाप्त हो गया
और यहाँ स्क्रिप्ट ही है। सामान्य अस्वीकरण लागू होता है: सॉफ़्टवेयर के रूप में प्रदान किया जाता है, मैं कोई वारंटी नहीं देता हूं, अपने जोखिम पर उपयोग करता हूं, अगर कुछ टूट जाता है तो दोष केवल स्वयं है। मैंने इसका पूरी तरह से परीक्षण किया है, हालांकि यह मेरे लिए ठीक है। नीचे टिप्पणी के माध्यम से मुझे किसी भी कीड़े की सूचना देने के लिए स्वतंत्र महसूस करें।
''# VssSnapshot.vbs
''# http://serverfault.com/questions/119120/how-to-use-a-volume-shadow-copy-to-make-backups/119592#119592
Option Explicit
Dim fso: Set fso = CreateObject("Scripting.FileSystemObject")
''# -- MAIN SCRIPT -------------------------------------------
Dim args, snapshotId, targetPath, success
Set args = WScript.Arguments.Named
CheckEnvironment
Log "preparing VSS mount point..."
targetPath = PrepareVssMountPoint(args("target"))
If args.Exists("unmount") Then
Log "nothing else to do"
ElseIf targetPath <> vbEmpty Then
Log "mount point prepared at: " & targetPath
Log "creating VSS snapshot for volume: " & args("volume")
snapshotId = CreateVssSnapshot(args("volume"))
If snapshotId <> vbEmpty Then
Log "snapshot created with ID: " & snapshotId
success = MountVssSnapshot(snapshotId, targetPath)
If success Then
Log "VSS snapshot mounted sucessfully"
Else
Die "failed to mount snapshot"
End If
Else
Die "failed to create snapshot"
End If
Else
Die "failed to prepare mount point"
End If
Log "finished"
''# -- FUNCTIONS ---------------------------------------------
Function PrepareVssMountPoint(target) ''# As String
Dim cmd, result, outArray
Dim path, snapshot, snapshotId
Dim re, matches, match
PrepareVssMountPoint = VbEmpty
target = fso.GetAbsolutePathName(target)
If Not fso.FolderExists(fso.GetParentFolderName(target)) Then
Die "Invalid mount point: " & target
End If
''# create or unmount (=delete existing snapshot) mountpoint
If Not fso.FolderExists(target) Then
If Not args.Exists("unmount") Then fso.CreateFolder target
Else
Set re = New RegExp
re.MultiLine = False
re.Pattern = "- Exposed locally as: ([^\r\n]*)"
cmd = "vshadow -q"
result = RunCommand(cmd, false)
outarray = Split(result, "*")
For Each snapshot In outArray
snapshotId = ParseSnapshotId(snapshot)
If snapshotId <> vbEmpty Then
Set matches = re.Execute(snapshot)
If matches.Count = 1 Then
path = Trim(matches(0).SubMatches(0))
If fso.GetAbsolutePathName(path) = target Then
cmd = "vshadow -ds=" & snapshotId
RunCommand cmd, true
Exit For
End If
End If
End If
Next
If args.Exists("unmount") Then fso.DeleteFolder target
End If
PrepareVssMountPoint = target
End Function
Function CreateVssSnapshot(volume) ''# As String
Dim cmd, result
If Not fso.DriveExists(volume) Then
Die "Drive " & volume & " does not exist."
End If
cmd = "vshadow -p " & Replace(UCase(volume), ":", "") & ":"
result = RunCommand(cmd, false)
CreateVssSnapshot = ParseSnapshotId(result)
End Function
Function MountVssSnapshot(snapshotId, target) ''# As Boolean
Dim cmd, result
If fso.FolderExists(targetPath) Then
cmd = "vshadow -el=" & snapshotId & "," & targetPath
result = RunCommand(cmd, true)
Else
Die "Mountpoint does not exist: " & target
End If
MountVssSnapshot = (result = "0")
End Function
Function ParseSnapshotId(output) ''# As String
Dim re, matches, match
Set re = New RegExp
re.Pattern = "SNAPSHOT ID = (\{[^}]{36}\})"
Set matches = re.Execute(output)
If matches.Count = 1 Then
ParseSnapshotId = matches(0).SubMatches(0)
Else
ParseSnapshotId = vbEmpty
End If
End Function
Function RunCommand(cmd, exitCodeOnly) ''# As String
Dim shell, process, output
Dbg "Running: " & cmd
Set shell = CreateObject("WScript.Shell")
On Error Resume Next
Set process = Shell.Exec(cmd)
If Err.Number <> 0 Then
Die Hex(Err.Number) & " - " & Err.Description
End If
On Error GoTo 0
Do While process.Status = 0
WScript.Sleep 100
Loop
output = Process.StdOut.ReadAll
If process.ExitCode = 0 Then
Dbg "OK"
Dbg output
Else
Dbg "Failed with ERRORLEVEL " & process.ExitCode
Dbg output
If Not process.StdErr.AtEndOfStream Then
Dbg process.StdErr.ReadAll
End If
End If
If exitCodeOnly Then
Runcommand = process.ExitCode
Else
RunCommand = output
End If
End Function
Sub CheckEnvironment
Dim argsOk
If LCase(fso.GetFileName(WScript.FullName)) <> "cscript.exe" Then
Say "Please execute me on the command line via cscript.exe!"
Die ""
End If
argsOk = args.Exists("target")
argsOk = argsOk And (args.Exists("volume") Or args.Exists("unmount"))
If Not argsOk Then
Say "VSS Snapshot Create/Mount Tool" & vbNewLine & _
vbNewLine & _
"Usage: " & vbNewLine & _
"cscript /nologo " & fso.GetFileName(WScript.ScriptFullName) & _
" /target:path { /volume:X | /unmount } [/debug]" & _
vbNewLine & vbNewLine & _
"/volume - drive letter of the volume to snapshot" & _
vbNewLine & _
"/target - the path (absolute or relative) to mount the snapshot to" & _
vbNewLine & _
"/debug - swich on debug output" & _
vbNewLine & vbNewLine & _
"Examples: " & vbNewLine & _
"cscript /nologo " & fso.GetFileName(WScript.ScriptFullName) & _
" /target:C:\Backup\DriveD /volume:D" & vbNewLine & _
"cscript /nologo " & fso.GetFileName(WScript.ScriptFullName) & _
" /target:C:\Backup\DriveD /unmount" & _
vbNewLine & vbNewLine & _
"Hint: No need to unmount before taking a new snapshot." & vbNewLine
Die ""
End If
End Sub
Sub Say(message)
If message <> "" Then WScript.Echo message
End Sub
Sub Log(message)
Say FormatDateTime(Now()) & " " & message
End Sub
Sub Dbg(message)
If args.Exists("debug") Then
Say String(75, "-")
Say "DEBUG: " & message
End If
End Sub
Sub Die(message)
If message <> "" Then Say "FATAL ERROR: " & message
WScript.Quit 1
End Sub
मुझे उम्मीद है कि इससे किसी को मदद मिलेगी। इसे cc-by-sa के अनुसार उपयोग करने के लिए स्वतंत्र महसूस करें । सभी से मैं पूछता हूं कि आप लिंक को बरकरार रखें जो यहां वापस इंगित करता है।