ServiceProcessInstaller.Account 属性

定义

获取或设置运行该服务应用程序时所使用的帐户类型。

public:
 property System::ServiceProcess::ServiceAccount Account { System::ServiceProcess::ServiceAccount get(); void set(System::ServiceProcess::ServiceAccount value); };
public System.ServiceProcess.ServiceAccount Account { get; set; }
[System.ServiceProcess.ServiceProcessDescription("ServiceProcessInstallerAccount")]
public System.ServiceProcess.ServiceAccount Account { get; set; }
member this.Account : System.ServiceProcess.ServiceAccount with get, set
[<System.ServiceProcess.ServiceProcessDescription("ServiceProcessInstallerAccount")>]
member this.Account : System.ServiceProcess.ServiceAccount with get, set
Public Property Account As ServiceAccount

属性值

ServiceAccount,它定义系统运行此服务时所使用的帐户类型。 默认值为 User

属性

注解

Account当 属性为 User时, UsernamePassword 属性用于定义运行服务应用程序的帐户。

UsernamePassword 对允许服务在系统帐户以外的帐户下运行。 例如,这可以允许服务在没有用户登录时在重新启动时自动启动。 如果将 或 PasswordUsername空并设置为 AccountUser,则会在安装时提示输入有效的用户名和密码。

还可以指定服务在本地系统帐户下运行,或者作为本地或网络服务运行。 有关帐户类型的详细信息, ServiceAccount 请参阅 枚举。

适用于

另请参阅