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/09/02 01:21] – [Locating The Lite Config File] Scott Cunliffelite:config_file [2025/01/21 22:07] (current) – external edit 127.0.0.1
Line 31: Line 31:
       },       },
       {       {
-             hidden=true;  +          hidden=true;  
-             text="Custom Command 1"; +          text="Custom Command 1"; 
-             //sequence=100; +          //sequence=100; 
-             command="echo hello > out.txt"; +          command="echo hello > out.txt"; 
-             filters=( "*this string will be excluded*", "*So will this string*" );+          filters=( "*this string will be excluded*", "*So will this string*" );
       }       }
    );    );
Line 47: Line 47:
  
 The Lite config file (TMSSLite.cfg) is located in the TapeTrack directory at \TapeTrack\TapeTrack Lite\TMSSLite.cfg 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. Open the file in a plain text editor, such as Notepad.
Line 59: 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 108: 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 114: 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 134: 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 143: 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 215: 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.1630545699.txt.gz · Last modified: 2025/01/21 22:07 (external edit)