So is there a way to open local file in default program from local browser app?
Tried using simple html a href
file:///filepath/filename.exe
doesn't work due to security policies, says:
Not allowed to load local resource
Tried using php exec
exec('notepad');
Seems like it opens it server-side but not client-side.
Also tried
exec('runas /admin notepad')
Says
Enter the password for admin:
I know there lots of duplicates and I spent some time researching, but cannot find decisive answer is it possible? and if it is, how?