Advertisement
Guest User

Untitled

a guest
Feb 12th, 2025
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.18 KB | None | 0 0
  1. # Function to ensure log directory exists
  2. function Ensure-LogDirectory {
  3. $logDir = "C:\swh-resources\logs"
  4. if (-not (Test-Path -Path $logDir)) {
  5. New-Item -ItemType Directory -Force -Path $logDir | Out-Null
  6. Write-Host "Created log directory: $logDir"
  7. }
  8. }
  9.  
  10. # Function to log messages
  11. function Write-Log {
  12. param (
  13. [string]$Message,
  14. [switch]$Warning,
  15. [switch]$Error
  16. )
  17.  
  18. Ensure-LogDirectory
  19. $logFile = "C:\swh-resources\logs\timelog.txt"
  20. $timestamp = Get-Date -Format "yyyy-MM-dd HH:mm:ss"
  21. "$timestamp - $Message" | Out-File -FilePath $logFile -Append
  22.  
  23. # Also output to console with appropriate styling
  24. if ($Error) {
  25. Write-Error $Message
  26. }
  27. elseif ($Warning) {
  28. Write-Warning $Message
  29. }
  30. else {
  31. Write-Host $Message
  32. }
  33. }
  34.  
  35. # Function to get timezone and time data
  36. function Get-TimeZoneData {
  37. $apiUrl = "http://ip-api.com/json/?fields=timezone,status,message"
  38. Write-Log "Attempting to fetch timezone data from IP-API..."
  39.  
  40. try {
  41. $response = Invoke-RestMethod -Uri $apiUrl -Method Get
  42.  
  43. if ($response.status -eq "success") {
  44. # Get current UTC time
  45. $utcNow = [DateTime]::UtcNow
  46. Write-Log "Current UTC time: $utcNow"
  47.  
  48. # Create response object
  49. $timeData = @{
  50. timezone = $response.timezone
  51. datetime = $utcNow.ToString("o") # ISO 8601 format
  52. }
  53.  
  54. Write-Log "Successfully fetched time data from IP-API"
  55. Write-Log "Detected timezone: $($timeData.timezone)"
  56. return $timeData
  57. } else {
  58. throw "API returned error status: $($response.message)"
  59. }
  60. }
  61. catch {
  62. Write-Log "Failed to fetch data from IP-API: $_" -Error
  63. return $null
  64. }
  65. }
  66.  
  67. # Function to set system time
  68. function Set-SystemTime {
  69. param (
  70. [DateTime]$NewTime
  71. )
  72.  
  73. try {
  74. Set-Date -Date $NewTime
  75. Write-Log "System time updated successfully to $NewTime"
  76. }
  77. catch {
  78. Write-Log "Failed to set system time: $_" -Error
  79. }
  80. }
  81.  
  82. # Function to set timezone
  83. function Set-SystemTimeZone {
  84. param (
  85. [string]$TimeZoneId
  86. )
  87.  
  88. try {
  89. Set-TimeZone -Id $TimeZoneId
  90. Write-Log "System timezone updated successfully to $TimeZoneId"
  91. }
  92. catch {
  93. Write-Log "Failed to set system timezone: $_" -Error
  94. }
  95. }
  96.  
  97. # Enhanced timezone mapping function
  98. function Get-WindowsTimeZone {
  99. param (
  100. [string]$ApiTimeZone
  101. )
  102.  
  103. Write-Log "Attempting to map timezone: $ApiTimeZone"
  104.  
  105. # Comprehensive mapping of IANA to Windows timezone IDs
  106. $timeZoneMap = @{
  107. # North America
  108. "America/Chicago" = "Central Standard Time"
  109. "America/New_York" = "Eastern Standard Time"
  110. "America/Los_Angeles" = "Pacific Standard Time"
  111. "America/Denver" = "Mountain Standard Time"
  112. "America/Phoenix" = "US Mountain Standard Time"
  113. "America/Anchorage" = "Alaskan Standard Time"
  114. "America/Toronto" = "Eastern Standard Time"
  115. "America/Vancouver" = "Pacific Standard Time"
  116. "America/Mexico_City" = "Central Standard Time (Mexico)"
  117.  
  118. # Europe
  119. "Europe/London" = "GMT Standard Time"
  120. "Europe/Paris" = "Romance Standard Time"
  121. "Europe/Berlin" = "W. Europe Standard Time"
  122. "Europe/Moscow" = "Russian Standard Time"
  123. "Europe/Amsterdam" = "W. Europe Standard Time"
  124. "Europe/Rome" = "W. Europe Standard Time"
  125. "Europe/Madrid" = "Romance Standard Time"
  126.  
  127. # Asia
  128. "Asia/Tokyo" = "Tokyo Standard Time"
  129. "Asia/Shanghai" = "China Standard Time"
  130. "Asia/Hong_Kong" = "China Standard Time"
  131. "Asia/Singapore" = "Singapore Standard Time"
  132. "Asia/Dubai" = "Arabian Standard Time"
  133. "Asia/Kolkata" = "India Standard Time"
  134. "Asia/Bangkok" = "SE Asia Standard Time"
  135. "Asia/Seoul" = "Korea Standard Time"
  136.  
  137. # Australia and Pacific
  138. "Australia/Sydney" = "AUS Eastern Standard Time"
  139. "Australia/Melbourne" = "AUS Eastern Standard Time"
  140. "Australia/Perth" = "W. Australia Standard Time"
  141. "Pacific/Auckland" = "New Zealand Standard Time"
  142. "Pacific/Honolulu" = "Hawaiian Standard Time"
  143.  
  144. # Africa and Middle East
  145. "Africa/Cairo" = "Egypt Standard Time"
  146. "Africa/Johannesburg" = "South Africa Standard Time"
  147. "Africa/Lagos" = "W. Central Africa Standard Time"
  148. "Africa/Nairobi" = "E. Africa Standard Time"
  149. }
  150.  
  151. if ($timeZoneMap.ContainsKey($ApiTimeZone)) {
  152. $windowsTimeZone = $timeZoneMap[$ApiTimeZone]
  153. Write-Log "Found Windows timezone mapping: $windowsTimeZone"
  154. return $windowsTimeZone
  155. }
  156.  
  157. # If no direct mapping found, try to find a similar timezone
  158. Write-Log "No direct mapping found, attempting to find similar timezone..." -Warning
  159. $timeZoneName = $ApiTimeZone.Split('/')[-1].Replace('_', ' ')
  160. $allTimeZones = [System.TimeZoneInfo]::GetSystemTimeZones()
  161.  
  162. $similarTimeZone = $allTimeZones | Where-Object {
  163. $_.DisplayName -like "*$timeZoneName*" -or
  164. $_.StandardName -like "*$timeZoneName*" -or
  165. $_.Id -like "*$timeZoneName*"
  166. } | Select-Object -First 1
  167.  
  168. if ($similarTimeZone) {
  169. Write-Log "Found similar Windows timezone: $($similarTimeZone.Id)"
  170. return $similarTimeZone.Id
  171. }
  172.  
  173. Write-Log "Could not find a matching Windows timezone for ${ApiTimeZone}" -Error
  174. return $null
  175. }
  176.  
  177. # Main script
  178. Write-Log "=== Time Synchronization Script Started ==="
  179.  
  180. $timeData = Get-TimeZoneData
  181.  
  182. if ($timeData) {
  183. # Set system time
  184. $newDateTime = [DateTime]::Parse($timeData.datetime)
  185. Set-SystemTime -NewTime $newDateTime
  186.  
  187. # Get and set Windows timezone
  188. $windowsTimeZone = Get-WindowsTimeZone -ApiTimeZone $timeData.timezone
  189.  
  190. if ($windowsTimeZone) {
  191. Set-SystemTimeZone -TimeZoneId $windowsTimeZone
  192. }
  193. else {
  194. Write-Log "Couldn't find a matching Windows timezone. Please set manually." -Warning
  195. }
  196. }
  197.  
  198. # Enable Windows Time service
  199. Write-Log "Configuring Windows Time service..."
  200. Set-Service -Name W32Time -StartupType Automatic
  201. Start-Service W32Time
  202. Write-Log "Windows Time service enabled and started"
  203.  
  204. # Set time synchronization to use Windows Time service
  205. Write-Log "Configuring time synchronization..."
  206. $configResult = w32tm /config /manualpeerlist:time.windows.com /syncfromflags:manual /reliable:yes /update
  207. Write-Log "Time synchronization configured: $configResult"
  208.  
  209. # Force time sync
  210. Write-Log "Forcing time synchronization..."
  211. $syncResult = w32tm /resync /force
  212. Write-Log "Time sync result: $syncResult"
  213.  
  214. # Set time zone to auto-detect
  215. Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\TimeZoneInformation" -Name "DynamicDaylightTimeDisabled" -Value 0
  216. Write-Log "Time zone auto-detect enabled"
  217.  
  218. Write-Log "Time and time zone have been synchronized."
  219. Write-Log "=== Time Synchronization Script Completed ==="
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement