1LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
2
3STRINGTABLE
4{
5    STRING_USAGE, "Usage: taskkill [/?] [/f] [/im ProcessName | /pid ProcessID]\n"
6    STRING_INVALID_OPTION, "Error: Unknown or invalid command line option specified.\n"
7    STRING_INVALID_PARAM, "Error: Invalid command line parameter specified.\n"
8    STRING_MISSING_OPTION, "Error: One of options /im or /pid must be specified.\n"
9    STRING_MISSING_PARAM, "Error: Option %1 expects a command line parameter.\n"
10    STRING_MUTUAL_EXCLUSIVE, "Error: Options /im and /pid are mutually exclusive.\n"
11    STRING_CLOSE_PID_SEARCH, "Close message sent to top-level windows of process with PID %1!u!.\n"
12    STRING_CLOSE_PROC_SRCH, "Close message sent to top-level windows of process ""%1"" with PID %2!u!.\n"
13    STRING_TERM_PID_SEARCH, "Process with PID %1!u! was forcibly terminated.\n"
14    STRING_TERM_PROC_SEARCH, "Process ""%1"" with PID %2!u! was forcibly terminated.\n"
15    STRING_SEARCH_FAILED, "Error: Could not find process ""%1"".\n"
16    STRING_ENUM_FAILED, "Error: Unable to enumerate the process list.\n"
17    STRING_TERMINATE_FAILED, "Error: Unable to terminate process ""%1"".\n"
18    STRING_SELF_TERMINATION, "Error: Process self-termination is not permitted.\n"
19    STRING_PARAM_TOO_MUCH, "Error: Invalid syntax. '%1' option is not allowed more than '%2!d!' time(s).\n"
20    STRING_INVALID_SYNTAX, "Error: Invalid syntax.\n"
21}
22