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.

 All Forums
 SQL Server 2005 Forums
 SQL Server Administration (2005)
 SQL Server Setup could not validate the servce a/c

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=SQL

Can anyone help me figure out the issue..


Thanks in advance,
Rushabh

DBA

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_Tools90

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=SQL






DBA
Go to Top of Page
   

- Advertisement -