public ManagedWindowsServiceLauncher(String userName, String password, String host) {
this(userName, password, host, null, null);
}
public ManagedWindowsServiceLauncher(String userName, String password, String host, AccountInfo account) {
this(userName,password,host,account==null ? new LocalSystem() : new AnotherUser(account.userName,account.password), null);
}