Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
2.2 KiB

  1. //Copyright (c) 1998 - 1999 Microsoft Corporation
  2. #ifdef NOMINMAX
  3. #undef NOMINMAX
  4. #endif
  5. #include <winver.h>
  6. #include <ntverp.h>
  7. #include "qappsrv.h"
  8. #define VER_FILETYPE VFT_APP
  9. #define VER_FILESUBTYPE VFT2_UNKNOWN
  10. #define VER_FILEDESCRIPTION_STR "Query Terminal Server Utility"
  11. #define VER_INTERNALNAME_STR "qappsrv"
  12. #define VER_ORIGINALFILENAME_STR "qappsrv.exe"
  13. #include <verall.h>
  14. #include "common.ver"
  15. STRINGTABLE
  16. BEGIN
  17. IDS_ERROR_MALLOC
  18. L"Error allocating memory\n"
  19. IDS_ERROR_INVALID_PARAMETERS
  20. L"Invalid parameter(s)\n"
  21. IDS_ERROR_SERVER_ENUMERATE
  22. L"Error 0x%08X enumerating terminal servers\n"
  23. IDS_ERROR_SERVER_INFO
  24. L"Error 0x%08X getting current server info\n"
  25. IDS_HELP_USAGE1
  26. L"Displays the available application terminal servers on the network.\n\n"
  27. IDS_HELP_USAGE2
  28. L"QUERY TERMSERVER [servername] [/DOMAIN:domain] [/ADDRESS] [/CONTINUE]\n\n"
  29. IDS_HELP_USAGE3
  30. L" servername Identifies a Terminal server.\n"
  31. IDS_HELP_USAGE4
  32. L" /DOMAIN:domain Displays information for the specified domain (defaults \n"
  33. IDS_HELP_USAGE5
  34. L" to the current domain).\n"
  35. IDS_HELP_USAGE6
  36. L" /ADDRESS Displays network and node addresses.\n"
  37. IDS_HELP_USAGE7
  38. L" /CONTINUE Does not pause after each screen of information.\n\n"
  39. IDS_TITLE
  40. L"Known Terminal servers\n"
  41. IDS_TITLE1
  42. L"----------------------\n"
  43. IDS_TITLE_ADDR
  44. L"Known Terminal servers Network Node Address\n"
  45. IDS_TITLE_ADDR1
  46. L"---------------------- ------- ------------\n"
  47. IDS_ERROR_NOT_TS
  48. L"This utility needs Terminal Services to be running.\n"
  49. IDS_PAUSE_MSG
  50. L"Press any key when ready . . . "
  51. IDS_ERROR_TERMSERVER_NOT_FOUND
  52. L"This terminal server was not found in the domain.\n"
  53. IDS_ERROR_NO_TERMSERVER_IN_DOMAIN
  54. L"No terminal server was found in the domain.\n"
  55. END