Dsdbutil is a command-line tool that is built into Windows Server. It is available if you have the AD LDS server role installed. Can be used as a command line utility to export Active Directory.
dsdbutil supports VSS snapshot creation
dsdbutil.exe "activate instance ntds" "snapshot" "create" "quit" "quit"
Snapshoting of Active Directory NTDS.dit database
Mounting the snapshot with its GUID
dsdbutil.exe "activate instance ntds" "snapshot" "mount {GUID}" "quit" "quit"
Mounting the snapshot to access the ntds.dit with copy c:\<Snap Volume>\windows\ntds\ntds.dit c:\users\administrator\desktop\ntds.dit.bak
Deletes the mount of the snapshot
dsdbutil.exe "activate instance ntds" "snapshot" "delete {GUID}" "quit" "quit"
Deletes the snapshot
Mounting with snapshot identifier
dsdbutil.exe "activate instance ntds" "snapshot" "create" "list all" "mount 1" "quit" "quit"
Mounting the snapshot identifier 1 and accessing it with copy c:\<Snap Volume>\windows\ntds\ntds.dit c:\users\administrator\desktop\ntds.dit.bak
Deletes the mount of the snapshot
dsdbutil.exe "activate instance ntds" "snapshot" "list all" "delete 1" "quit" "quit"
deletes the snapshot