home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / sdktools / winnt / remote / readme.txt < prev    next >
Text File  |  1996-01-17  |  2KB  |  59 lines

  1. Remote
  2.  
  3.  
  4. SUMMARY
  5. =======
  6.  
  7. The REMOTE tool can be used as both a client and a server.
  8.  
  9. MORE INFORMATION
  10. ================
  11.  
  12. To Start the Client End of REMOTE
  13. ---------------------------------
  14.  
  15. REMOTE /C <ComputerName> <Unique Id> [/L] [/F] [/B]
  16.  
  17. ComputerName: The name of computer on which the server end of REMOTE was 
  18.               run.
  19. Unique Id:    The unique identifier of the REMOTE server on computer 
  20.               ComputerName.
  21. [/L]          Number of Lines to Get.
  22. [/F]          Foreground color (blue, red, and so forth).
  23. [/B]          Background color (blue, white, and so forth).
  24.  
  25. Example: REMOTE /C myserverX86 topsecret
  26.  
  27. This connects to a server session on \\myserverX86 with id topsecret if 
  28. there was a REMOTE /S <"Cmd"> topsecret started on the machine 
  29. \\myserverX86.
  30.  
  31. To Start the SERVER End of REMOTE
  32. ---------------------------------
  33.  
  34. REMOTE /S <"Cmd"> <Unique Id> [/U [domainname\]username] [/F] [/B]
  35.  
  36. "Cmd":      A console program that you control from another computer.
  37. Unique Id:  The unique identifier that identifies this session of the REMOTE 
  38.             server.
  39. [/U]        User or Group who can connect to this session. If this is not
  40.             specified, then anyone can connect.
  41. [/F]        Foreground color (blue, red, and so forth).
  42. [/B]        Background color (blue, white, and so forth).
  43.  
  44. Examples: REMOTE /S "cmd" emerald /U administrators
  45.           REMOTE /S "i386kd -v" topsecret"
  46.  
  47. If you have started the server end of REMOTE on one computer and you want to 
  48. interact with "i386kd -v" from another computer, start the client end of 
  49. REMOTE on the other computer by typing:
  50.  
  51.     REMOTE /C <HostName> imbroglio
  52.  
  53. To connect to the session "Cmd", start:
  54.  
  55.     REMOTE /C <HostName> emerald
  56.  
  57. You can only connect to this session if you have administrator access on 
  58. <HostName>.
  59.