WFU

[ 精選文章 ]

自行車 入門 Escape 3 , Snap 21 , Revel

最近周末想運動 , 平日想通勤 , 想買台自行車 , 把自己找的資料跟大家分享 , 如果你是玩家級的 就不用看了 這是給跟我一樣的新新新手 參考的 騎車半年後的補充: 如果你有把握你是真的有時間有興趣會一直騎,建議還是存點錢買好一點的彎把公路車, 或是可以考慮買2手的自...

2016年2月3日 星期三

UEFI SHELL Reboot counter

Startup.nsh
========================
echo -off
set StartupDelay 0

#if Counter is not exist , set to 0
if exist %Counter% then
set Counter 0
endif


#check Counter from 0-19999
#About 13 sec in each reboot , Can cover 72 HR long run test
#if match , set myFlag , Counter will +1 in next loop

for %a run (%Counter% 19999)
    if %Counter% == %a then
        set myFlag 1
    else
        if %myFlag% == 1 then
            set myFlag 0
            set Counter %a
            goto Leave_For
        endif
    endif
endfor
:Leave_For

echo Loop Cycle = %Counter%

reset

echo -on

1 則留言: