The default behavior of TapeTrack programs can be changed by setting Environmental Variable.
These Environmental Variable can be set using the following methods.
set VARIABLE=VALUE
Where VARIABLE is the Environmental Variable name, and VALUE is the Environmental Variable value.
To set an Environmental Variable in Windows PowerShell, use the $env: command.
$env:TMSSREPORTFORMAT = "CSV"
Where TMSSREPORTFORMAT is the Environmental Variable name, and CSV is the Environmental Variable value.
To set an Environmental Variable in the Linux operating system, use the export command.
export VARIABLE=VALUE
Where VARIABLE is the Environmental Variable name, and VALUE is the Environmental Variable value.
You can also prepend the Environmental Variable to the command.
TMSSREPORTFORMAT=CSV TMSS10Inventory
The TapeTrack Config File that is loaded when each Desktop and Command Line Program is initiated, it can also be used to set Environmental Variable.
variables = {
TMSSLEVELNAMES = "A,B,C";
TMSSNOLEVELSLOT = "1";
};