Run As Service runassrv.exe 详细参数第1/2页_常用工具

Run As Service

把任何可执行文件(包括批处理和角本)当作系统服务运行的工具

≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
介绍:

  ■ 将任何可执行文件作为系统服务运行。
  ■ 开始主要是为了移植一些linux 的 daemon;也可以用于启动任何应用程序和维护性角本。
  ■ 安静地运行,除非指定了 Interactive 模式,否则不会弹出任何窗口。
  ■ 无需登陆,系统启动后自动运行,无需等待用户登陆完毕。
  ■ 作为附带的功能,支持启动、停止和删除任何系统服务。
  ■ 完整接管系统服务管理器的指令(启动、停止等等)。运行的程序终止后,自动向服务管理器提交状态同时自身退出,不会驻留内存。

≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
1.1.0.628 版新增内容:

  ■ 所有 Action (例如:add / remove 等)无需再加前缀。
  ■ 新增 pause / continue 操作。
  ■ 现在开始,一个 runassrv 服务可以并发运行多个 /cmdline 指定的应用。
  ■ runassrv.exe 本身不需要放入系统搜索路径中了。
  ■ 新增 control 操作,向指定的服务发送控制码。
  ■ 新增 listsrv 操作,列出所有服务和驱动,支持很多过滤条件。
  ■ 新增 -logfile 和 -loglevel 选项,日志记录功能。
  ■ 新增 -unstoppable 系统服务管理器将拒绝停止一个以该选项安装的服务。
  ■ 内存收缩策略,典型情况下内存开销少于 300KB。
  ■ 解决了在某些系统上 start / stop 命令无效的问题。

≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
1.1.2.803 版新增内容:

  ■ 如果指定了多个 /cmdline 参数,那么服务启动时,用户命令将会按照 /cmdline 的指定顺序逐个执行。
  ■ 每条用户命令都将等待上条 /cmdline 命令就绪后才开始执行,保证有依赖关系的命令可以正常运行。(参见:“关于执行就绪”)
  ■ 为每条命令设置默认的“当前工作目录”参数。例如,有命令:“/cmdline:C:\test\app.exe”,在执行该命令时,其当前工作目录将被设置为“C:\test\”,保证应用程序可以正常访问配置信息和私有数据。

  ■关于执行就绪■ 对于命令行程序(包括批处理和角本),执行就绪意味着标准输入输出设备已初始化完毕,并且已经进入主程序入口(main());对于图形界面程序,执行就绪意味着主窗体注册和初始化完毕,程序已经在主循环处等待接受消息。

≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
帮助屏幕:

C:\Documents and Settings\Administrator>
#runassrv

===========================================================================
  Run As Service Ver 1.1.2.803 by BaiYang / 2004 - 2006, Freeware
===========================================================================
Run any program as a Service

USAGE: runassrv <Action> <Options>
===========================================================================
Actions:
  add          - Add a Service.
  remove       - Remove a Service.
  start        - Start a Service.
  stop         - Stop a Service.
  pause        - Pause a Service.
  continue     - Continue a paused Service.
  control      - Control a service by send it a op-code
  listsrv      - List all installed services on local system
  listgrp      - List all service load order groups on local system (by start
                 order).
  -h           - this screen
===========================================================================
Options:
  -cmdline     - when the service start, witch program you want to run.
  -name        - the service name.
  -dispname    - service's display name in service manager
  -desc        - service's description in service manager
                   DEFAULT: none
  -type        - service type, can be:
                   FileSystemDriver
                   KernelDriver
                   OwnProcess (DEFAULT)
                   ShareProcess
                   InteractiveProcess
                 NOTE: set this option incorrectly may endanger your system!
  -starttype   - service start type, can be:
                   SystemStart
                   BootStart
                   AutoStart (DEFAULT)
                   DemandStart
                   Disabled
                 NOTE: set this option incorrectly may endanger your system!
  -errctl      - service error control policy, can be:
                   ErrorIgnore
                   ErrorNormal (DEFAULT)
                   ErrorSevere
                   ErrorCritical
                 NOTE: set this option incorrectly may endanger your system!
  -group       - specify service load order group
                   DEFAULT: none
  -depen       - names of services or load ordering groups that the system
                 must start before this service, delimited by '/'
                   DEFAULT: none
  -user        - specifies the name of the account under which the service
                 should run.
                   DEFAULT: LocalSystem
  -pass        - contains the password to the account name
                   DEFAULT: none
  -priority    - priority of the program you want to run, can be:
                   Idle
                   BelowNormal
                   Normal (DEFAULT)
                   AboveNormal
                   High
                   RealTime
  -unstoppable - make service unstoppable by system service control manager.
  -opcode      - for "control", specify the operation code.
  -logfile     - specify the logging target.
                   DEFAULT: don't log to file.
  -loglevel    - specify the lowest logging level, can be:
                   DebugOnly (Most Detail)
                   Info
                   Warning
                   Error (DEFAULT)
                   FatalError
                   Disabled (Close Logging Output)
