From 1e7e1306a9289fdfd140a19f8c584b6b4f66e50b Mon Sep 17 00:00:00 2001 From: Kirill Menshikov Date: Sun, 7 Jun 2026 17:18:15 +0300 Subject: [PATCH] Update nettest.ps1 --- nettest.ps1 | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/nettest.ps1 b/nettest.ps1 index e9db822..8b800c9 100644 --- a/nettest.ps1 +++ b/nettest.ps1 @@ -1,8 +1,3 @@ -Get-ChildItem "$env:LOCALAPPDATA\Roblox\logs" -Filter "*.log" | - Sort-Object LastWriteTime -Descending | - Select-Object -First 10 | - ForEach-Object { - Write-Host "`n===== $($_.Name) =====" -ForegroundColor Cyan - Select-String $_.FullName -Pattern "HttpError|Timeout|NewExperience|Experience|Universe|universes|place|create|publish|apis|develop|www.roblox.com|ecsv2|netfail|failed|POST|PUT" -CaseSensitive:$false | - Select-Object -Last 200 - } \ No newline at end of file +Get-CimInstance Win32_Process | + Where-Object { $_.Name -like "*winws*" } | + Select-Object -ExpandProperty CommandLine \ No newline at end of file