Add nettest.ps1
This commit is contained in:
parent
faecf0e8d9
commit
bf0ac45cf5
8
nettest.ps1
Normal file
8
nettest.ps1
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
Get-ChildItem "$env:LOCALAPPDATA\Roblox\logs" -Filter "*.log" |
|
||||
Sort-Object LastWriteTime -Descending |
|
||||
Select-Object -First 8 |
|
||||
ForEach-Object {
|
||||
Write-Host "`n===== $($_.Name) =====" -ForegroundColor Cyan
|
||||
Select-String $_.FullName -Pattern "HttpError|NetFail|marketplace|assetdelivery|asset|model|rbxcdn|create|develop|apis|cdn|failed|timeout" -CaseSensitive:$false |
|
||||
Select-Object -Last 200
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user