Leaked source code of windows server 2003
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.

62 lines
2.5 KiB

  1. /*
  2. Help msg text slammed into variables (which is why it's not in msg.h)
  3. Localize
  4. */
  5. CHAR16 *FixHelpText[] = {
  6. L"fix help - prints this screen\n",
  7. L"fix takes no arguments. It attempts to read and rewrite\n",
  8. L"the GPT tables of a disk. This simple procedure will\n",
  9. L"automatically fix some problems.\n",
  10. L"Fix does not work on MBR disks, or on heavily damaged GPT disks\n",
  11. NULL
  12. };
  13. CHAR16 *CreateHelpText[] = {
  14. L"create [help] or \n",
  15. L"create name=namestr (type=typename | typeguid=guid) [offset=ooo] [size=sss]\n",
  16. L" [attr=aaaa] [ver]\n",
  17. L"name=namestr is required, namestr may be quoted 'name=\"p01\"'\n",
  18. L" one of type=typename or typeguid=guid is required\n",
  19. L"type=typename -> typename is one of the types listed by the symbols command\n",
  20. L"typeguid=guid -> guid is of form XXXYYYZZZ\n",
  21. L"offset=ooo is optional. ooo is hexadecimal block offset. if ooo is absent,\n"
  22. L" parititon will start at the end of the last partition.\n",
  23. L"size=sss is optional. sss is decimal megabytes. if sss is 0\n"
  24. L" or sss is greater than free space or option is absent, parititon\n",
  25. L" will fill end of disk.\n",
  26. L"attr=aaa is optional. aaa is a HEX string of attribute flags.\n",
  27. L"ver optional command to turn on verbose status.\n",
  28. L"examples:\n",
  29. L" create name=\"a partition\" type=msbasic size=0 attr=1B\n",
  30. L" create name=part2 type=efisys size=400\n",
  31. NULL
  32. };
  33. CHAR16 *InspectHelpText[] = {
  34. L"inspect [help] or \n"
  35. L"inspect [raw] [ver] \n"
  36. L"raw - print all partition slots, allocated or free, in table order\n",
  37. L" by default only print allocated slots, sorted by address on disk\n",
  38. L"ver - print the the GPT hsd eader\n",
  39. L"examples:\n",
  40. L" inspect\n",
  41. L" inspect raw\n",
  42. L" inspect raw ver\n",
  43. L"\n",
  44. L"For either raw or cooked output, the entry will be tagged with a\n",
  45. L"SLOT number, which is the number used by Delete\n",
  46. NULL
  47. };
  48. CHAR16 *DeleteHelpText[] = {
  49. L"delete [help]\n",
  50. L"delete nnn deletes partition nnn from the currently selected disk\n"
  51. L"nnn is a decimal number that matches output of Inspect\n"
  52. L"example:\n",
  53. L" delete 3\n",
  54. NULL
  55. };