Hide an app or bat that is running

0

I want to call an application through the bat and hide from the tray I wrote the script

@echo off/hid
star/min 'NOME DO APLICATIVO'
exit

I saved it as start.bat > > > > but when I run it starts the app hides the cmd minimizes the more unsealed app from the tray ... already tried to change start / min by start / hid plus it appears invalid ... how do I do that?

    
asked by anonymous 19.02.2018 / 17:04

2 answers

1

The only solution I know is using VBS .

Open Notepad and place the following code:

Dim wshShell
Set wshShell = CreateObject("WScript.Shell")
wshShell.Run "seusscript.bat", 0, false

Instead of seusscript.bat put the path of your BATCH SCRIPT , then save it with whatever name you want but with the vbs :

start.vbs

It should look like this:

Just double-click on the task manager (Ctrl + Alt + Del) to see that the script is actually running.

    
03.03.2018 / 21:23
0

Use the command below:

start "" "CAMINHO\Aplication.exe"

Follow HERE

    
15.08.2018 / 14:51