1.

Solve : start hide program?

Answer» HI...

what open program HIDE?

for example :

Code: [Select]start /hide myprogram.exe
Why?
The forum will help people with important questions.
It does not help people make a virus.
no....

i need to this command You cannot hide a program with Command PromptA bit dramatic Geek to say he's makin a virus.Quote from: patio on April 14, 2013, 12:19:44 PM
A bit dramatic Geek to say he's makin a virus.
OK. I was dramatic. But why WOULD he want to hide it?thank you.

for guide...


Code: [Select]@echo off
cls
(
set args = WScript.ARGUMENTS
num = args.Count

if num = 0 then
WScript.Echo "Usage: [CSCRIPT | WScript] invis.vbs aScript.bat <some script arguments>"
WScript.Quit 1
end if

sargs = ""
if num > 1 then
sargs = " "
for k = 1 to num - 1
anArg = args.Item(k)
sargs = sargs & anArg & " "
next
end if

Set WshShell = WScript.CreateObject("WScript.Shell")

WshShell.Run """" & WScript.Arguments(0) & """" & sargs, 0, False
)> invis.vbs
wscript.exe invis.vbs myprogram.exe %*
OK. An administration may run a task in the background as a schedule task. It have be minimized so that it only shows on the task bar.
But it ought to be Power Shell, not command prompt.
Here is a link that may offer some ideas.
http://stackoverflow.com/questions/1802127/how-to-run-a-powershell-script-without-displaying-a-window



Discussion

No Comment Found