TSM Command line interface

saiplent

ADSM.ORG Member
Joined
Mar 13, 2007
Messages
9
Reaction score
0
Points
0
Location
Canada
[SOLVED] TSM Command line interface

Hi all !

I'm using the CLI on my laptop to connect on TSM servers. I have .opt files local. I was wondering if there is a way to change the size of the column, because the names are: :eek:

SERVERA_BLA-
-BLA_TEST_C-
-ITYB

It's a pain...

Thanks !
 
Last edited:
The command line will size the columns to the size of your display. If you make the display as large as it will go, thats as large as the columns will go. You could output your quires to a file and work with them there.

-Aaron
 
Thanks,

I've tried this but it's not much better:




As you can see, only the first column is okay (well you can't see it I've hidden the name...) but look in the OS and domain columns. I'm trying to redirect that in a file see if it helps.
Edit: ok I've redirected in a file, same thing :(
 
Last edited:
I've found the solution !:up:

I've created a batch file with the -COMMA option for the outfile, it creates a nice and neat CSV file !!!

set opt="D:\Program Files\Tivoli\TSM\baclient\dsm_whatevernameitis.opt"
set outfile="D:\tsmlogs\tsmoutput.log" -comma :D
set user=myusername
set pass=mypassword
set DSMADMC=DSMADMC.exe -optfile=%opt% -outfile=%outfile% -ID=%user% -PASSWORD=%pass%
d:
cd "\Program Files\Tivoli\TSM\baclient"
%DSMADMC% query node (or whatever you want here)
pause
 
Back
Top