In my VBA procedure, I need to run the app "Skitch" and use it to open a JPEG file. This is the command I've been using:
...where "aPic" is the path and filename.![]()
ReturnValue = Shell("C:\Program Files (x86)\Evernote\Skitch\Skitch.exe " & """" & aPic & """", 1)
After some experimenting, I think I need to run the command as if it were in an Elevated Command window (in other words, run it "as Administrator"). How can I do that?
Thanks.
Bookmarks