Home > Software design >  Open file with application Batch Script
Open file with application Batch Script

Time:10-10

I have a simple problem. I am writing a batch script that needs to run a file with a specific application. With the unfamiliar file extension I am using, it will prompt what app to open the file with, but I want this to be automated. My current code is just start /wait example.idk Help would be much appreciated

CodePudding user response:

You can explicitly start the 'specific application' with the 'example.idk' as parameter. Something like: start /wait "specific program" "PathToSpecificProgram\specific application.exe" "example.idk"

  • Related