1.開始--按滑鼠右鍵--Windows Powershell(系統管理員)
2.將底下的指令複製並貼上
Set-ItemProperty HKLM:\SYSTEM\CurrentControlSet\services\W32Time\Parameters -Name "Type" -Value "NoSync"
3.將底下的指令複製並貼上
New-NetFirewallRule -DisplayName "Block Sync Time Port" `
-Direction Inbound `
-LocalPort 123 `
-Protocol UDP `
-Action Block
4.變更日期時間(格式為 mm/dd/yyyy hh:mm 例如 09/23/2021 12:00)
set-date -date "09/23/2021 12:00"
ps.如欲恢復原先設定則先變更回原來的日期時間,並複製並貼上底下兩行指令
Remove-NetFirewallRule -DisplayName "Block Sync Time Port"
Remove-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\services\W32Time\Parameters" -Name "Type"