Is it possible to create something like a desktop shortcut that I could double click to run a particular command that I would normally type out in command prompt? Here is one that I want to make a shortcut of:
C:\Users\jdave\Documents\Java>appletviewer ButtonExample.html
I asked this on Yahoo Answers because I thought it would be a little basic for Stack Overflow and one person said to create a batch file like so:
@echo off
start "C:\Users\jdave\Documents\Java>appletviewer ButtonExample.html"
I did this but all it does is open a command prompt window.