===========================================================================
Special Options With "listsrv":
  -name        - list service name that match the wildcard pattern
                   DEFAULT: *
  -dispname    - service display name's wildcard pattern.
                   DEFAULT: *
  -pid         - service belong to specified process.
                   DEFAULT: any
  -type        - specify service types to be match, delimite by "/".
                   DEFAULT: any
  -starttype   - specify service starttypes to be match, delimite by "/".
                   DEFAULT: any
  -group       - service belong to the load order group
                   DEFAULT: any
  -state       - service's current state, can be:
                   active
                   inactive
                   DEFAULT: any
===========================================================================

当前1/2页 12下一页阅读全文

时间: 2024-10-22 01:55:11

Run As Service runassrv.exe 详细参数第1/2页_常用工具的相关文章

Kmplayer2.9.3.1291 Beta 简体中文语言文件+exe 优化和组件增强版 下载_常用工具

KMPlayer The Professional Media Player!  它支持 Winamp 2/5 的输入.常规.DSP.视觉效果.媒体库插件.无须注册表支持直接调用 Directshow 滤镜!FFdshow 的视觉特效系统~超强的 GUI 界面~安装电视卡后可以直接代替原软件直接收看电视~支持播放 DVD/VCD 以及绝大多数电脑的媒体文件(AVI 支持 Xvid/DivX/3vid/H264 OGG/OGM/MKV 容器/AC3/DTS 解码~Monkey Audio 解码~)

Macromedia Captivate非官方简体中文版(capcn.exe)下载(2月3日发布)_常用工具

安装方法.使用.和官方一样.甚至比繁体中文版还要完整,每个用的到的内容都简体中文化了. 注意:本程序由Xray制作.原版程序的版权归Macromedia公司所有,简体中文资源版权归 Xray 和 风灵翼 师徒二人所有,保留所有权利,未经许可,谢绝重发布以及商业使用. 感谢名单: 默默支持我的女友:郭襄 闪吧众版主.管理员:关中晶.赢点儿.chenye_1976.二手百合.jgw6447.laiy.net.龙女.3780096. 闪吧众会员:小诗.serga24k.lyzxy9907.ghdqlz

asp jmail发邮件 详细解析第1/2页_应用技巧

发个个比较详细的asp与jmail 实现发送邮件的代码,前一段时间有发过一个简单的JMAIL邮件发邮件的代码,今天就把这个代码做一个具体的注解,并增加了另外两个格式的代码,并举几个简单的例子:  首先是jmail.smtpmail的核心代码:   复制代码 代码如下: <%   Set jmail = Server.CreateObject("JMAIL.SMTPMail") '创建一个JMAIL对象   jmail.silent = true 'JMAIL不会抛出例外错误,返回

.net 反序题目的详细解答第1/2页_实用技巧

请将方法补充完整: 复制代码 代码如下: static void Reverse(int[] array, int begin, int end) { ... } Reverse方法的作用是将array数组中,从begin下标到end下标之间的元素反序一下,如一个数组初始值是[1, 2, 3, 4, 5, 6],begin为1,end为4,那么当调用了Reverse之后,array数组中的元素便依次成为[1, 5, 4, 3, 2, 6],其中从array[1]到array[4]之前的元素被反序

Windows XP Service Pack 3 RC1 v.3244 winxp补丁3 提供下载_常用工具

Windows XP Service Pack 3 的新功能并不多,但其包含了以前发布的所有更新程序和热修复,其中解决了众多BUG,改进了稳定性,免去了耗时的打补丁过程,还是很值得升级的.除集成的更新程序之外,Windows XP Service Pack 3 部分主要的新特性: 针对各国最新的法律,对夏制时做了相应的修改 地区列表中"塞尔维亚和黑山"独立为"塞尔维亚共和国"和"黑山共和国" 支持蓝牙网络设备 包含"Windows XP

Windows Server 2003 Service Pack 2 for x86 &amp;amp; x64 正式版发布_常用工具

微软正式发布了Windows Server 2003 Service Pack 2,支持以下版本Windows升级:* Windows Server 2003, x64 Editions* Windows Server 2003 R2, x64 Editions* Windows Server 2003 Compute Cluster Edition with Service Pack 1* Windows Server 2003 Storage Server R2, x64 Editions*

pjblog2的参数第1/2页_应用技巧

<%  '=============================================================== '  Function For PJblog2 '    更新时间: 2006-6-2 '=============================================================== '************************************* '防止外部提交 '************************

防火墙设置必备的参考资料计算机端口详细列表第1/6页_安全设置

端口:0  服务:Reserved  说明:通常用于分析操作系统.这一方法能够工作是因为在一些系统中"0"是无效端口,当你试图使用通常的闭合端口连接它时将产生不同的结果.一种典型的扫描,使用IP地址为0.0.0.0,设置ACK位并在以太网层广播. 端口:1  服务:tcpmux  说明:这显示有人在寻找SGI Irix机器.Irix是实现tcpmux的主要提供者,默认情况下tcpmux在这种系统中被打开.Irix机器在发布是含有几个默认的无密码的帐户,如:IP.GUEST UUCP.N

碰到了ysydown.exe毒霸提交竟然已经有人给提交过了_常用工具

从网站看到的一个病毒脚本,里面的代码太多了啊不过发现了一个破解加密的好办法 复制代码 代码如下: <SCRIPT LANGUAGE='JavaScript'>  <!--  function ResumeError() {  return true;  }  window.onerror = ResumeError;  // -->  </SCRIPT> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Trans