Skip to content Skip to sidebar Skip to footer

Launch Ms Word On Client Pc To Edit Document On Server

I have a web application(PHP) running on a server which hosts several DOCX Documents (MS Word documents) I want the user (using my application) after choosing any document to be a

Solution 1:

You can launch Office applications using Office URI Schemes. This would allow you to automatically open the file.

If you want to avoid downloading the file locally, you'll need to implement either WOPI or WebDav on your backend to handle the requests.

A simpler solution would be to use Microsoft Graph to push the file into OneDrive. Files in OneDrive have a WebUrl property which wires up opening documents in Office for you.

Post a Comment for "Launch Ms Word On Client Pc To Edit Document On Server"