Someone gave this code to turn into a cmd file. He said it will help me boot faster and remove some latency from gaming. Is there anything fishy about these lines?
@Echo off
@Echo
@Echo Disable HPET
bcdedit /deletevalue useplatformclock
@Echo
@Echo Disable dynamic tick (laptop power savings)
bcdedit /deletevalue disabledynamictick
@Echo
@Echo Disable synthetic timers
bcdedit /set useplatformtick yes
@Echo
@Echo Boot timeout 0
bcdedit /timeout 0
@Echo
@Echo Disable nx
bcdedit /set nx optout
@Echo
@Echo Disable boot screen animation
bcdedit /set bootux disabled
@Echo
@Echo Speed up boot times
bcdedit /set bootmenupolicy standard
@Echo
@Echo Disable hyper virtualization
bcdedit /set hypervisorlaunchtype off
@Echo
@Echo Disable trusted platform module (TPM)
bcdedit /set tpmbootentropy ForceDisable
@Echo
@Echo Remove windows login logo
bcdedit /set quietboot yes
@Echo
@Echo Disable boot logo
bcdedit /set {globalsettings} custom:16000067 true
@Echo
@Echo Disable spinning animation
bcdedit /set {globalsettings} custom:16000069 true
@Echo
@Echo Disable boot messages
bcdedit /set {globalsettings} custom:16000068 true
@Echo
@Echo Set TSC Sync Policy Enhanced
bcdedit /set tscsyncpolicy Enhanced
@Echo
pause
@Echo off
@Echo
@Echo Disable HPET
bcdedit /deletevalue useplatformclock
@Echo
@Echo Disable dynamic tick (laptop power savings)
bcdedit /deletevalue disabledynamictick
@Echo
@Echo Disable synthetic timers
bcdedit /set useplatformtick yes
@Echo
@Echo Boot timeout 0
bcdedit /timeout 0
@Echo
@Echo Disable nx
bcdedit /set nx optout
@Echo
@Echo Disable boot screen animation
bcdedit /set bootux disabled
@Echo
@Echo Speed up boot times
bcdedit /set bootmenupolicy standard
@Echo
@Echo Disable hyper virtualization
bcdedit /set hypervisorlaunchtype off
@Echo
@Echo Disable trusted platform module (TPM)
bcdedit /set tpmbootentropy ForceDisable
@Echo
@Echo Remove windows login logo
bcdedit /set quietboot yes
@Echo
@Echo Disable boot logo
bcdedit /set {globalsettings} custom:16000067 true
@Echo
@Echo Disable spinning animation
bcdedit /set {globalsettings} custom:16000069 true
@Echo
@Echo Disable boot messages
bcdedit /set {globalsettings} custom:16000068 true
@Echo
@Echo Set TSC Sync Policy Enhanced
bcdedit /set tscsyncpolicy Enhanced
@Echo
pause