1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【powershell】特定のプリンタドライバを使用しているプリンタを端末から削除する方法

Posted at
# 特定のプリンタドライバ名を指定
$targetDriverName = "対象のドライバ名"  # 例: "Microsoft XPS Document Writer v4"

# 指定したドライバを使用しているプリンタを取得
$printers = Get-WmiObject -Class Win32_Printer | Where-Object { $_.DriverName -eq $targetDriverName }

# 該当するプリンタがあるか確認
if ($printers.Count -eq 0) {
    Write-Output "指定されたドライバを使用しているプリンタは見つかりませんでした。"
} else {
    # 該当するプリンタを削除
    foreach ($printer in $printers) {
        Write-Output "プリンタ $($printer.Name) を削除しています..."
        $printer.Delete()
        Write-Output "プリンタ $($printer.Name) を削除しました。"
    }
    Write-Output "処理が完了しました。"
}
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?