現在、いくつかのWindowsサービスをインストールする展開スクリプトを書いています。
サービス名はバージョン管理されているため、新しいサービスのインストールの一部として、以前のWindowsサービスバージョンを削除します。
PowerShellでこれを行うにはどうすればよいですか?
Powershell 6.0まではRemove-Service
コマンドレットがないため、これにはWMIまたは他のツールを使用できます( Remove-Service docを参照)
例えば:
$service = Get-WmiObject -Class Win32_Service -Filter "Name='servicename'"
$service.delete()
または、sc.exe
ツールで:
sc.exe delete ServiceName
最後に、PowerShell 6.0にアクセスできる場合:
Remove-Service -Name ServiceName
仕事に適切なツールを使用しても害はありません、実行中です(Powershellから)
sc.exe \\server delete "MyService"
多くの依存関係を持たない最も信頼できる方法。
サービスの存在のみを確認する場合:
if (Get-Service "My Service" -ErrorAction SilentlyContinue)
{
"service exists"
}
「-ErrorAction SilentlyContinue」ソリューションを使用しましたが、後でエラーレコードが残るという問題に遭遇しました。そのため、「Get-Service」を使用してサービスが存在するかどうかを確認するだけの別のソリューションがあります。
# Determines if a Service exists with a name as defined in $ServiceName.
# Returns a boolean $True or $False.
Function ServiceExists([string] $ServiceName) {
[bool] $Return = $False
# If you use just "Get-Service $ServiceName", it will return an error if
# the service didn't exist. Trick Get-Service to return an array of
# Services, but only if the name exactly matches the $ServiceName.
# This way you can test if the array is emply.
if ( Get-Service "$ServiceName*" -Include $ServiceName ) {
$Return = $True
}
Return $Return
}
[bool] $thisServiceExists = ServiceExists "A Service Name"
$thisServiceExists
しかし、サービスが存在しない場合でもGet-WmiObjectはエラーをスローしないため、ravikanthが最適なソリューションを提供します。だから私は使用することに決めました:
Function ServiceExists([string] $ServiceName) {
[bool] $Return = $False
if ( Get-WmiObject -Class Win32_Service -Filter "Name='$ServiceName'" ) {
$Return = $True
}
Return $Return
}
より完全なソリューションを提供するには:
# Deletes a Service with a name as defined in $ServiceName.
# Returns a boolean $True or $False. $True if the Service didn't exist or was
# successfully deleted after execution.
Function DeleteService([string] $ServiceName) {
[bool] $Return = $False
$Service = Get-WmiObject -Class Win32_Service -Filter "Name='$ServiceName'"
if ( $Service ) {
$Service.Delete()
if ( -Not ( ServiceExists $ServiceName ) ) {
$Return = $True
}
} else {
$Return = $True
}
Return $Return
}
PSの最新バージョンにはRemove-WmiObjectがあります。 $ service.delete()のサイレントに失敗することに注意してください...
PS D:\> $s3=Get-WmiObject -Class Win32_Service -Filter "Name='TSATSvrSvc03'"
PS D:\> $s3.delete()
...
ReturnValue : 2
...
PS D:\> $?
True
PS D:\> $LASTEXITCODE
0
PS D:\> $result=$s3.delete()
PS D:\> $result.ReturnValue
2
PS D:\> Remove-WmiObject -InputObject $s3
Remove-WmiObject : Access denied
At line:1 char:1
+ Remove-WmiObject -InputObject $s3
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidOperation: (:) [Remove-WmiObject], ManagementException
+ FullyQualifiedErrorId : RemoveWMIManagementException,Microsoft.PowerShell.Commands.RemoveWmiObject
PS D:\>
私の状況では、「管理者として」実行する必要がありました
このバージョンには削除サービスが存在しないため、Powershell 5.0で複数のサービスを削除するには
以下のコマンドを実行します
Get-Service -Displayname "*ServiceName*" | ForEach-object{ cmd /c sc delete $_.Name}
Where-Objectを使用できます
if ((Get-Service | Where-Object {$_.Name -eq $serviceName}).length -eq 1) { "Service Exists" }
Dmitriとdcxの答えを組み合わせて、私はこれを作りました:
function Confirm-WindowsServiceExists($name)
{
if (Get-Service $name -ErrorAction SilentlyContinue)
{
return $true
}
return $false
}
function Remove-WindowsServiceIfItExists($name)
{
$exists = Confirm-WindowsServiceExists $name
if ($exists)
{
sc.exe \\server delete $name
}
}
単一のPCの場合:
if (Get-Service "service_name" -ErrorAction 'SilentlyContinue'){(Get-WmiObject -Class Win32_Service -filter "Name='service_name'").delete()}
else{write-Host "No service found."}
PCのリストのマクロ:
$name = "service_name"
$list = get-content list.txt
foreach ($server in $list) {
if (Get-Service "service_name" -computername $server -ErrorAction 'SilentlyContinue'){
(Get-WmiObject -Class Win32_Service -filter "Name='service_name'" -ComputerName $server).delete()}
else{write-Host "No service $name found on $server."}
}
MySuperServiceVersion1
という名前のWindowsサービスが存在するかどうかを確認するには、正確な名前がわからない場合でも、次のようなサブストリングを使用してワイルドカードを使用できます。
if (Get-Service -Name "*SuperService*" -ErrorAction SilentlyContinue)
{
# do something
}
PowerShellCore (v6 +)に Remove-Service
コマンドレット 。
WindowsPowerShellにバックポートする計画については知りませんが、v5.1では利用できませんnot 。
例:
# PowerShell *Core* only (v6+)
Remove-Service someservice
サービスが存在しない場合は呼び出しが失敗するので、現在存在する場合にのみ削除するには、次のようにすることができます。
# PowerShell *Core* only (v6+)
$name = 'someservice'
if (Get-Service $name -ErrorAction Ignore) {
Remove-Service $name
}
サーバーの入力リストを取得し、ホスト名を指定し、有用な出力を提供するようにこれを調整しました
$name = "<ServiceName>"
$servers = Get-content servers.txt
function Confirm-WindowsServiceExists($name)
{
if (Get-Service -Name $name -Computername $server -ErrorAction Continue)
{
Write-Host "$name Exists on $server"
return $true
}
Write-Host "$name does not exist on $server"
return $false
}
function Remove-WindowsServiceIfItExists($name)
{
$exists = Confirm-WindowsServiceExists $name
if ($exists)
{
Write-Host "Removing Service $name from $server"
sc.exe \\$server delete $name
}
}
ForEach ($server in $servers) {Remove-WindowsServiceIfItExists($name)}
V6より前のPowerShellバージョンでは、これを行うことができます。
Stop-Service 'YourServiceName'; Get-CimInstance -ClassName Win32_Service -Filter "Name='YourServiceName'" | Remove-CimInstance
V6 +では、 Remove-Serviceコマンドレット を使用できます。
Windows PowerShell 3.0以降では、 コマンドレットGet-WmiObject がGet-CimInstanceに置き換えられていることに注意してください。
Windows Powershell 6にはRemove-Serviceコマンドレットがあります。現在、GithubリリースはPS v6ベータ-9を示しています