home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 September / CHIPCD_9_99.iso / software / testsoft / pcanywhere / DATA1.CAB / Tivoli_Integration / PCACONN.ARF
Text File  |  1999-06-04  |  970b  |  44 lines

  1. Application "pcANYWHERE"
  2. {
  3.         Version "9.0";        
  4.  
  5.     Description {
  6.         "pcAnywhere Remote Control"
  7.     }
  8.  
  9.         Copyright {            
  10.         "(C) 1999 Symantec Corporation."
  11.         }
  12.  
  13.     MenuBar "Tools" {
  14.         "pcAnywhere" _S f.menu PCAItem;
  15.     }
  16.  
  17.     Menu PCAItem {
  18.         <100> "Start PCA Host"    _S f.action PcaStart;
  19.         <90>  "Stop PCA Host"        _T f.action PcaStop;
  20.         <80>  "Connect to PCA Host"    _C f.action PcaConnect;
  21.     }
  22.  
  23.     Action "PcaStart" 
  24.     {
  25.         SelectionRule isNode && isComputer;            
  26.         MinSelected 1;
  27.         Command "awshim.exe -a STARTHOST -b NetView.bhf -h \"$OVwSelection1\"";
  28.     }
  29.     Action "PcaStop" 
  30.     {
  31.         SelectionRule isNode && isComputer;            
  32.         MinSelected 1;
  33.         Command "awshim.exe -a STOPHOST -h \"$OVwSelection1\"";
  34.     }
  35.     Action "PcaConnect" 
  36.     {
  37.         SelectionRule isNode && isComputer;            
  38.         MinSelected 1;
  39.             MaxSelected 1;        
  40.         Command "awshim.exe -a STARTREMOTE -c NetView.chf -r \"$OVwSelection1\"";
  41.     }
  42. }
  43.  
  44.