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.
How to extrace /desc: info from tbs file
-
- Posts: 1740
- Joined: Fri Aug 12, 2011 12:51 am
Re: How to extrace /desc: info from tbs file
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:
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
Perfect, just what I need thank you