Answer the question
In order to leave comments, you need to log in
Is it possible to deploy Office 365 on my server?
Good afternoon!
We want to use Office 365 in the company to work with documents. But using onedrive is not possible for us. Can I connect my cloud somehow? or deploy something on our server for data storage instead of the microsoft cloud. I read a
lot of information, but I did not find a solution
Answer the question
In order to leave comments, you need to log in
It is worth adding to the previous answer that when extending standard objects (in general, any objects, but it is with standard ones that everyone usually forgets about it), there is a risk of name collisions. If you add your method to a standard array and some of your libraries also add their method with the same name to the array, then there will be sadness. As one of the options for solving the issue is to expand objects using symbols:
const sayHello = Symbol('sayHello');
Array.prototype[sayHello] = function() {
console.log('hello');
};
// ---
const test = [];
test[sayHello](); // "hello"
Can I connect my cloud somehow?No.
or deploy something on our data storage server instead of microsoft cloudYes. Raise in your company Sharepoint. Connect OneDrive to the workspace of the local sharepoint and work. This is in short.
Look for OOS, I don’t know what its status is, but since 2016 Sharepoint it worked https://docs.microsoft.com/ru-ru/officeonlineserve...
Onedrive in the office
https://docs.microsoft.com/ru-ru/sharepoint/ sites/...
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question