1. Make sure that you have extracted the required .msi installer file, if you are using the network installer (see the Installing Plesk 8.1 for Windows Using Command Line Interface section for more details).
2. Create a file called install-plesk.cmd in your system. Copy the following information into it:
@echo off
if "%6" == "" (
echo " USAGE: install-plesk.cmd
echo " where
echo "
echo " complete - Complete Plesk installation
echo " typical - Typical Plesk installation
echo " - Complete Plesk installation without specified components (use a comma to separate the components)
echo "
echo "
echo "
exit /b 1
)
set plesk_distrib_dir=%~dp1
set plesk_msi_name=%~nx1
set plesk_dir=%~2
set plesk_non_typical=CommunitySK,Mambo,bbClone,gtChat,phpBB,phpBook,postNuke,Uebimiau,TimeTrackerSK,ReportsSK,KasperskyAV,SiteBuilder,PDFDoc,Python,JDK,Tomcat
if "%3" == "complete" set plesk_exclude=MSDE
if "%3" == "typical" set plesk_exclude=MSDE,%plesk_non_typical%
if "%plesk_exclude%" == "" set plesk_exclude=MSDE,%~3
@echo on
"%plesk_distrib_dir%\%plesk_msi_name%" /qn MSSQL_HOST=%4 MSSQL_ADMIN_NAME=%5 MSSQL_ADMIN_PASSWD=%6 INSTALLDIR="%plesk_dir%" ADDLOCAL=ALL REMOVE=%plesk_exclude% /l*v "%plesk_dir%\plesk-install.log"
If "%ERRORLEVEL%" NEQ "0" exit /b %ERRORLEVEL%
Note: You are welcome to change the script text above to best suit your needs. For example, you can change '/qn' to '/qb' in the script text, if you want to see the progress bar during the installation. Please make sure that you clearly understand what are you changing before making the changes, as SWsoft shall not be held liable in any manner whatsoever for any losses or damage caused by using the modified script text.
3. Open the command line interface (Start > Run > cmd.exe).
4. Run the following command to install Plesk without MSDE:
install-plesk.cmd
Important: This command will install all available Plesk components except those specified in place of
The following variables are used by this command:
*
*
*
*
*
*
5. The installer will proceed with installing Plesk without specified components and without MSDE.
No comments:
Post a Comment