I'm trying to install SQL SERVER DEVELOPER EDITION in SQL Mode using Chocolatey.
$pwd = [Guid]::NewGuid().ToString('N')
choco install -y sql-server-2017 "/IACCEPTSQLSERVERLICENSETERMS /Q /ACTION=install /INSTANCEID=MSSQLSERVER /INSTANCENAME=MSSQLSERVER /SECURITYMODE=SQL /SAPWD=$pwd”
Here is the error it throws -
ERROR: Running ["E:\setup.exe" /IAcceptSqlServerLicenseTerms /Q /CONFIGURATIONFILE="C:\ProgramData\chocolatey\lib\sql-server-2017\tools\ConfigurationFile.ini" /SQLSYSADMINACCOUNTS="DESKTOP-HOR5C91\madhu" /SAPWD="f577e388131a4af3b3bad077fb874e02" /SECURITYMODE="SQL" ] was not successful. Exit code was '-2067919934'.
Any idea how to resolve the issue?