Run Batch In VBS!

preview_player
Показать описание
Hello YouTube!

You have probably heard of executing a VBS file from a Batch file well in this video I show you how to Run Batch In VBS! Hope you guys like the video!

Thanks again!

Links:

Last Week's Video:

Download Batch In VBS:

My Website:

Notepad++ Link:

My Facebook Fan Page:

My Email:
Рекомендации по теме
Комментарии
Автор

Lmao u can do a vbs file, that runs a bat file, that runs the vbs file xD

shrc.
Автор

I have some batch codes and vbs codes. I want to connect them together to one vbs file which will run the vbs codes first and then the batch codes. I did it by creating a batch file separately and creating a pathway to the batch file in the vbs file. But isnt there a way I can do the same thing without creating a separate batch file?
I want the batch codes in the vbs file so that it runs after the vbs codes

isukavisath
Автор

Its not working im trying to run it and its doing nothing here is the code can u tell me what's wrong Code: Dim objShell
Set objShell =WScript.CreateObject ("WScript.Shell")
objShell.Run "cmd /c echo Test > Folder.txt"
Edit: Nevermind i just had to right click it and press OPEN to run it

fragmentofreality
Автор

do you have any idea on how to make the the program put itself in a specified folder and run itself?

MaximillianTherd
Автор

How can I program that after opening that batch file it will start my own commands?

MJ-vjsy
Автор

How can I program it so that if i hit Yes it run a command but if I hit no it runs a separate command? BTW Nice video :D

windowsrefundday
Автор

I am making a troll file it will open like 30 command promps and then tell you messages like your hacked and stuff then at the end it says its a prank and it shuts down your computer

copsplayer
Автор

Is there any way to make a vbs file do it's thing, then after it's done that "thing" open and run a bat file?

vlocityofficial
Автор

Excuse me gentlemen,

How can I use the following?

Dim objShell
set objShell =
objShell.Run "cmd /c clip < "txt.file""

The "" are messing up the command. Any idea on how to replace them? ' did not work

WhoisNicko
Автор

how to i make it open 2 .exe or .bat files at the same time

dreamedleader
Автор

I know this is an old video but say is it possible to run a specific cmd command for example ipconfig then it would return the text taken from the user saying what the cmd found

literallydeadpool
Автор

Can i call vb script from url or link... Actually i made one script for cyber drill but i want to have link in mail so that end user will click and script will execute

dineshsgupta
Автор

wow this really deservse more views goosh thank you! :D

smellypengu
Автор

I was wondering how to... now I can make MALWARE (not to put on other pc’s accept my vms)

cirkulx
Автор

How do you make vbs run a batch file that does this
@echo off
color 0a
mode 1000

:a
echo
goto a

delayant
Автор

code that is related to the vid (a code for bat and run it on vbs):
Successfully secured computer!, Press any key to scan viruses.

tigershelf
Автор

do you know script that add vbs file to startup?

Stasful
Автор

So I made a msgbox vbs script and I want to add in this batch file I made, its called Loading Screen.bat,  how would I put this in? and then shutdown the users file?This is what I have so far (and yes its Dedsec from Watch Dogs)
Msgbox("Dedsec Has Located Your Computer")
Msgbox("Dedsec Has Found Stolen Files On Your CPU")
Msgbox("Which We Assume Means You Are Working With !NV1TE")
Msgbox("We Will Be Taking Your Folders And Shutting Your CPU Down")Dim objShell
Set objShell =
objShell.Run "cmd /c if exist file.txt (echo File Found && pause) else (echo No File Found && pause)"do I change anything with your script like "cmd /c if exist Loading Screen.bat (echo yadadadada)?

CharlesTheCorgiKing
Автор

Dim objShell
Set objShell =WScript.CreateObject ("WScript.Shell")
objShell.Run "file.bat"

shrc.