|
yaoview
初级用户
积分 21
发帖 6
注册 2008-7-4
状态 离线
|
『楼 主』:
如何让批处理在后台运行而不弹出窗口,开机脚本除外
编了一个批处理,想在后台运行而不弹出窗口,利用开机脚本可以,但CPU占用太高,请问有没有什么命令可以不弹出窗口?谢谢!
|
|
2008-7-9 14:27 |
|
|
wjdidi
初级用户
积分 175
发帖 55
注册 2007-4-30
状态 离线
|
『第
2 楼』:
下面这是以前收藏的论坛里的某位高手[具体不太记得了]的代码。。可以隐藏窗口
@echo off
if "%1" == "h" goto begin
mshta vbscript:createobject("wscript.shell").run("%~fs0 h",0)(window.close)&&exit
:begin
rem 下边开始写批处代码了
|
|
2008-7-9 15:02 |
|
|
HAT
版主
积分 9023
发帖 5017
注册 2007-5-31
状态 离线
|
|
2008-7-9 15:14 |
|
|
z2364003
新手上路
积分 12
发帖 6
注册 2008-8-7
状态 离线
|
|
2008-8-9 15:59 |
|
|
z2364003
新手上路
积分 12
发帖 6
注册 2008-8-7
状态 离线
|
『第
5 楼』:
批处理中的set后面跟的参数干什么用的,,
|
|
2008-8-9 16:01 |
|
|
z2364003
新手上路
积分 12
发帖 6
注册 2008-8-7
状态 离线
|
|
2008-8-9 16:02 |
|
|
lxmxn
版主
积分 11386
发帖 4938
注册 2006-7-23
状态 离线
|
『第
7 楼』:
Quote: | Originally posted by z2364003 at 2008-8-9 16:02:
那里有甚而的批处理语名 |
|
现在很流行火星文?
|
|
2008-8-9 19:56 |
|
|
wafzaa
新手上路
积分 12
发帖 5
注册 2008-8-16
状态 离线
|
『第
8 楼』:
···············顶啊···好帖子
|
|
2008-8-16 20:49 |
|
|
HAT
版主
积分 9023
发帖 5017
注册 2007-5-31
状态 离线
|
『第
9 楼』:
Re 5楼
自己先看看帮助
set /?
Quote: | Two new switches have been added to the SET command:
SET /A expression
SET /P variable=[promptString]
The /A switch specifies that the string to the right of the equal sign
is a numerical expression that is evaluated. The expression evaluator
is pretty simple and supports the following operations, in decreasing
order of precedence:
() - grouping
! ~ - - unary operators
* / % - arithmetic operators
+ - - arithmetic operators
<< >> - logical shift
& - bitwise and
^ - bitwise exclusive or
| - bitwise or
= *= /= %= += -= - assignment
&= ^= |= <<= >>=
, - expression separator
The /P switch allows you to set the value of a variable to a line of input
entered by the user. Displays the specified promptString before reading
the line of input. The promptString can be empty. |
|
|
|
|
2008-8-16 21:36 |
|
|
tkmark
新手上路
积分 1
发帖 3
注册 2008-8-25 来自 shanxi
状态 离线
|
『第
10 楼』:
不知道HAT版主的意思..
/P命令不是由用户输入参数的么?
你的意思是用符号可以实现隐藏运行的窗口?
不明白..我比较菜
|
|
2009-4-8 15:27 |
|
|
ligui0001
初级用户
积分 58
发帖 41
注册 2009-4-3
状态 离线
|
|
2009-4-9 04:18 |
|
|
hgj9999
新手上路
积分 2
发帖 2
注册 2008-11-13
状态 离线
|
|
2009-4-9 05:07 |
|
|
prospy
新手上路
积分 2
发帖 2
注册 2009-4-13
状态 离线
|
|
2009-4-17 23:40 |
|
|
welky
新手上路
积分 3
发帖 3
注册 2009-4-21
状态 离线
|
|
2009-4-24 10:53 |
|
|
1405
新手上路
积分 5
发帖 8
注册 2009-4-24
状态 离线
|
|
2009-4-26 01:52 |
|