mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-14 10:36:52 -07:00
parent
617bf37878
commit
c80a678ded
54 changed files with 567 additions and 567 deletions
20
core/extractor/bin/invisible.vbs
Executable file
20
core/extractor/bin/invisible.vbs
Executable file
|
@ -0,0 +1,20 @@
|
|||
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, True
|
Loading…
Add table
Add a link
Reference in a new issue