Page 1 of 1

How to extrace /desc: info from tbs file

Posted: Wed Nov 06, 2024 6:52 pm
by tas3086
I am 90% completely command line and script oriented in operation.
Is there a way to extract the (Image.exe) /Desc: information that must be stored in a .TBS file? Or an existing tool that I can run to automate the extraction of that information to pass it to another process?
Thank you in advance.

Re: How to extrace /desc: info from tbs file

Posted: Wed Nov 06, 2024 7:37 pm
by TeraByte Support(PP)
I assume you mean a .TBI file.

You can use the /L (List) parameter to get the information from the file and then process it as needed.

Example extracting the data to a file:

Code: Select all

imagew64.exe /l /all:14 /f:"d:\backups\mybackup.tbi" > d:\output.txt

Re: How to extrace /desc: info from tbs file

Posted: Wed Nov 06, 2024 8:09 pm
by tas3086
Perfect, just what I need thank you