Backup data with MDT
Backup data with MDT
While trying to back up the data of a Windows XP workstation with MDT, I realized that the UNC path entered in the CustomSettings.ini file was ignored.
After some research I found the code to add so that the path is taken into account. To correct this problem, it is necessary to modify the script. DeployWiz_UserData.vbs. The change must be made after the End if of line 43.
Add this code :
If Property(“UDShare”) <> “”AND Property(“UDDir”) <> “” Then
DataPath.value = Property(“UDShare”) & “\” & Property(“UDDir”)
End if
Thereafter the path is well taken into account.