Am trying to include SQL SERVER 2008 EXpress as a prerequest for my application but having difficulty installing because it got the following error:
The specified credentials for the SQL Server service are not valid. To continue, provide a valid account and password for the SQL Server service.
The command i am providing it is:
I created a bat file with the above commands [adding the file to execute of course) and works great. I even tried strong SAPWD but to no use. I am logged in as an administrator to a local computer [no domain, no network].
What am i missing?
The specified credentials for the SQL Server service are not valid. To continue, provide a valid account and password for the SQL Server service.
The command i am providing it is:
Code:
/qs /ACTION=Install /FEATURES=SQLEngine /INSTANCENAME=MOHSMS /SQLSVCACCOUNT="NT AUTHORITY\Network Service" /SQLSVCStartupType=Automatic /AddCurrentUserAsSqlAdmin /ENABLERANU=1 /SKIPRULES=RebootRequiredCheck /hideconsole /TIMESTAMP="VSExpress_10.0" /SAPWD="sapwd"
What am i missing?
Comment