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.
|
|
#include "windows.h" #include "ntverp.h"
#define VER_FILEDESCRIPTION_STR "IIS load balancing configuration command line utility" #define VER_INTERNALNAME_STR "iislbc.exe" #define VER_ORIGINALFILENAME_STR "iislbc.exe" #define VER_FILETYPE VFT_APP
#include "iisver.h" #include "common.ver"
#include "iisrc.h"
STRINGTABLE BEGIN IDS_LBC_HELP "\nIISLBC.EXE (c) Microsoft Corp. 1998\n\nUsage:\n\niislbc\n\ [-mcomputername] Specify target computer\n\ \t\tAnd one of the following commands:\n\ [-as Server] Add Server\n\ [-ai PublicIp:Port Name StickyDuration] Add Public IP Address ( + port # )\n\ [-ap * PerfmonCounter|* Weight] Add Perfmon counters,\n\ \t * to select from list\n\ [-ds Server] Delete Server\n\ [-di PublicIp:Port] Delete Public IP Address\n\ [-dp * PerfmonCounter] Delete Perfmon counters\n\ [-si Server PublicIp:Port PrivateIp:Port Name] Set private IP address for a given\n\ \t server and public IP address\n\ [-lc] List configuration\n\ \n" IDS_LBC_COPYRIGHT "\nIISLBC (c) Microsoft Corp. 1998\n" IDS_LBC_IPE "\nIP endpoints:\n" IDS_LBC_IPM "\nIP Mapping:\n%*.*s\t" IDS_LBC_PM "Perfmon counters:\n" IDS_LBC_ST "Sticky duration: %u\n\n" IDS_LBC_SP "Select a counter to monitor" END
|