fix: -OutputEncoding entfernt (inkompatibel), KB null-safe, exec via PS
This commit is contained in:
parent
557e59bfc5
commit
a97b17a682
@ -235,9 +235,7 @@ func (h *Handler) handleReboot(msg Message) Message {
|
||||
// Hilfsfunktionen
|
||||
|
||||
func runWithTimeout(command string, timeoutSecs int) (string, error) {
|
||||
// PowerShell verwenden — unterstuetzt winget, UTF-8, moderne Windows-Befehle
|
||||
cmd := exec.Command("powershell", "-NoProfile", "-NonInteractive",
|
||||
"-OutputEncoding", "UTF8", "-Command", command)
|
||||
cmd := exec.Command("powershell", "-NoProfile", "-NonInteractive", "-Command", command)
|
||||
out, err := withTimeout(cmd, time.Duration(timeoutSecs)*time.Second)
|
||||
return out, err
|
||||
}
|
||||
|
||||
@ -415,7 +415,7 @@ function WindowsUpdatesTab({ agentId }) {
|
||||
const [checking, setChecking] = useState(false)
|
||||
const [installing, setInstalling] = useState(false)
|
||||
|
||||
const script = `$s = New-Object -ComObject Microsoft.Update.Session; $r = $s.CreateUpdateSearcher().Search("IsInstalled=0 and Type='Software'"); $r.Updates | ForEach-Object { Write-Output "KB$($_.KBArticleIDs[0]) — $($_.Title)" }; Write-Output "---"; Write-Output "Gesamt: $($r.Updates.Count) Updates ausstehend"`
|
||||
const script = `$s = New-Object -ComObject Microsoft.Update.Session; $r = $s.CreateUpdateSearcher().Search("IsInstalled=0 and Type='Software'"); $r.Updates | ForEach-Object { $kb = if ($_.KBArticleIDs.Count -gt 0) { "KB$($_.KBArticleIDs[0])" } else { "---" }; Write-Output "$kb - $($_.Title)" }; Write-Output ""; Write-Output "Gesamt: $($r.Updates.Count) Updates ausstehend"`
|
||||
|
||||
const check = async () => {
|
||||
setChecking(true)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user