M BUZZ CRAZE NEWS
// general

How to open a file in Microsoft Visio in command line?

By Mia Morrison

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.

0

1 Answer

Examples:
start "C:\complete\path\to\file.vsd"
or
cd /d "C:\complete\path\to\" & start "file.vsd"

i.e. if the file type is associated to visio, it will open in visio.

2

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy