Reference Implementation installation parameters for Windows OS

When carrying out a Windows installation of the Reference Implementation, use this listing of the parameters with descriptions and examples to understand what you are doing

ParameterDescriptionExampleMandatory (M) or Optional (O)
ClientIdThe user id used for authenticating to the Content Delivery system.cduserM
ClientSecretThe password used for this client id to connect to the Content Delivery services. This needs to be a valid System.Security.SecureString .In this PowerShell example, a plain text password is converted to a secure string format.$clientSecret = "****" | ConvertTo-SecureString -AsPlainText -ForceM
ContextThe Tomcat context path to deploy the website. Defaults to "/"./stagingO
DiscoveryUrlThe URL of the Discovery service (CIS). If you are using Content Delivery hosted by SDL, then you can obtain the Discovery Service URL value from SDL Customer Service.http://mycompany.com:8082/discovery.svcM
EnableFeaturesA comma-separated list of features that you wish to enable in the web app. For now, the only feature that can be included in this list is commenting.commentingO
LogLevelLog level, possible values are ALL, TRACE, DEBUG, INFO, WARN, ERROR, OFF. Default value is WARN. Either lower case or upper case values are acceptable.INFOO
LogDirectoryThe directory where the log files are stored. Default location is inside the tomcat installation folder (for example C:/Program Files/Apache Software Foundation/Tomcat 8.5/webapps/ROOT/logs/DXA).c:/temp/web-app/logs O
TomcatServiceNameWindows Service name of the Tomcat installation. When not specified looks for a service with the name "Tomat8" or "Tomcat9".Tomcat8 O