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.

125 lines
5.4 KiB

  1. #include <windows.h>
  2. #include <ntverp.h>
  3. #define VER_FILETYPE VFT_DLL
  4. #define VER_FILESUBTYPE VFT2_UNKNOWN
  5. #define VER_FILEDESCRIPTION_STR "Dscsetup.dll for ds client installation"
  6. #define VER_INTERNALNAME_STR "Dscsetup.dll"
  7. #define VER_ORIGINALFILENAME_STR "Dscsetup.dll"
  8. #include <common.ver>
  9. #include "resource.h"
  10. /////////////////////////////////////////////////////////////////////////////
  11. //
  12. // Dialog
  13. //
  14. IDD_WELCOME DIALOG DISCARDABLE 0, 0, 317, 193
  15. STYLE WS_CHILD | WS_DISABLED | WS_CAPTION
  16. CAPTION "Dialog"
  17. FONT 8, "MS Shell Dlg"
  18. BEGIN
  19. LTEXT "Welcome to the Directory Service Client Setup Wizard",
  20. IDC_STATIC_WELCOME_TITLE,118,8,189,24
  21. LTEXT "This wizard installs the Directory Service Client for Windows onto your Windows operating system.",
  22. IDC_STATIC2,118,40,189,24
  23. LTEXT "This client software component may be used to access the Active Directory and Distributed File System Redirector services of the Windows 2000 Server software.\n\nTo continue, click Next.",
  24. IDC_STATIC3,118,64,189,72
  25. CONTROL 132,IDB_MAIN,"Static",SS_BITMAP,0,0,109,193
  26. END
  27. IDD_CONFIRM DIALOG DISCARDABLE 0, 0, 317, 143
  28. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  29. CAPTION "Dialog"
  30. FONT 8, "MS Shell Dlg"
  31. BEGIN
  32. LTEXT "The setup wizard is ready to copy files to your local hard drive and continue with the installation. \n\nTo continue, click Next. \nTo exit the wizard without installing, click Cancel.",
  33. IDC_STATIC_CONFIRM_INSTALL,21,1,275,63
  34. END
  35. IDD_INSTALL DIALOG DISCARDABLE 0, 0, 317, 143
  36. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  37. CAPTION "Dialog"
  38. FONT 8, "MS Shell Dlg"
  39. BEGIN
  40. LTEXT "The setup wizard is detecting your system configuration and copying files onto your local hard drive to install the Directory Service Client for Windows. \n\nThe installation may take a few minutes. Please wait while the wizard configures your system.",
  41. IDC_STATIC,21,1,275,52
  42. CONTROL "Progress1",IDC_INSTALL_PROGRESS,"msctls_progress32",
  43. WS_BORDER,21,84,275,15
  44. LTEXT "",IDC_STATIC_FILENAME,77,71,220,12
  45. LTEXT "Destination file:",IDC_STATIC1,21,71,49,12
  46. END
  47. IDD_COMPLETION DIALOG DISCARDABLE 0, 0, 317, 193
  48. STYLE WS_CHILD | WS_DISABLED | WS_CAPTION
  49. CAPTION "Dialog"
  50. FONT 8, "MS Shell Dlg"
  51. BEGIN
  52. LTEXT "Static",IDC_STATIC_COMPLETION_TITLE,118,8,189,24
  53. LTEXT "Static",IDC_STATIC_COMPLETION,118,40,189,100
  54. CONTROL 132,IDB_MAIN,"Static",SS_BITMAP,0,0,15,13
  55. END
  56. /////////////////////////////////////////////////////////////////////////////
  57. //
  58. // Bitmap
  59. //
  60. IDB_HEADER BITMAP DISCARDABLE "Header.bmp"
  61. IDB_MAIN BITMAP DISCARDABLE "main.bmp"
  62. IDB_MAINBACKCOLOR BITMAP DISCARDABLE "MainBack.bmp"
  63. /////////////////////////////////////////////////////////////////////////////
  64. //
  65. // Icon
  66. //
  67. // Icon with lowest ID value placed first to ensure application icon
  68. // remains consistent on all systems.
  69. IDI_ICON_APP ICON DISCARDABLE "setup.ico"
  70. /////////////////////////////////////////////////////////////////////////////
  71. //
  72. // String Table
  73. //
  74. STRINGTABLE DISCARDABLE
  75. BEGIN
  76. IDS_SETUP_SUCCESS_TITLE "Installation completed"
  77. #ifdef MERRILL_LYNCH
  78. IDS_SETUP_SUCCESS "The installation of the Directory Service Client for Windows has completed successfully.\n\nClick Finish to exit the wizard."
  79. #else
  80. IDS_SETUP_SUCCESS "The installation of the Directory Service Client for Windows has completed successfully. \n\nWhen you click Finish, you will be prompted to restart your computer. \n\nIf there is a CD in your drive, remove it now. \nClick Finish to exit the wizard."
  81. #endif
  82. IDS_SETUP_CANCEL_TITLE "Installation was canceled"
  83. IDS_SETUP_CANCEL "The installation has been canceled. You will need to run the installer again later to complete the installation of the Directory Service Client for Windows. \n\nClick Finish to exit the wizard."
  84. IDS_SETUP_ERROR_TITLE "Installation failed"
  85. IDS_SETUP_ERROR "The setup wizard is unable to complete the installation. \n\nClick Finish to exit the wizard."
  86. IDS_CANCEL_TITLE "Warning"
  87. IDS_CANCEL_MSG "Are you sure that you want to cancel installation of the Directory Service Client for Windows?"
  88. IDS_ERROR_TITLE "Error"
  89. IDS_WARNING_TITLE "Setup Warning"
  90. IDS_ERROR_REGISTEROCX_MESSAGE "Failure to register DSUI dlls."
  91. IDS_ERROR_NODISKSPACE "No enough disk space. \nThe minimum requirement of disk space is"
  92. END
  93. STRINGTABLE DISCARDABLE
  94. BEGIN
  95. IDS_ERROR_WIZARD "Failure to load the DS Client Setup Wizard. The installation will terminate."
  96. IDS_WIZARD_TITLE "Directory Service Client Setup Wizard"
  97. IDS_HEADERTITLE_INSTALL "Installation"
  98. IDS_HEADERSUBTITLE_INSTALL
  99. "The setup wizard is now installing the Directory Service Client."
  100. IDS_HEADERTITLE_CONFIRM "Ready to install"
  101. IDS_HEADERSUBTITLE_CONFIRM
  102. "The setup wizard is ready to install the Directory Service Client."
  103. IDS_REINSTALL_MSG "The setup wizard has found a previous installation of the Directory Service Client for Windows on your computer. Do you want to reinstall it? \n\nTo continue, click Next. \nTo exit the wizard, click Cancel."
  104. END