Home
Forum
Software
Mouser's Software
NANY: New Apps for the New Year
Friends of DC
Forum Coding Snacks
Editorials
Daily Blog
Monthly Newsletter
Mini Reviews
Favorite Websites
Archives
Articles
Historical Archives
Testimonials: What Folks Say About Us
Licensing
Get a License Key
Commercial Licensing
Help
Search
FAQs
DonationCoder Sitemap
Live Chat (Discord)
Contact Us
About Us
Donate
Home
Forum
Software
Mouser's Software
NANY: New Apps for the New Year
Friends of DC
Forum Coding Snacks
Editorials
Daily Blog
Monthly Newsletter
Mini Reviews
Favorite Websites
Archives
Articles
Historical Archives
Testimonials: What Folks Say About Us
Licensing
Get a License Key
Commercial Licensing
Help
Search
FAQs
DonationCoder Sitemap
Live Chat (Discord)
Contact Us
About Us
Donate
This topic
This board
Entire forum
Website and forum (google)
Member search
Welcome,
Guest
. Please
login
or
register
.
Did you miss your
activation email
?
1 Hour
1 Day
1 Week
1 Month
6 Months
Forever
Login with username, password and session length
Thursday December 12, 2024, 11:43 am
Proudly celebrating 15+ years online.
Donate now
to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
Forum Home
Search
Login
Register
Recent Topics
Go To..
Recently updated topics
Recent posts (compact)
Recent posts (full text)
DonationCoder.com Forum
»
DonationCoder.com Software
»
Coding Snacks
»
Finished Programs
»
Use Start Command to Hide Command Window of .Bat file That Executes
« previous
next »
New Topic
Print
Pages: [
1
] •
bottom
Author
Topic: Use Start Command to Hide Command Window of .Bat file That Executes (Read 8562 times)
jpeni
Participant
Joined in 2013
Posts:
1
Use Start Command to Hide Command Window of .Bat file That Executes
«
on:
October 05, 2013, 12:15 AM »
I recently discovered that I can use Frameless to display messages from Windows Task Scheduler by creating an EXE from a BAT file with Dr. Batcher.
1. Create a batch file that displays the desired message in frameless
For example -
:: open image with frameless - always on top - show for 10 seconds
:: the start command prevents the command prompt from displaying - /b=start without creating a new window
start /b Frameless.exe "testimage.gif" x=100 y=200 taskbar=no aot=yes duration=00:00:10
2. Run the batch file through Dr. Batcher (or any program that creates an EXE from a BAT file) and produce an executable file.
3. Run the Windows Task Scheduler and (1) create a task (2) Give it a Name (3) Create a Trigger - when you want it to start (4) Create Action to start the EXE you created from Dr. Batcher (5) Run your new task
Now you have the image or animated gif you ran in your BATCH file executed at the specified time in the new EXE file by the Task Scheduler.
Have Fun.
MilesAhead
Supporting Member
Joined in 2009
Posts:
7,736
Re: Use Start Command to Hide Command Window of .Bat file That Executes
«
Reply #1 on:
December 04, 2013, 02:55 PM »
I'm missing something. I'd like to launch a .chm file using start command in a .cmd file without the telltale command prompt window flicker. Is there a trick to it?
edit: ok, it's the /b switch.
Hmmm, command prompt still pops up.
«
Last Edit: December 04, 2013, 03:01 PM by MilesAhead
»
New Topic
Print
Pages: [
1
] •
top
« previous
next »
DonationCoder.com Forum
»
DonationCoder.com Software
»
Coding Snacks
»
Finished Programs
»
Use Start Command to Hide Command Window of .Bat file That Executes