Running master bat file in invisible mode

故事扮演 提交于 2019-12-20 06:25:20

问题


I have a master.bat file which has...

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

I want to schedule it on my Windows server 2008 to run in silent/invisible mode.I'm looking for some way to run this master.bat without anything visible to the user (no window, CMD interface ,no taskbar name etc..) I don't want to install any batch to exe software.

I tried by changing the User running the task to "SYSTEM" and it has the work done but I can't do this in actual. I have found that Windows Script Host’s Run Method allows you to run a script in invisible mode as.....

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

but no more file please :) any other suggestion for this.

EDIT1

Considering the limited options available..it would be OK to use Windows Script Host’s Run Method,but how i can schedule master.vbs in task scheduler.. ?


回答1:


For an extended view of it, check for hybrid batch / vbscript / javascript files here in stackoverflow.

Save this as master.cmd and adapt as needed.

@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);



回答2:


CMDOW is a tool that will allow the batch to run hidden.

It is flagged as a hack tool by various AV programs.



来源:https://stackoverflow.com/questions/19608805/running-master-bat-file-in-invisible-mode

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!