Navisworks Batch Utility - Add Date & time to the end of the output NWD file

Navisworks Batch Utility - Add Date & time to the end of the output NWD file

Anonymous
Not applicable
635 Views
2 Replies
Message 1 of 3

Navisworks Batch Utility - Add Date & time to the end of the output NWD file

Anonymous
Not applicable

Do you know how may I add create date and time to the end of the batch utility output file.

we scheduled the task to run everyday at morning and noon, the project need to keep the NWD file track by creation date.

Thanks

Ndorsa 

0 Likes
636 Views
2 Replies
Replies (2)
Message 2 of 3

AndyG_ADSK
Autodesk
Autodesk

Hi there,

 

You will need to run Batch Utility as part of batch script.  At the end of the script you should be able to add the command:

echo %TIME% %DATE%>batch_utility.log

 

Where you would replace "batch_utility.log" with the name of your output file.

 

HTH.  Not sure I can help more than this because your question is more about batch file scripting than Navisworks.

 

Cheers

Andy



Autodesk Employee

0 Likes
Message 3 of 3

AndyG_ADSK
Autodesk
Autodesk

Correction, it should be like this:

echo %TIME% %DATE%>>batch_utility.log

 

As using a single arrow will overwrite the output.



Autodesk Employee

0 Likes