TapeTrack Documentation

Because there is more to tape management than you ever realized

User Tools

Site Tools


lite:config_file

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
lite:config_file [2021/07/22 02:05] Scott Cunliffelite:config_file [2025/01/21 22:07] (current) – external edit 127.0.0.1
Line 5: Line 5:
 Any modifications made in the config file have only local effects not global.  If you have multiple installations of Lite any modifictions will need to be done on each computer. Any modifications made in the config file have only local effects not global.  If you have multiple installations of Lite any modifictions will need to be done on each computer.
  
-{{:lite:lite_config.png}}+<code> 
 +// 
 +// Sample TapeTrack Lite Configuration File 
 +// 
 +options= 
 +{ 
 +   menu=  
 +   ( 
 +       
 +          filter="*Guide*"; 
 +          hidden=true; 
 +      }
 +      {  
 +          filter="*Users*"; 
 +          hidden=true; 
 +      }
 +      {  
 +          filter="*Upload*"; 
 +          hidden=true; 
 +      }, 
 +      {  
 +          filter="*Outlook*"; 
 +          hidden=true; 
 +          // text="Alternate iCalendar text"; 
 +      }, 
 +      { 
 +          hidden=true;  
 +          text="Custom Command 1"; 
 +          //sequence=100; 
 +          command="echo hello > out.txt"; 
 +          filters=( "*this string will be excluded*", "*So will this string*" ); 
 +      } 
 +   ); 
 + 
 +   // file truncated for display purposes 
 +</code> 
 +  
 +===== Locating The Lite Config File ===== 
 + 
 +The default installation location of TapeTrack Lite is at C:\Program Files\TapeTrack\TapeTrack Lite. This location can be modified at installation to suit your requirements if required. 
 + 
 +The Lite config file (TMSSLite.cfg) is located in the TapeTrack directory at \TapeTrack\TapeTrack Lite\TMSSLite.cfg 
 + 
 +<note important>Before modifying the file TMSSLite.cfg make a backup copy in case of any errors</note>
  
 +Open the file in a plain text editor, such as Notepad.
 ===== Customizing the Library Management Tasks Menu ===== ===== Customizing the Library Management Tasks Menu =====
  
Line 17: Line 61:
 Being a local modification, means it only affects the local installation so will need to be executed on all local machines you want to alter the display on.</note> Being a local modification, means it only affects the local installation so will need to be executed on all local machines you want to alter the display on.</note>
  
-{{:lite:lite_config_menu.png}}+{{lite_config_menu.png}}
  
 There are several commands that can be used under the ''menu'' command: There are several commands that can be used under the ''menu'' command:
Line 66: Line 110:
            filter="*Send*";            filter="*Send*";
            hidden=false;            hidden=false;
-           text="Transmit to Offsite Vault";+           text="Send to Offsite Vault";
            sequence=01;            sequence=01;
        },        },
Line 72: Line 116:
            filter="*Recall*";            filter="*Recall*";
            hidden=false;            hidden=false;
-           text="Return from Offsite Vault";+           text="Recall from Offsite Vault";
            sequence=02;            sequence=02;
        },        },
Line 92: Line 136:
        
 The above script provides the necessary components to: The above script provides the necessary components to:
-  * Hide any command with the String Guide, Users, Upload or Outlook. +  * Hide any command with the String Guide, Users, Upload, SCSI, Excel, Library Management, List or Outlook. 
-  * Change the displayed name of the **[[lite:function_send|Send]]** function to **Transmit to Offsite Vault**.+  * Change the displayed name of the **[[lite:function_send|Send]]** function to **Send to Offsite Vault**.
   * Place the **Send** function at the top of the drop-down list.   * Place the **Send** function at the top of the drop-down list.
-  * Change the name of the **[[lite:function_recall|Recall]]** function to **Return from Offsite Vault**.+  * Change the name of the **[[lite:function_recall|Recall]]** function to **Recall from Offsite Vault**.
   * Place the **Recall** function second in the drop-down list.   * Place the **Recall** function second in the drop-down list.
   * Add a command to the Tape Management Task Menu that runs [[cli:tmss10ping|TMSS10Ping]] for the local TapeTrack Server with the text **Ping TapeTrack Server**.  Replace the server address ''localhost'' with your TapeTrack Framework Server address (dotted IP or DNS) to run the command against your server.   * Add a command to the Tape Management Task Menu that runs [[cli:tmss10ping|TMSS10Ping]] for the local TapeTrack Server with the text **Ping TapeTrack Server**.  Replace the server address ''localhost'' with your TapeTrack Framework Server address (dotted IP or DNS) to run the command against your server.
Line 101: Line 145:
   * Change the Save Location for Log Files.   * Change the Save Location for Log Files.
  
-**Note**: the sequence numbers 01 and 02 were used to indicate that they came before the default first sequence number of "10" that is typically assigned to **Scan-In**.+**Note**: the sequence numbers 01 and 02 were used to indicate that they came before the default first sequence number of "10" that is typically assigned to ''Scan-In''.
  
  
 ===Modified Menu View=== ===Modified Menu View===
-{{:lite:lite_config_altered.png}}+{{modified_menu.png}}
  
  
Line 173: Line 217:
 ===== Notifications ===== ===== Notifications =====
  
 +Lite will display various notifications in the lower right of your display at different times.
  
 +For example when logging on to Lite, a notification will display a welcome message and the last IP address used to logon.
 +
 +{{logon_notification.png}}
 +
 +By default the notifications section of Lite blocks Library Health Warnings as this notification is more relevant in TapeMaster.  
 +
 +<code>
 +notifications = 
 +{
 +   filters= 
 +   (
 +      { 
 +        title="Library Health Warning"; line1="*"; line2="*"; disable=true;
 +      }
 +   )
 +};
 +</code>
 +
 +It is possible to block other notifications, if required, by adding additional blocks of code for the required notifications. For example to remove, or block, the ''Logged-On'' notification modify the ''notifications'' block of code to include the following code.
 +
 +<code>
 +notifications = 
 +{
 +   filters= 
 +   (
 +      { 
 +        title="Library Health Warning"; line1="*"; line2="*"; disable=true;
 +      },
 +      {
 +     title="Logged-On"; line1="*"; line2="*"; disable=true;
 +      }
 +   )
 +};
 +</code>
  
  
  
  
lite/config_file.1626919532.txt.gz · Last modified: 2025/01/21 22:07 (external edit)