86 lines
4.8 KiB
Plaintext
86 lines
4.8 KiB
Plaintext
#include <windows.h>
|
|
#include "lodctr.h"
|
|
#include "unlodctr.h"
|
|
|
|
STRINGTABLE
|
|
BEGIN
|
|
LC_CMD_HELP_1 "\nLODCTR"
|
|
LC_CMD_HELP_2 " Updates Performance Monitor counter names and explain text for an extensible counter"
|
|
LC_CMD_HELP_3 "\nUsage:"
|
|
LC_CMD_HELP_4 " LODCTR [\\\\computername] filename"
|
|
LC_CMD_HELP_5 " computername is the name of the remote computer."
|
|
LC_CMD_HELP_6 " Local machine is used if computername is not specified."
|
|
LC_CMD_HELP_7 " filename is the name of the initialization file that contains"
|
|
LC_CMD_HELP_8 " the counter name definitions and explain text for an extensible"
|
|
LC_CMD_HELP_9 " counter DLL."
|
|
LC_CMD_HELP_10 "\n LODCTR /S:<FileName>"
|
|
LC_CMD_HELP_11 " save current perf registry strings and info to <FileName>"
|
|
LC_CMD_HELP_12 "\n LODCTR /R:<FileName>"
|
|
LC_CMD_HELP_13 " restore perf registry strings and info using <FileName>"
|
|
LC_CMD_HELP_14 "\nNote: any arguments with spaces in the names must be enclosed within"
|
|
LC_CMD_HELP_15 "Double Quotation marks.\n"
|
|
|
|
LC_DEVNAME_ERR_1 "\nError in file: %ws."
|
|
LC_DEVNAME_ERR_2 "\ndrivername parameter was not found in the [info] section of the file"
|
|
|
|
LC_NO_INIFILE "\nUnable to find initialization file %ws"
|
|
|
|
LC_LANGLIST_ERR "\nUnable to enumerate languages supported in %ws"
|
|
|
|
LC_ERR_OPEN_INCLUDE "\nUnable to open symbol file %ws"
|
|
LC_ERR_OPEN_DRIVERPERF1 "\nUnable to open Driver key: %ws"
|
|
LC_ERR_OPEN_DRIVERPERF2 "\nStatus value: %d"
|
|
|
|
LC_ERR_OPEN_PERFLIB "\nUnable to open Perflib key, status: %d"
|
|
LC_ERR_READLASTPERFLIB "\nUnable to read Last Counter value from the Perflib key, status: %d"
|
|
LC_ERR_ALREADY_IN "\nCounters for %ws are already installed"
|
|
LC_ERR_UNABLESETBUSY "\nUnable to set Perflib's Busy flag. Status: %d"
|
|
LC_BAD_KEY "\nKey %ws is not formatted correctly"
|
|
LC_LANGNOTFOUND "\nLanguage ID: %ws in key %ws is not found under [languages]"
|
|
LC_ERRADDTOLANG "\nUnable to add text for %ws to language %ws. status: %d"
|
|
LC_UNABLESORTTABLES "\nUnable to sort entrys. Status: %d"
|
|
LC_UNABLEOPENLANG "\nUnable to open language key %ws under Perflib"
|
|
LC_UNABLESETVALUE "\nUnable to set the %ws value under the %ws key in the registry"
|
|
LC_ERR_UPDATELANG "\nError encountered while updateing text in registry. Status: %d"
|
|
LC_PERFLIBISBUSY "\nPerflib is currently being updated by another process. Try again later."
|
|
LC_CONNECT_PROBLEM "\nUnable to connect to remote machine %ws. Status: %d\n"
|
|
END
|
|
|
|
STRINGTABLE
|
|
BEGIN
|
|
UC_CMD_HELP_1 "\nUNLODCTR"
|
|
UC_CMD_HELP_2 " Removes counter names and explain text for the specified extensible counter."
|
|
UC_CMD_HELP_3 "\nUsage:"
|
|
UC_CMD_HELP_4 "\n UNLODCTR [\\\\computername] driver"
|
|
UC_CMD_HELP_5 "\n computername is the name of the remote computer."
|
|
UC_CMD_HELP_6 " Local machine is used if computername is not specified."
|
|
UC_CMD_HELP_7 "\n driver is the name of the device driver which is to have its"
|
|
UC_CMD_HELP_8 " counter name definitions and explain text removed from the system's"
|
|
UC_CMD_HELP_9 " registry.\n"
|
|
UC_CMD_HELP_10 "\nNote: any arguments with spaces in the names must be enclosed within"
|
|
UC_CMD_HELP_11 "Double Quotation marks.\n"
|
|
|
|
UC_DRIVERNOTFOUND "\nUnable to open driver %ws. Status: %d"
|
|
UC_NOTINSTALLED "\nCounters for %ws have not been installed yet"
|
|
UC_REMOVINGDRIVER "\nRemoving counter names and explain text for %ws"
|
|
UC_UNABLEOPENKEY "\nUnable to open a handle to the %ws key, status: %d"
|
|
UC_UNABLESETVALUE "\nUnable to set %ws value under %ws key, status: %d"
|
|
UC_UNABLEREADVALUE "\nUnable to read %ws value under %ws key, status: %d"
|
|
UC_DOINGLANG "\nUpdating text for language %ws"
|
|
UC_UNABLELOADLANG "\nUnable to load %ws text for language %ws. Status: %d"
|
|
UC_CONNECT_PROBLEM "\nUnable to connect to remote machine %ws. Status: %d\n"
|
|
UC_BAD_DRIVER_NAME "\nDriver name is too long or incorrectly formatted."
|
|
END
|
|
|
|
#include <ntverp.h>
|
|
|
|
#define VER_FILETYPE VFT_APP
|
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
|
#define VER_FILEDESCRIPTION_STR "Load & Unload Performance Counters"
|
|
#define VER_INTERNALNAME_STR "LODCTR.DLL"
|
|
#define VER_ORIGINALFILENAME_STR "LODCTR.DLL"
|
|
|
|
#include "common.ver"
|
|
|
|
#include "ldprfmsg.rc"
|