You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@"Run the service with the network service permission.",
151
+
s =>{ServiceAccount=ServiceAccount.NetworkService;}
152
152
},
153
153
{
154
154
"user",
155
-
@"Run the service with the specified username and password. Alternative the system will prompt for a valid username and password if values for both the username and password are not specified."
156
-
,s =>{ServiceAccount=ServiceAccount.User;}
155
+
@"Run the service with the specified username and password. Alternative the system will prompt for a valid username and password if values for both the username and password are not specified.",
156
+
s =>{ServiceAccount=ServiceAccount.User;}
157
157
},
158
158
{
159
159
"delayed",
160
-
@"The service should start automatically (delayed)."
161
-
,s =>{startMode=StartMode.Delay;}
160
+
@"The service should start automatically (delayed).",
161
+
s =>{startMode=StartMode.Delay;}
162
162
},
163
163
{
164
164
"autostart",
165
-
@"The service should start automatically (default)."
166
-
,s =>{startMode=StartMode.Automatic;}
165
+
@"The service should start automatically (default).",
166
+
s =>{startMode=StartMode.Automatic;}
167
167
},
168
168
{
169
169
"disabled",
170
-
@"The service should be set to disabled."
171
-
,s =>{startMode=StartMode.Disabled;}
170
+
@"The service should be set to disabled.",
171
+
s =>{startMode=StartMode.Disabled;}
172
172
},
173
173
{
174
174
"manual",
175
-
@"The service should be started manually."
176
-
,s =>{startMode=StartMode.Manual;}
175
+
@"The service should be started manually.",
176
+
s =>{startMode=StartMode.Manual;}
177
177
},
178
178
{
179
179
"servicecontrolurl=",
180
-
@"Configures the service control url."
181
-
,s =>{serviceControlUrl=s;}
180
+
@"Configures the service control url.",
181
+
s =>{serviceControlUrl=s;}
182
182
},
183
183
{
184
184
"servicecontrolmonitoringurl=",
185
-
@"Configures the service control monitoring url."
186
-
,s =>{serviceControlMonitoringUrl=s;}
185
+
@"Configures the service control monitoring url.",
186
+
s =>{serviceControlMonitoringUrl=s;}
187
187
},
188
188
{
189
189
"url=",
190
-
@"Configures ServicePulse to listen on the specified url."
191
-
,s =>{url=s;}
190
+
@"Configures ServicePulse to listen on the specified url.",
191
+
s =>{url=s;}
192
192
}
193
193
};
194
194
@@ -211,7 +211,7 @@ public HostArguments(string[] args)
211
211
return;
212
212
}
213
213
214
-
unknownArgsList=extractOptions.Parse(args);
214
+
unknownArgsList=extractOptions.Parse(args);
215
215
if(executionMode==ExecutionMode.Extract)
216
216
{
217
217
ThrowIfUnknownArgs(unknownArgsList);
@@ -250,7 +250,8 @@ void ValidateArgs()
250
250
{
251
251
caseExecutionMode.Extract:
252
252
caseExecutionMode.Install:
253
-
if(!string.IsNullOrEmpty(ServiceControlUrl))// param for sc url is optional.
0 commit comments