0
edits
Changes
added example boot time script
<remove cmd='%ComSpec% /C if exist "%SystemRoot%\system32\bootexctrl.exe" "%SystemRoot%\system32\bootexctrl.exe" /u defrag_native' />
</package>
</source>
It is recommended to use a boot time script that turns off boot time processing when finished.
<source lang="dos">
@echo off
;--------------------------------------------------------------------
; UltraDefrag Boot Time Shell Script
;--------------------------------------------------------------------
; !!! NOTE: THIS FILE MUST BE SAVED IN UNICODE (UTF-16) ENCODING !!!
;--------------------------------------------------------------------
; set processing time limit to one hour
set UD_TIME_LIMIT=1h
; quick optimize the system drive
udefrag %SystemDrive% -q
; disable boot time scan
boot-off
; terminate the execution
exit
</source>