I use the following command to install SQL Server Express 2008 R2 on various operating systems (Windows XP. Server 2003, Server 2008, Server 2008 R2 and 7), but I'm not sure which account to use (and why) for the SQLSVCACCOUNT parameter. This installation of SQL Server will be part of a web application running on the same computer, and all of this will be installed using an NSIS script.
SQLEXPRWT_x86_ENU.exe /Q /ACTION=Install /IACCEPTSQLSERVERLICENSETERMS /ROLE=AllFeatures_WithDefaults /SQLSVCACCOUNT="NT AUTHORITY\Network Service" /INSTANCENAME=SQLEXPRESS /SecurityMode=SQL /SAPWD="xxxxxxx"
Will the "NT \ Network Service" work for all operating systems on my list? Or maybe I should use a different account at all?
source share