Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
Rushabh
Starting Member
11 Posts |
Posted - 2008-10-06 : 09:14:53
|
Hi,I am trying to make an unattended SQL Server 2005 installation from command prompt. But I am getting an error SQL Server Setup could not validate the service accounts. the query that I am using over here is below.Start /wait D:\setup.exe /qb INSTANCENAME=MSSQLSERVER ADDLOCAL=SQL_Engine SAPWD=****** SQLBROWSERACCOUNT='NT AUTHORITY\SYSTEM' SQLBROWSERPASSWORD=****** SQLACCOUNT='NT AUTHORITY\SYSTEM' SQLPASSWORD=****** AGTACCOUNT='NT AUTHORITY\SYSTEM' AGTPASSWORD=****** SECURITYMODE=SQLCan anyone help me figure out the issue..Thanks in advance,RushabhDBA |
|
Rushabh
Starting Member
11 Posts |
Posted - 2008-10-06 : 09:37:25
|
hello everybody,i found an answer to my question.below are the scripts that I used for this unattended installation of sql server 2005 standard edition from the command prompt..Start /wait D:\setup.exe /qb ADDLOCAL=Client_Components,Connectivity,SQL_Documentation,SQL_Tools90Start /wait D:\setup.exe /qb INSTANCENAME=MSSQLSERVER ADDLOCAL=SQL_Engine SAPWD=****** SQLBROWSERACCOUNT="NT AUTHORITY\SYSTEM" SQLBROWSERPASSWORD=****** SQLACCOUNT="NT AUTHORITY\SYSTEM" SQLPASSWORD=****** AGTACCOUNT="NT AUTHORITY\SYSTEM" AGTPASSWORD=****** SECURITYMODE=SQLDBA |
 |
|
|
|
|