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.

104 lines
3.6 KiB

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 2000
  5. //
  6. // File: cstrings.cpp
  7. //
  8. // Contents: Defines the global strings that are used in the parser
  9. //
  10. // History: 07-Sep-2000 JeffJon Created
  11. //
  12. //--------------------------------------------------------------------------
  13. #include "pch.h"
  14. //
  15. // The command line executable name
  16. //
  17. PCWSTR g_pszDSCommandName = L"dsmod";
  18. //
  19. // Object types as are typed on the command line
  20. //
  21. PCWSTR g_pszOU = L"ou";
  22. PCWSTR g_pszUser = L"user";
  23. PCWSTR g_pszContact = L"contact";
  24. PCWSTR g_pszComputer = L"computer";
  25. PCWSTR g_pszGroup = L"group";
  26. PCWSTR g_pszServer = L"server";
  27. //
  28. // Common switches
  29. //
  30. PCWSTR c_sz_arg1_com_debug = L"debug";
  31. PCWSTR c_sz_arg1_com_help = L"h";
  32. PCWSTR c_sz_arg2_com_help = L"?";
  33. PCWSTR c_sz_arg1_com_server = L"s";
  34. PCWSTR c_sz_arg2_com_server = L"server";
  35. PCWSTR c_sz_arg1_com_domain = L"d";
  36. PCWSTR c_sz_arg2_com_domain = L"domain";
  37. PCWSTR c_sz_arg1_com_username = L"u";
  38. PCWSTR c_sz_arg2_com_username = L"username";
  39. PCWSTR c_sz_arg1_com_password = L"p";
  40. PCWSTR c_sz_arg2_com_password = L"password";
  41. PCWSTR c_sz_arg1_com_quiet = L"q";
  42. PCWSTR c_sz_arg1_com_continue = L"c";
  43. PCWSTR c_sz_arg1_com_description = L"desc";
  44. PCWSTR c_sz_arg1_com_objecttype = L"objecttype";
  45. PCWSTR c_sz_arg1_com_objectDN = L"Target object for this command";
  46. //
  47. // User and Contact switches
  48. //
  49. PCWSTR g_pszArg1UserUPN = L"upn";
  50. PCWSTR g_pszArg1UserFirstName = L"fn";
  51. PCWSTR g_pszArg1UserMiddleInitial = L"mi";
  52. PCWSTR g_pszArg1UserLastName = L"ln";
  53. PCWSTR g_pszArg1UserDisplayName = L"display";
  54. PCWSTR g_pszArg1UserEmpID = L"empid";
  55. PCWSTR g_pszArg1UserPassword = L"pwd";
  56. PCWSTR g_pszArg1UserOffice = L"office";
  57. PCWSTR g_pszArg1UserTelephone = L"tel";
  58. PCWSTR g_pszArg1UserEmail = L"email";
  59. PCWSTR g_pszArg1UserHomeTelephone = L"hometel";
  60. PCWSTR g_pszArg1UserPagerNumber = L"pager";
  61. PCWSTR g_pszArg1UserMobileNumber = L"mobile";
  62. PCWSTR g_pszArg1UserFaxNumber = L"fax";
  63. PCWSTR g_pszArg1UserIPTel = L"iptel";
  64. PCWSTR g_pszArg1UserWebPage = L"webpg";
  65. PCWSTR g_pszArg1UserTitle = L"title";
  66. PCWSTR g_pszArg1UserDepartment = L"dept";
  67. PCWSTR g_pszArg1UserCompany = L"company";
  68. PCWSTR g_pszArg1UserManager = L"mgr";
  69. PCWSTR g_pszArg1UserHomeDirectory = L"hmdir";
  70. PCWSTR g_pszArg1UserHomeDrive = L"hmdrv";
  71. PCWSTR g_pszArg1UserProfilePath = L"profile";
  72. PCWSTR g_pszArg1UserScriptPath = L"loscr";
  73. PCWSTR g_pszArg1UserMustChangePwd = L"mustchpwd";
  74. PCWSTR g_pszArg1UserCanChangePwd = L"canchpwd";
  75. PCWSTR g_pszArg1UserReversiblePwd = L"reversiblepwd";
  76. PCWSTR g_pszArg1UserPwdNeverExpires = L"pwdneverexpires";
  77. PCWSTR g_pszArg1UserAccountExpires = L"acctexpires";
  78. PCWSTR g_pszArg1UserDisableAccount = L"disabled";
  79. //
  80. // Computer switches
  81. //
  82. PCWSTR g_pszArg1ComputerLocation = L"loc";
  83. PCWSTR g_pszArg1ComputerDisabled = L"disabled";
  84. PCWSTR g_pszArg1ComputerReset = L"reset";
  85. //
  86. // Group switches
  87. //
  88. PCWSTR g_pszArg1GroupSAMName = L"samid";
  89. PCWSTR g_pszArg1GroupSec = L"secgrp";
  90. PCWSTR g_pszArg1GroupScope = L"scope";
  91. PCWSTR g_pszArg1GroupAddMember = L"addmbr";
  92. PCWSTR g_pszArg1GroupRemoveMember = L"rmmbr";
  93. PCWSTR g_pszArg1GroupChangeMember = L"chmbr";
  94. //
  95. // Server switches
  96. //
  97. PCWSTR g_pszArg1ServerIsGC = L"isgc";