I am trying to open a file in Microsoft Visio using command line. start \d "path" visio.exe
Now, how to open a specific file? \1 opens first previously opened file, but not the specific one.
1 Answer
Examples:start "C:\complete\path\to\file.vsd"
orcd /d "C:\complete\path\to\" & start "file.vsd"
i.e. if the file type is associated to visio, it will open in visio.
2