分类 VPS 下的文章

@echo off
set itime=0

:start
for /f "tokens=2 delims==" %%a in ('wmic path Win32_PerfFormattedData_PerfOS_Processor get PercentProcessorTime /value^|findstr "PercentProcessorTime"') do set UseCPU=%%a
if %UseCPU% gtr 60 set /a itime=%itime%+1
if %UseCPU% lss 40 set itime=0
if %itime% gtr 30 goto vmrestart
choice /t 60 /d y /m "%date% %time% CPU %UseCPU% %itime% Waiting 60s"
goto start

choice /t 10 /d y /m "%date% %time% Somthing wrong, to end"
goto end

:vmrestart
choice /t 600 /d y /m "%date% %time% Restart finished, to start again"
set itime=0
goto start

:end
pause

#!/bin/sh
. /etc/profile
. /root/.bashrc
cd /xxxxx/xxxxx
sold=`stat -c %Y snews.html` # 文件修改时间戳
snew=`date +%s` # 系统当前时间戳
sdiff=$[$snew-$sold]
sload=`uptime | awk -F 'load average: ' '{print $2}'| awk -F ', ' '{print $1}'| awk -F '.' '{print $1}'`
if [ $sdiff -gt 700 ];then # 文件太旧,需要重启系统
  if [$sload -gt "0"];then
    echo "File Read Only, but loading > 1, waiting to reboot"
  else
    curl http://sc.ftqq.com/xxxxx.send?text=RebootCEforFileReadOnly
    reboot
  if
fi

设置要永久加入到path环境变量中的路径

set My_PATH=c:\swds\software\cmder
set PATH=%PATH%;%My_PATH%
reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v "Path" /t REG_EXPAND_SZ /d "%PATH%" /f
pause

@echo off
:start
for /f "tokens=16" %%i in ('ipconfig ^|find /i "ipv6"') do set ip=%%i
curl -s -x socks5://127.0.0.1:1080 "https://dyn.dns.he.net/nic/update?hostname=xx.xx&password=xxxxxx&myip=%ip%"
choice /t 600 /d y /m "_ %date% %time% Waiting 600s"
goto start

curl -s隐藏进度条 -x代理
choice /t等待秒 /d默认回答y /m显示提示语