Bravo a mi compañero de trabajo (Bruce Eddy). Él encontró una manera que podemos hacer esta llamada de línea de comandos:
installutil.exe /user=uname /password=pw myservice.exe
Se realiza reemplazando OnBeforeInstall en la clase de instalación:
namespace Test
{
[RunInstaller(true)]
public class TestInstaller : Installer
{
private ServiceInstaller serviceInstaller;
private ServiceProcessInstaller serviceProcessInstaller;
public OregonDatabaseWinServiceInstaller()
{
serviceInstaller = new ServiceInstaller();
serviceInstaller.StartType = System.ServiceProcess.ServiceStartMode.Automatic;
serviceInstaller.ServiceName = "Test";
serviceInstaller.DisplayName = "Test Service";
serviceInstaller.Description = "Test";
serviceInstaller.StartType = ServiceStartMode.Automatic;
Installers.Add(serviceInstaller);
serviceProcessInstaller = new ServiceProcessInstaller();
serviceProcessInstaller.Account = ServiceAccount.User;
Installers.Add(serviceProcessInstaller);
}
public string GetContextParameter(string key)
{
string sValue = "";
try
{
sValue = this.Context.Parameters[key].ToString();
}
catch
{
sValue = "";
}
return sValue;
}
// Override the 'OnBeforeInstall' method.
protected override void OnBeforeInstall(IDictionary savedState)
{
base.OnBeforeInstall(savedState);
string username = GetContextParameter("user").Trim();
string password = GetContextParameter("password").Trim();
if (username != "")
serviceProcessInstaller.Username = username;
if (password != "")
serviceProcessInstaller.Password = password;
}
}
}
Para cualquiera que use esto, asegúrese de que todos los argumentos preceden al ".exe" del servicio en la línea de comando, de lo contrario no se procesan/pasan. –
Esto incluirá el nombre de usuario/contraseña en el archivo de registro de instalación. A menos que deshabilite la escritura de archivos de registro, esta información permanecerá, lo cual es bastante peligroso, creo. No he encontrado una mejor solución todavía :( – flayn
Esto incluso funciona con ManagedInstallerClass ManagedInstallerClass.InstallHelper (nueva cadena [] {"/ user = theUserName", "/ password = ******", Assembly. GetExecutingAssembly(). Location}); –