Wieso funktioniert ein findStr in Powershell mit Leerzeichen nicht?
invoke-command -computername "fileserver" -scriptblock { $res = openfiles /query /v $res | findstr "und AQUAS" }
Du kannst das die Ausgabe lokal speichern und filtern.
$res = invoke-command -computername "fileserver" -scriptblock { openfiles /query /v } $res | Select-String "und AQUAS"