Stealth Genérico (er) para Programas [duplicado]

0

Existe algum programa (é mesmo possível) que eu possa chamar de um arquivo de lote (.bat) assim:

> stealthlaunch PROGRAM

E ele irá iniciar o programa sem mostrar nenhuma janela (ou qualquer coisa) para o usuário?

Info: Eu preciso lançar e atualizar para a empresa prog (uma série de arquivos xls interligados), e eu fiz um lote que automatiza os processos para eu (copiando arquivos, corrigindo arquivos, instalando novos componentes), mas eu realmente odeio pessoas vendo os programas POP-UP

    
por Senderkk 09.11.2011 / 12:14

1 resposta

0

Isso pode ser o que você está procurando:

Início oculto

Do site:

Console applications and batch files are regularly run at Windows startup or in a schedule. The main inconvenience of this is that each application opens a console window that flickers on the screen. Hidden Start (or Hstart) is a lightweight command line utility that allows you to run console applications and batch files without any window in the background, handle UAC privilege elevation under Windows 7 and Vista, start multiple commands in parallel or synchronously, and much more.

Imagens :

Exemplos :

Hstart is usually started by entering the following command line:

hstart /NOCONSOLE "batch_file_1.bat" "batch_file_2.bat" "batch_file_3.bat"
It is possible to redirect the console output of batch files into a log file:

hstart /NOCONSOLE /IDLE /D="E:\Backups" 
     "cmd.exe /c "MyDailyBackup.bat > backup-log.txt""
The /IDLE command line switch means that the backup process will run with the lowest priority class, and /D="" sets the starting directory of the batch file (required if the command line or script contain relative paths).

Outros recursos (soluções):

por 09.11.2011 / 13:52