380272204 发表于 2016-7-21 23:15:59

运行报错

ICON_file= @WindowsDir & '\system-ICO.DLL'
;FileCreateShortcut ( "http://192.168.0.253:18897/eyooboard/", @DesktopDir & '\顾客留言.lnk', @SystemDir , "" , "" , $ICON_file , "" , 85)


;#ce

;#cs

;分组执行程序演示
;说明 _IPChose("前缀","IP末位开始","IP末位结束","要执行的程序全路径")
;例,从 192.168.0.1-192.168.0.20,执行 c:\1.exe
;_IPChose("192.168.0.","11","180","D:\常用工具\客户端\维护通道\AutoExe\7777.exe")


Func _IPChose($item_qz,$item_s,$item_e,$ExePath)

For $i = $item_s To $item_e
If @IPAddress1 = $item_qz & $i Then
Run($ExePath)
EndIf
Next
EndFunc ;==>_IPChose

#ce
#某个时间段运行程序
      $s=@HOUR
      $f=@MIN
      $SF=$s&$f
      if Number($SF)>0800 And Number($SF)<2358Then
               Run("D:\Program Files (x86)\comgame\SecureIdentify.exe")
                ;运行你的脚本                              
                Else
                ;什么都不做

         EndIf
#某个时间结束程序
While 1
      ;
      $s=@HOUR
      $f=@MIN
      $SF=$s&$f
      if Number($SF)=2359 Then
               processclose("SecureIdentify.exe")
                ;运行你的脚本                              
                Else
                ;什么都不做

         EndIf
WEnd
页: [1]
查看完整版本: 运行报错