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. #Import-LocalizedData -BindingVariable localizationString -FileName CL_LocalizationData #Write-DiagProgress -activity $localizationString.syncSystemTime_progress #. .\CL_Utility.ps1 ## function to get time synchronization type #function GetTimeSyncType { # [string]$result = "" # [string]$registryKey = "HKLM:\SYSTEM\CurrentControlSet\Services\W32Time\Parameters" # [string]$registryKeyName = "Type" # if(Test-Path $registryKey) { # $registryEntry = Get-Item -Path $registryKey # if($null -ne $registryEntry) { # $result = $registryEntry.GetValue($registryKeyName) # } # } # return $result #} ## function to update time synchronization type #function UpdateTimeSyncType([string]$type) { # [string]$registryKey = "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Parameters" # [string]$registryKeyName = "Type" # [Microsoft.Win32.Registry]::SetValue($registryKey, $registryKeyName, $type) #} ## function to restart w32time service #function RestartW32timeService { # try { # Stop-Service w32time # WaitFor-ServiceStatus "w32time" ([ServiceProcess.ServiceControllerStatus]::Stopped) # } finally { # Start-Service w32time # WaitFor-ServiceStatus "w32time" ([ServiceProcess.ServiceControllerStatus]::Running) # } #} ## Time sync (time.windows.com is the default Windows time server) #if(Test-DomainJoined) #{ # if("NoSync" -eq (GetTimeSyncType)) { # UpdateTimeSyncType "NT5DS" # } # RestartW32timeService # w32tm.exe /resync /rediscover #} #else #{ # if("NoSync" -eq (GetTimeSyncType)) { # UpdateTimeSyncType "NTP" # } # RestartW32timeService # Update-TimeSource "time.windows.com" # w32tm.exe /resync /force #}