Backup data with MDT

Backup data with MDT

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.

Backup data with MDT

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
Backup data with MDT

Thereafter the path is well taken into account.

Backup data with MDT

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.