这个问题有点晚了,但我刚刚在自己搜索答案的时候碰到了这个问题,我找到了这个:
START /B program
,在Windows上,最接近Linux命令:
program &
从控制台HELP系统:
C:\>HELP START
Starts a separate window to run a specified program or command.
START ["title"] [/D path] [/I] [/MIN] [/MAX] [/SEPARATE | /SHARED]
[/LOW | /NORMAL | /HIGH | /REALTIME | /ABOVENORMAL | /BELOWNORMAL]
[/NODE <NUMA node>] [/AFFINITY <hex affinity mask>] [/WAIT] [/B]
[command/program] [parameters]
"title" Title to display in window title bar.
path Starting directory.
B Start application without creating a new window. The
application has ^C handling ignored. Unless the application
enables ^C processing, ^Break is the only way to interrupt
the application.
有一个问题我看到的是,你有多个程序写到控制台窗口,这就会变得有点混乱和杂乱。为了让它不与用户交互,你可以将输出重定向到一个文件:
START /B program > somefile.txt
我怀疑你的意思是。在后台运行一些东西,在启动的程序继续运行的情况下,立即返回命令行。
你的问题很模糊,但在ServerFault上有一个帖子,可能包含了你需要的信息。那里的答案描述了如何在隐藏的情况下运行批处理文件窗口:
你可以用Windows脚本文件来代替默默地运行它。运行方法允许你在隐形模式下运行一个脚本。创建一个像这样的
Dim WinScriptHost Set WinScriptHost = CreateObject("WScript.Shell") WinScriptHost.Run Chr(34) & "C:\Scheduled Jobs\mybat.bat" & Chr(34), 0 Set WinScriptHost = Nothing
并对其进行调度。这个例子中的第二个参数是设置窗口样式。0表示 “隐藏窗口"。
START /MIN program
上面的那个和它的Unix版本比较接近program &
。
你可以使用这个(有注释的!)PowerShell脚本:
# Create the .NET objects
$psi = New-Object System.Diagnostics.ProcessStartInfo
$newproc = New-Object System.Diagnostics.Process
# Basic stuff, process name and arguments
$psi.FileName = $args[0]
$psi.Arguments = $args[1]
# Hide any window it might try to create
$psi.CreateNoWindow = $true
$psi.WindowStyle = 'Hidden'
# Set up and start the process
$newproc.StartInfo = $psi
$newproc.Start()
# Return the process object to the caller
$newproc
保存为一个.ps1
文件。启用脚本执行后(参见PowerShell标签维基中的Enabling Scripts),你可以给它传一个或两个字符串:可执行文件的名称和参数行。例如:
.\hideproc.ps1 'sc' 'stop SomeService'
我确认这可以在Windows 10上运行。
我的PHP内部服务器是这样进入后台的。所以从技术上来说,应该都能用。
start /B "" php -S 0.0.0.0:8000 &
谢谢
相关答案,举2个例子:
调用START/B “my calc” “calc.exe”
call start /min “n” “notepad.exe” call START /MIN “my mongod” “%ProgramFiles%MongoDB\Server3.4\binmongod.exe” 希望对你有帮助。
你可以在这个链接中看到正确的方法: 如何在没有命令窗口出现的情况下运行预定任务
总结一下,你需要在 “是否登录 "中选择 "是否运行"。在按下 "OK "后,需要输入任务用户的凭证。
刚遇到这个线程的windows 7 ,使用power shell,在后台运行可执行文件,和unix文件名&
完全一样,例如: start -NoNewWindow filename
help start
NAME Start-Process
SYNTAX Start-Process [-FilePath] [[-ArgumentList] ] ] [-证书][-工作目录][-加载用户配置文件] [-LoadUserProfile] [-NoNewWindow] [-PassThru] [-RedirectStandardError] [-RedirectStandardInput] [-RedirectStandardInput RedirectStandardOutput] [-Wait] [-WindowStyle {Normal | Hidden | Minimized | Maximized}] [-UseNewEnvironment] []
Start-Process [-FilePath] <string> [[-ArgumentList] <string[]>] [-WorkingDirectory <string>] [-PassThru] [-Verb
<string>] [-Wait] [-WindowStyle <ProcessWindowStyle> {Normal | Hidden | Minimized | Maximized}]
[<CommonParameters>]
ALIASES saps start