ServiceProcessInstaller.Account 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置运行该服务应用程序时所使用的帐户类型。
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
时, Username 和 Password 属性用于定义运行服务应用程序的帐户。
Username和 Password 对允许服务在系统帐户以外的帐户下运行。 例如,这可以允许服务在没有用户登录时在重新启动时自动启动。 如果将 或 Password 留Username空并设置为 AccountUser
,则会在安装时提示输入有效的用户名和密码。
还可以指定服务在本地系统帐户下运行,或者作为本地或网络服务运行。 有关帐户类型的详细信息, ServiceAccount 请参阅 枚举。