0

我有一个master.bat文件,其中...

call file1.bat
call file2.bat
call file3.bat
call file4.bat

我想在我的 Windows server 2008 上安排它以静默/不可见模式运行。我正在寻找某种方式来运行这个master.bat,而用户看不到任何东西(没有窗口、CMD 界面、没有任务栏名称等)。 ) 我不想安装任何批处理到 exe 软件。

我尝试通过将运行任务的用户更改为“系统”并且它已经完成了工作,但我实际上无法做到这一点。我发现 Windows Script Host 的 Run Method 允许您以不可见模式运行脚本......

Set WshShell = CreateObject("WScript.Shell")
WshShell.Run chr(34) & "C:\Batch Files\master.bat" & Chr(34), 0
Set WshShell = Nothing

但请不要再提交文件:) 对此有任何其他建议。

编辑1

考虑到可用的选项有限..可以使用 Windows Script Host 的运行方法,但是我如何在任务调度程序中调度 master.vbs..?

4

2 回答 2

1

CMDOW是一个允许批处理隐藏运行的工具。

它被各种 AV 程序标记为黑客工具。

于 2013-10-27T03:08:11.223 回答
1

有关它的扩展视图,请在 stackoverflow 中检查混合批处理/vbscript/javascript 文件。

将此保存为 master.cmd 并根据需要进行调整。

@if (@This==@IsBatch) @then
@echo off
rem **** batch zone *********************************************************

    rem Check if started from javascript part of script.
    rem We are checking an environment variable set from javascript part.
    if "%_run_hidden_%"=="true" (
        goto startBatchWork
    )

    rem if not started from javascript, call javascript part to restart batch.
    wscript //E:JScript "%~dpnx0" 
    exit /b

:startBatchWork

    rem Here starts the real work of the batch file

    msg %username% "Batch file running hidden"





    rem End of batch area. Ensure batch ends execution before reaching
    rem javascript zone
    exit /b

@end
// **** Javascript zone *****************************************************
// Instantiate the needed component to interact with Shell
var shell = WScript.CreateObject('WScript.Shell');

    // Set the environment variable that the batch part will check to know
    // it's running hidden
    shell.Environment('Process').Item('_run_hidden_')='true';

    // start the batch part of the script calling %comspec% with the current
    // script as parameter, hidden (0) and not waiting for it to end (false)
    shell.Run('"' + shell.ExpandEnvironmentStrings('%comspec%') + '" /c "' + WScript.ScriptFullName + '"', 0, false );

    // All done. Exit
    WScript.Quit(0);
于 2013-10-27T08:51:27.680 回答