Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.52
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
Windows /
diagnostics /
scheduled /
Maintenance /
Delete
Unzip
Name
Size
Permission
Date
Action
en-US
[ DIR ]
drwxrwxrwx
2023-03-23 12:54
pt-BR
[ DIR ]
drwxrwxrwx
2019-12-07 15:53
CL_Utility.ps1
13.54
KB
-rw-rw-rw-
2019-12-07 10:09
DiagPackage.diagpkg
11.16
KB
-rw-rw-rw-
2019-12-07 10:09
DiagPackage.dll
76.5
KB
-rw-rw-rw-
2019-12-07 10:09
RS_AdminDiagnosticHistory.ps1
1.12
KB
-rw-rw-rw-
2019-12-07 10:09
RS_MachineWERQueue.ps1
1.8
KB
-rw-rw-rw-
2019-12-07 10:09
RS_SyncSystemTime.ps1
1.85
KB
-rw-rw-rw-
2019-12-07 10:09
RS_UserDiagnosticHistory.ps1
1.11
KB
-rw-rw-rw-
2019-12-07 10:09
RS_UserWERQueue.ps1
1.76
KB
-rw-rw-rw-
2019-12-07 10:09
TS_DiagnosticHistory.ps1
2.53
KB
-rw-rw-rw-
2019-12-07 10:09
TS_InaccurateSystemTime.ps1
4.4
KB
-rw-rw-rw-
2019-12-07 10:09
TS_WERQueue.ps1
2.77
KB
-rw-rw-rw-
2019-12-07 10:09
Save
Rename
# Copyright � 2008, Microsoft Corporation. All rights reserved. trap {break} # Include common library . .\CL_Utility.ps1 Import-LocalizedData -BindingVariable localizationString -FileName CL_LocalizationData # Troubleshooting WER queue Write-DiagProgress -Activity $localizationString.CheckWERQueue [double]$freeSpace = Get-FreeSpace [double]$percentage = Get-Percentage [string]$userReportPath = Get-UserReportPath [string]$machineReportPath = Get-MachineReportPath [double]$userReportSize = Get-FolderSize $userReportPath [double]$machineReportSize = Get-FolderSize $machineReportPath [double]$totalSize = Format-DiskSpaceMB ($userReportSize + $machineReportSize) # Reporting $systemDrive = Get-SystemDriveInfo if($systemDrive -ne $null) { $systemDrive | Select-Object -Property @{Name=$localizationString.driveName;Expression={$_.DeviceID}},@{Name=$localizationString.FreeSpace;Expression={(Format-DiskSpaceGB $_.FreeSpace) + "GB"}},@{Name=$localizationString.totalSpace;Expression={(Format-DiskSpaceGB $_.Size) + "GB"}} | ConvertTo-Xml | Update-DiagReport -id SystemDriveInfo -Name $localizationString.systemDriveInfo_name -Description $localizationString.systemDriveInfo_description -rid "RC_WERQueue" } @{Name=$userReportPath;Space=$userReportSize} | Select-Object -Property @{Name=$localizationString.userReportPath;Expression={$_.Name}},@{Name=$localizationString.userReportSpace;Expression={(Format-DiskSpaceMB $_.Space) + "MB"}} | ConvertTo-Xml | Update-DiagReport -id UserReprotInfo -Name $localizationString.UserReportInfo_name -Description $localizationString.UserReportInfo_description -rid "RC_WERQueue" @{Name=$machineReportPath;Space=$machineReportSize} | Select-Object -Property @{Name=$localizationString.MachineReportPath;Expression={$_.Name}},@{Name=$localizationString.MachineReportSpace;Expression={(Format-DiskSpaceMB $_.Space) + "MB"}} | ConvertTo-Xml | Update-DiagReport -id AdminReprotInfo -Name $localizationString.MachineReportInfo_name -Description $localizationString.MachineReportInfo_description -rid "RC_WERQueue" if((($freeSpace + $userReportSize) -gt 0) -and ($percentage -ge 0)) { if(($userReportSize / ($freeSpace + $userReportSize)) * 100 -gt $percentage) { Update-Diagrootcause -ID "RC_WERQueue" -Detected $true -Parameter @{'UnwantedSpace'=(Format-DiskSpaceMB $totalSize)} return } } if((($freeSpace + $machineReportSize) -gt 0) -and ($percentage -ge 0)) { if(($machineReportSize / ($freeSpace + $machineReportSize) * 100 -gt $percentage)) { Update-DiagRootcause -ID "RC_WERQueue" -Detected $true -Parameter @{'UnwantedSpace'=(Format-DiskSpaceMB $totalSize)} return } } Update-DiagRootcause -ID "RC_WERQueue" -Detected $false -Parameter @{'UnwantedSpace'=(Format-DiskSpaceMB $totalSize)}