Search found 3 matches
- 25 Apr 2014 16:47
- Forum: DOS Batch Forum
- Topic: How to open new instance of an excel file from batch?
- Replies: 4
- Views: 7309
Re: How to open new instance of an excel file from batch?
Squashman you squashed it! I was not using /e correctly in my syntax, thanks, it works great!
- 25 Apr 2014 16:24
- Forum: DOS Batch Forum
- Topic: How to open new instance of an excel file from batch?
- Replies: 4
- Views: 7309
Re: How to open new instance of an excel file from batch?
Thanks for the response, but this is not a solution that works for me (i did see it already as I did search). I do not wish to modify registry values and the like as this will be deployed across multiple computers on my work network and that is not an option. I was looking for a command that maybe I...
- 25 Apr 2014 15:41
- Forum: DOS Batch Forum
- Topic: How to open new instance of an excel file from batch?
- Replies: 4
- Views: 7309
How to open new instance of an excel file from batch?
I currently have the batch file below. It checks the server's file and if its newer it copies the hidden/read only excel file to the local computer. set "source=\\server\excelfile.xlsm" set "target=C:\excelfilefolder\" xcopy "%source%" "%target%" /y /d /h /k /...