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
60 lines
2.2 KiB
//Copyright (c) 1998 - 1999 Microsoft Corporation
|
|
#ifdef NOMINMAX
|
|
#undef NOMINMAX
|
|
#endif
|
|
|
|
#include <winver.h>
|
|
#include <ntverp.h>
|
|
#include "qappsrv.h"
|
|
|
|
#define VER_FILETYPE VFT_APP
|
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
|
#define VER_FILEDESCRIPTION_STR "Query Terminal Server Utility"
|
|
#define VER_INTERNALNAME_STR "qappsrv"
|
|
#define VER_ORIGINALFILENAME_STR "qappsrv.exe"
|
|
|
|
#include <verall.h>
|
|
#include "common.ver"
|
|
|
|
STRINGTABLE
|
|
BEGIN
|
|
IDS_ERROR_MALLOC
|
|
L"Error allocating memory\n"
|
|
IDS_ERROR_INVALID_PARAMETERS
|
|
L"Invalid parameter(s)\n"
|
|
IDS_ERROR_SERVER_ENUMERATE
|
|
L"Error 0x%08X enumerating terminal servers\n"
|
|
IDS_ERROR_SERVER_INFO
|
|
L"Error 0x%08X getting current server info\n"
|
|
IDS_HELP_USAGE1
|
|
L"Displays the available application terminal servers on the network.\n\n"
|
|
IDS_HELP_USAGE2
|
|
L"QUERY TERMSERVER [servername] [/DOMAIN:domain] [/ADDRESS] [/CONTINUE]\n\n"
|
|
IDS_HELP_USAGE3
|
|
L" servername Identifies a Terminal server.\n"
|
|
IDS_HELP_USAGE4
|
|
L" /DOMAIN:domain Displays information for the specified domain (defaults \n"
|
|
IDS_HELP_USAGE5
|
|
L" to the current domain).\n"
|
|
IDS_HELP_USAGE6
|
|
L" /ADDRESS Displays network and node addresses.\n"
|
|
IDS_HELP_USAGE7
|
|
L" /CONTINUE Does not pause after each screen of information.\n\n"
|
|
IDS_TITLE
|
|
L"Known Terminal servers\n"
|
|
IDS_TITLE1
|
|
L"----------------------\n"
|
|
IDS_TITLE_ADDR
|
|
L"Known Terminal servers Network Node Address\n"
|
|
IDS_TITLE_ADDR1
|
|
L"---------------------- ------- ------------\n"
|
|
IDS_ERROR_NOT_TS
|
|
L"This utility needs Terminal Services to be running.\n"
|
|
IDS_PAUSE_MSG
|
|
L"Press any key when ready . . . "
|
|
IDS_ERROR_TERMSERVER_NOT_FOUND
|
|
L"This terminal server was not found in the domain.\n"
|
|
IDS_ERROR_NO_TERMSERVER_IN_DOMAIN
|
|
L"No terminal server was found in the domain.\n"
|
|
END
|
|
|