I've got a file called CreateISO.ibb that contains the following (along with a lot more, but for now this is good enough):
I executed the command (all on one line)
I expected that this would take the line that had an empty Destination= string and replace it with Destination= followed by the value of the _DEST environment variable, which I've confirmed is non-empty (_DEST='c:\VESTA Analytics 3.1 (3.1.75.0).iso'). But the file is unchanged. I thought that maybe it was a file in, file out, overwriting kind of issue, so I tried using /output=%TEMP%\CreateISO.ibb.new, but this file was an exact copy of the original.
What am I doing wrong, and how do I fix it?
IBB
[START_BACKUP_OPTIONS]
BuildInputMode=1
BuildOutputMode=2
Destination=
DataType=0
FileSystem=1
[START_BACKUP_OPTIONS]
BuildInputMode=1
BuildOutputMode=2
Destination=
DataType=0
FileSystem=1
I executed the command (all on one line)
tpipe /input=%TEMP%\CreateISO.ibb /replace=0,0,0,0,0,0,0,0,0,Destination=,Destination=%_DEST% /output=%TEMP%\CreateISO.ibb
I expected that this would take the line that had an empty Destination= string and replace it with Destination= followed by the value of the _DEST environment variable, which I've confirmed is non-empty (_DEST='c:\VESTA Analytics 3.1 (3.1.75.0).iso'). But the file is unchanged. I thought that maybe it was a file in, file out, overwriting kind of issue, so I tried using /output=%TEMP%\CreateISO.ibb.new, but this file was an exact copy of the original.
What am I doing wrong, and how do I fix it?