S
S
Sannyss2021-05-12 10:28:52
JavaScript
Sannyss, 2021-05-12 10:28:52

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

4 answer(s)
A
Alexander, 2018-11-08
@vit_grey

Array.prototype.myMap = function() {
  // Ваш код тут
}

I
Ivan Bogachev, 2018-11-08
@sfi0zy

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"

S
Sergey Ryzhkin, 2021-05-12
@Sannyss

Can I connect my cloud somehow?
No.
or deploy something on our data storage server instead of microsoft cloud
Yes. Raise in your company Sharepoint. Connect OneDrive to the workspace of the local sharepoint and work. This is in short.

V
Vladimir Korotenko, 2021-05-12
@firedragon

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 question

Ask a Question

731 491 924 answers to any question