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.

91 lines
3.1 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. #include "commonstrings.cpp"
  15. //
  16. // The command line executable name
  17. //
  18. PCWSTR g_pszDSCommandName = L"dsadd";
  19. //
  20. // Object types as are typed on the command line
  21. //
  22. PCWSTR g_pszOU = L"ou";
  23. PCWSTR g_pszUser = L"user";
  24. PCWSTR g_pszContact = L"contact";
  25. PCWSTR g_pszComputer = L"computer";
  26. PCWSTR g_pszGroup = L"group";
  27. PCWSTR g_pszQuota = L"quota";
  28. //
  29. // User and Contact switches
  30. //
  31. PCWSTR g_pszArg1UserSAM = L"samid";
  32. PCWSTR g_pszArg1UserUPN = L"upn";
  33. PCWSTR g_pszArg1UserFirstName = L"fn";
  34. PCWSTR g_pszArg1UserMiddleInitial = L"mi";
  35. PCWSTR g_pszArg1UserLastName = L"ln";
  36. PCWSTR g_pszArg1UserDisplayName = L"display";
  37. PCWSTR g_pszArg1UserEmpID = L"empid";
  38. PCWSTR g_pszArg1UserPassword = L"pwd";
  39. PCWSTR g_pszArg1UserMemberOf = L"memberof";
  40. PCWSTR g_pszArg1UserOffice = L"office";
  41. PCWSTR g_pszArg1UserTelephone = L"tel";
  42. PCWSTR g_pszArg1UserEmail = L"email";
  43. PCWSTR g_pszArg1UserHomeTelephone = L"hometel";
  44. PCWSTR g_pszArg1UserPagerNumber = L"pager";
  45. PCWSTR g_pszArg1UserMobileNumber = L"mobile";
  46. PCWSTR g_pszArg1UserFaxNumber = L"fax";
  47. PCWSTR g_pszArg1UserIPTel = L"iptel";
  48. PCWSTR g_pszArg1UserWebPage = L"webpg";
  49. PCWSTR g_pszArg1UserTitle = L"title";
  50. PCWSTR g_pszArg1UserDepartment = L"dept";
  51. PCWSTR g_pszArg1UserCompany = L"company";
  52. PCWSTR g_pszArg1UserManager = L"mgr";
  53. PCWSTR g_pszArg1UserHomeDirectory = L"hmdir";
  54. PCWSTR g_pszArg1UserHomeDrive = L"hmdrv";
  55. PCWSTR g_pszArg1UserProfilePath = L"profile";
  56. PCWSTR g_pszArg1UserScriptPath = L"loscr";
  57. PCWSTR g_pszArg1UserMustChangePwd = L"mustchpwd";
  58. PCWSTR g_pszArg1UserCanChangePwd = L"canchpwd";
  59. PCWSTR g_pszArg1UserReversiblePwd = L"reversiblepwd";
  60. PCWSTR g_pszArg1UserPwdNeverExpires = L"pwdneverexpires";
  61. PCWSTR g_pszArg1UserAccountExpires = L"acctexpires";
  62. PCWSTR g_pszArg1UserDisableAccount = L"disabled";
  63. //
  64. // Computer switches
  65. //
  66. PCWSTR g_pszArg1ComputerSAMName = L"samid";
  67. PCWSTR g_pszArg1ComputerLocation = L"loc";
  68. PCWSTR g_pszArg1ComputerMemberOf = L"memberof";
  69. //
  70. // Group switches
  71. //
  72. PCWSTR g_pszArg1GroupSAMName = L"samid";
  73. PCWSTR g_pszArg1GroupSec = L"secgrp";
  74. PCWSTR g_pszArg1GroupScope = L"scope";
  75. PCWSTR g_pszArg1GroupMemberOf = L"memberof";
  76. PCWSTR g_pszArg1GroupMembers = L"members";
  77. //
  78. // Quota switches
  79. //
  80. PCWSTR g_pszArg1QuotaPart = L"part";
  81. PCWSTR g_pszArg1QuotaRDN = L"rdn";
  82. PCWSTR g_pszArg1QuotaAcct = L"acct";
  83. PCWSTR g_pszArg1QuotaQLimit = L"qlimit";