Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Do Office Add-ins always require Internet access to work?

Let's take Excel for example. In Excel 2016, when I select an add-in in the STORE, after clicking on Trust It, will the code (.html, .js files) of the add-in be downloaded or installed on my machine?

In other words, have the add-ins under MY ADD-INS been already installed on my machine, such that i could load and run them without Internet (if an add-in does not send or receive special data to or from Internet)?

enter image description here

I am asking this question, because i want to know if a basic add-in always requires Internet access to work.

like image 466
SoftTimur Avatar asked May 15 '16 16:05

SoftTimur


People also ask

Can Office work without internet?

You can work offline to: Create a file: You can create a blank document, workbook, or presentation when offline. However, to create a document, workbook, or presentation from a template, you'll need to be connected to the Internet.

How do Office add-ins work?

You can use the Office Add-ins platform to build solutions that extend Office applications and interact with content in Office documents. With Office Add-ins, you can use familiar web technologies such as HTML, CSS, and JavaScript to extend and interact with Outlook, Excel, Word, PowerPoint, OneNote, and Project.

Can I use Office 365 without Internet connection?

Extended offline access for devices with no internet accessWhen a device loses internet access, the user can continue to use Office without an internet connection for up to 180 days.

Why do I need internet for Office?

You need internet access to: install and activate the latest releases of Office suites and all Office 365 subscription plans. manage your subscription account to install Office on other devices. access documents stored on OneDrive unless you install the OneDrive desktop app.


2 Answers

As Eric mentions, Office add-ins are indeed web based. However, to add a bit to his answer:

While you definitely need a one-time access to fetch the manifest and the original HTML/JS/CSS files, if your add-in is not using license checking (it's free) and does not require web services, you should be able to make a website that uses standard offlining techniques to load with no internet connection after the first time.

I tried it out real quick with pointing a manifest at http://html5demos.com/offlineapp. After loading it once and then disconnecting my internet, I was still able to load that page.

Hope this helps,

~ Michael

like image 75
Michael Zlatkovsky - Microsoft Avatar answered Sep 18 '22 07:09

Michael Zlatkovsky - Microsoft


Yes, the new Office add-ins are web-based. They are all defined - and installed - by a manifest file which specifies the URL location of the web source files. These are always hosted on the provider's web server and are not cached for offline use. The licensing system used by most add-ins (the ones that aren't free) requires a connection to the provider's web server which in turns needs to verify the user's license against the Office Verification Licensing Service. If offline use was enabled users could use a trial license in perpetuity without the provider being aware.

like image 21
Eric Legault Avatar answered Sep 19 '22 07:09

Eric Legault