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. # Get parameter from troubleshooting script Param($originalSize) trap { break } # Include common library . .\CL_Utility.ps1 Import-LocalizedData -BindingVariable localizationString -FileName CL_LocalizationData # Delete user troubleshooting history Write-DiagProgress -Activity $localizationString.DeleteUserTSHistory [string]$userTSHistoryPath = Get-UserTSHistoryPath Delete-OldFolders (Get-Item $userTSHistoryPath) [double]$userTSHistorySize = Get-FolderSize $userTSHistoryPath [double]$reclaimedSpace = ($originalSize - $userTSHistorySize) if($reclaimedSpace -gt 0.0) { @{Name=$userTSHistoryPath;ReclaimedSpace=$reclaimedSpace} | Select-Object -Property @{Name=$localizationString.userTSHistoryPath;Expression={$_.Name}},@{Name=$localizationString.reclaimedUserTSHistorySize;Expression={(Format-DiskSpaceMB $_.ReclaimedSpace) + "MB"}} | ConvertTo-Xml | Update-DiagReport -id ReclaimedUserTSHistoryInfo -Name $localizationString.ReclaimedUserTSHistroyInfo_name -Description $localizationString.ReclaimedUserTSHistroyInfo_description }