0 Pluspunkte 0 Minuspunkte
Wie kann ich in Powershell alle COM Ports anzeigen?
von  

1 Antwort

0 Pluspunkte 0 Minuspunkte

Hier ist ein kleines Script.

$comPorts = [System.IO.Ports.SerialPort]::GetPortNames()

if ($comPorts.Count -eq 0) {
    Write-Host "Keine COM-Ports gefunden."
} else {
    Write-Host "Verfügbare COM-Ports:"
    $comPorts | ForEach-Object {
        Write-Host $_
    }
}
von