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.

100 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: 22-Sep-2000 JeffJon Created
  11. //
  12. //--------------------------------------------------------------------------
  13. #include "pch.h"
  14. //
  15. // The command line executable name
  16. //
  17. PCWSTR g_pszDSCommandName = L"dsadd";
  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. //
  27. // Common switches
  28. //
  29. PCWSTR c_sz_arg1_com_debug = L"debug";
  30. PCWSTR c_sz_arg1_com_help = L"h";
  31. PCWSTR c_sz_arg2_com_help = L"?";
  32. PCWSTR c_sz_arg1_com_server = L"s";
  33. PCWSTR c_sz_arg2_com_server = L"server";
  34. PCWSTR c_sz_arg1_com_domain = L"d";
  35. PCWSTR c_sz_arg2_com_domain = L"domain";
  36. PCWSTR c_sz_arg1_com_username = L"u";
  37. PCWSTR c_sz_arg2_com_username = L"username";
  38. PCWSTR c_sz_arg1_com_password = L"p";
  39. PCWSTR c_sz_arg2_com_password = L"password";
  40. PCWSTR c_sz_arg1_com_quiet = L"q";
  41. PCWSTR c_sz_arg1_com_continue = L"C";
  42. PCWSTR c_sz_arg1_com_description = L"desc";
  43. PCWSTR c_sz_arg1_com_objecttype = L"objecttype";
  44. PCWSTR c_sz_arg1_com_objectDN = L"Target object for this command";
  45. //
  46. // User and Contact switches
  47. //
  48. PCWSTR g_pszArg1UserSAM = L"samid";
  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_pszArg1UserMemberOf = L"memberof";
  57. PCWSTR g_pszArg1UserOffice = L"office";
  58. PCWSTR g_pszArg1UserTelephone = L"tel";
  59. PCWSTR g_pszArg1UserEmail = L"email";
  60. PCWSTR g_pszArg1UserHomeTelephone = L"hometel";
  61. PCWSTR g_pszArg1UserPagerNumber = L"pager";
  62. PCWSTR g_pszArg1UserMobileNumber = L"mobile";
  63. PCWSTR g_pszArg1UserFaxNumber = L"fax";
  64. PCWSTR g_pszArg1UserIPTel = L"iptel";
  65. PCWSTR g_pszArg1UserWebPage = L"webpg";
  66. PCWSTR g_pszArg1UserTitle = L"title";
  67. PCWSTR g_pszArg1UserDepartment = L"dept";
  68. PCWSTR g_pszArg1UserCompany = L"company";
  69. PCWSTR g_pszArg1UserManager = L"mgr";
  70. PCWSTR g_pszArg1UserHomeDirectory = L"hmdir";
  71. PCWSTR g_pszArg1UserHomeDrive = L"hmdrv";
  72. PCWSTR g_pszArg1UserProfilePath = L"profile";
  73. PCWSTR g_pszArg1UserScriptPath = L"loscr";
  74. PCWSTR g_pszArg1UserMustChangePwd = L"mustchpwd";
  75. PCWSTR g_pszArg1UserCanChangePwd = L"canchpwd";
  76. PCWSTR g_pszArg1UserReversiblePwd = L"reversiblepwd";
  77. PCWSTR g_pszArg1UserPwdNeverExpires = L"pwdneverexpires";
  78. PCWSTR g_pszArg1UserAccountExpires = L"acctexpires";
  79. PCWSTR g_pszArg1UserDisableAccount = L"disabled";
  80. //
  81. // Computer switches
  82. //
  83. PCWSTR g_pszArg1ComputerSAMName = L"samid";
  84. PCWSTR g_pszArg1ComputerLocation = L"loc";
  85. PCWSTR g_pszArg1ComputerMemberOf = L"memberof";
  86. //
  87. // Group switches
  88. //
  89. PCWSTR g_pszArg1GroupSAMName = L"samid";
  90. PCWSTR g_pszArg1GroupSec = L"secgrp";
  91. PCWSTR g_pszArg1GroupScope = L"scope";
  92. PCWSTR g_pszArg1GroupMemberOf = L"memberof";
  93. PCWSTR g_pszArg1GroupMembers = L"members";