Set-Service
启动、停止和挂起服务,并更改其属性。
语法
Set-Service
[-Name] <String>
[-DisplayName <String>]
[-Credential <PSCredential>]
[-Description <String>]
[-StartupType <ServiceStartupType>]
[-Status <String>]
[-SecurityDescriptorSddl <String>]
[-Force]
[-PassThru]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Set-Service
[-InputObject] <ServiceController>
[-DisplayName <String>]
[-Credential <PSCredential>]
[-Description <String>]
[-StartupType <ServiceStartupType>]
[-SecurityDescriptorSddl <String>]
[-Status <String>]
[-Force]
[-PassThru]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
说明
此 cmdlet 仅在 Windows 平台上可用。
Set-Service
cmdlet 更改服务的属性,例如 状态、Description、DisplayName和 StartupType。
Set-Service
可以启动、停止、暂停或暂停服务。 若要标识服务,请输入其服务名称或提交服务对象。 或者,将服务名称或服务对象向下发送到管道 Set-Service
。
示例
示例 1:更改显示名称
在此示例中,服务的显示名称已更改。 若要查看原始显示名称,请使用 Get-Service
。
Set-Service -Name LanmanWorkstation -DisplayName "LanMan Workstation"
Set-Service
使用 Name 参数来指定服务的名称,LanmanWorkstation。
DisplayName 参数指定新的显示名称,LanMan Workstation。
示例 2:更改服务的启动类型
此示例演示如何更改服务的启动类型。
Set-Service -Name BITS -StartupType Automatic
Get-Service BITS | Select-Object -Property Name, StartType, Status
Name StartType Status
---- --------- ------
BITS Automatic Running
Set-Service
使用 Name 参数指定服务的名称,BITS。
StartupType 参数将服务设置为 自动。
Get-Service
使用 Name 参数指定 BITS 服务,并将对象发送到管道。
Select-Object
使用 属性 参数显示 BITS 服务的状态。
示例 3:更改服务的说明
此示例更改 BITS 服务的说明并显示结果。
使用 Get-CimInstance
cmdlet,因为它返回 Win32_Service 对象,该对象包含服务的 Description。
Get-CimInstance Win32_Service -Filter 'Name = "BITS"' | Format-List Name, Description
Name : BITS
Description : Transfers files in the background using idle network bandwidth. If the service is
disabled, then any applications that depend on BITS, such as Windows Update or MSN
Explorer, will be unable to automatically download programs and other information.
Set-Service -Name BITS -Description "Transfers files in the background using idle network bandwidth."
Get-CimInstance Win32_Service -Filter 'Name = "BITS"' | Format-List Name, Description
Name : BITS
Description : Transfers files in the background using idle network bandwidth.
Get-CimInstance
将对象向下发送到管道 Format-List
,并显示服务的名称和说明。 出于比较目的,命令在更新说明之前和之后运行。
Set-Service
使用 Name 参数来指定 BITS 服务。
Description 参数指定服务说明的更新文本。
示例 4:启动服务
在此示例中,将启动服务。
Set-Service -Name WinRM -Status Running -PassThru
Status Name DisplayName
------ ---- -----------
Running WinRM Windows Remote Management (WS-Manag...
Set-Service
使用 Name 参数来指定服务,WinRM。
Status 参数使用 运行 的值来启动服务。
PassThru 参数输出显示结果的 ServiceController 对象。
示例 5:暂停服务
此示例使用管道暂停到服务。
Get-Service -Name Schedule | Set-Service -Status Paused
Get-Service
使用 Name 参数来指定 计划 服务,并将对象发送到管道。
Set-Service
使用 Status 参数将服务设置为 暂停。
示例 6:停止服务
此示例使用变量来停止服务。
$S = Get-Service -Name Schedule
Set-Service -InputObject $S -Status Stopped
Get-Service
使用 Name 参数来指定服务,Schedule。 对象存储在变量中,$S
。
Set-Service
使用 InputObject 参数并指定存储 $S
的对象。
Status 参数将服务设置为 已停止。
示例 7:停止远程系统上的服务
此示例停止远程计算机上的服务。 有关详细信息,请参阅 Invoke-Command。
$Cred = Get-Credential
$S = Get-Service -Name Schedule
Invoke-Command -ComputerName server01.contoso.com -Credential $Cred -ScriptBlock {
Set-Service -InputObject $S -Status Stopped
}
Get-Credential
提示输入用户名和密码,并将凭据存储在 $Cred
变量中。
Get-Service
使用 Name 参数来指定 计划 服务。 对象存储在变量中,$S
。
Invoke-Command
使用 ComputerName 参数指定远程计算机。
Credential 参数使用 $Cred
变量登录到计算机。
ScriptBlock 调用 Set-Service
。
InputObject 参数指定存储 $S
的服务对象。
Status 参数将服务设置为 已停止。
示例 8:更改服务的凭据
此示例更改用于管理服务的凭据。
$credential = Get-Credential
Set-Service -Name Schedule -Credential $credential
Get-Credential
提示输入用户名和密码,并将凭据存储在 $credential
变量中。
Set-Service
使用 Name 参数来指定 计划 服务。
Credential 参数使用 $credential
变量并更新 计划 服务。
示例 9:更改服务的 SecurityDescriptor
此示例更改服务的 SecurityDescriptor。
$SDDL = "D:(A;;CCLCSWRPWPDTLOCRRC;;;SY)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCLCSWLOCRRC;;;SU)"
Set-Service -Name "BITS" -SecurityDescriptorSddl $SDDL
SecurityDescriptor 存储在 $SDDL
变量中。
Set-Service
使用 Name 参数来指定 BITS 服务。
SecurityDescriptorSddl 参数使用 $SDDL
更改 BITS 服务的 SecurityDescriptor。
示例 10:设置多个服务的启动类型
Set-Service
cmdlet 一次只接受一个服务名称。 但是,可以通过管道将多个服务传递给 Set-Service
以更改多个服务的配置。
Get-Service SQLWriter,spooler |
Set-Service -StartupType Automatic -PassThru |
Select-Object Name, StartType
Name StartType
---- ---------
spooler Automatic
SQLWriter Automatic
参数
-Confirm
在运行 Set-Service
之前,提示你进行确认。
类型: | SwitchParameter |
别名: | cf |
Position: | Named |
默认值: | False |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Credential
将服务使用的帐户指定为 服务登录帐户。
键入用户名(如 User01 或 Domain01\User01),或输入 PSCredential 对象,例如由 Get-Credential
cmdlet 生成的用户名。 如果键入用户名,此 cmdlet 会提示输入密码。
凭据存储在 PSCredential 对象中,密码存储为 SecureString。
注意
有关 SecureString 数据保护的详细信息,请参阅 SecureString 的安全性如何?。
此参数是在 PowerShell 6.0 中引入的。
类型: | PSCredential |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Description
指定服务的新说明。
服务说明显示在 计算机管理、服务中。
Description 不是 Get-Service
ServiceController 对象的属性。 若要查看服务说明,请使用返回表示服务的 Win32_Service 对象的 Get-CimInstance
。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-DisplayName
指定服务的新显示名称。
注意
通常,Set-Service
仅在 Windows 服务上运行,而不是驱动程序。 但是,如果指定驱动程序的名称,Set-Service
可以面向驱动程序。
类型: | String |
别名: | DN |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Force
指定服务的停止模式。 此参数仅在使用 -Status Stopped
时才有效。 如果启用,Set-Service
停止目标服务之前停止依赖服务。 默认情况下,当其他正在运行的服务依赖于目标服务时,将引发异常。
类型: | SwitchParameter |
Position: | Named |
默认值: | False |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-InputObject
指定一个 ServiceController 对象,该对象表示要更改的服务。 输入包含对象的变量,或键入获取对象的命令或表达式,例如 Get-Service
命令。 可以使用管道将服务对象发送到 Set-Service
。
类型: | ServiceController |
Position: | 0 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-Name
指定要更改的服务的服务名称。 不允许使用通配符。 可以使用管道将服务名称发送到 Set-Service
。
注意
通常,Set-Service
仅在 Windows 服务上运行,而不是驱动程序。 但是,如果指定驱动程序的名称,Set-Service
可以面向驱动程序。
类型: | String |
别名: | ServiceName, SN |
Position: | 0 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-PassThru
返回一个 ServiceController 对象,该对象表示已更改的服务。 默认情况下,Set-Service
不会生成任何输出。
类型: | SwitchParameter |
Position: | Named |
默认值: | False |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-SecurityDescriptorSddl
以 Sddl 格式指定服务的 SecurityDescriptor。 使用此参数调用 Set-Service
的帐户必须具有WRITE_DAC和WRITE_OWNER权限。 有关详细信息,请参阅 服务安全性和访问权限。
类型: | String |
别名: | sd |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-StartupType
指定服务的启动模式。
此参数的可接受值如下所示:
- 自动 - 服务在系统启动时启动或由操作系统启动。 如果自动启动的服务依赖于手动启动的服务,则系统启动时也会自动启动手动启动服务。
- AutomaticDelayedStart - 系统启动后不久启动。
- 禁用 - 服务已禁用,不能由用户或应用程序启动。
- InvalidValue - 不起作用。 该 cmdlet 不返回错误,但服务的 StartupType 不会更改。
- 手动 - 服务仅由用户使用服务控制管理器或应用程序手动启动。
类型: | ServiceStartupType |
别名: | StartMode, SM, ST, StartType |
接受的值: | Automatic, AutomaticDelayedStart, Disabled, InvalidValue, Manual |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Status
指定服务的状态。
此参数的可接受值如下所示:
- 暂停。 暂停服务。
- 运行。 启动服务。
- 已停止。 停止服务。
类型: | String |
接受的值: | Paused, Running, Stopped |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-WhatIf
显示 Set-Service
运行时会发生什么情况。 该 cmdlet 未运行。
类型: | SwitchParameter |
别名: | wi |
Position: | Named |
默认值: | False |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
输入
可以通过管道将服务对象传递给此 cmdlet。
可以通过管道将包含服务名称的字符串传递给此 cmdlet。
输出
None
默认情况下,此 cmdlet 不返回任何输出。
使用 PassThru 参数时,此 cmdlet 将返回 ServiceController 对象。
备注
此 cmdlet 仅在 Windows 平台上可用。
Set-Service
需要提升的权限。 使用 以管理员身份运行 选项。
Set-Service
只能在当前用户有权管理服务时控制服务。 如果命令无法正常工作,则可能没有所需的权限。
若要查找服务的服务名称或显示名称,请使用 Get-Service
。 服务名称位于 名称 列中,显示名称位于 DisplayName 列中。