Office 365 shared computer activation

Applications

Shared computer activation lets you to deploy Office 365 ProPlus to a computer in your organization that is accessed by multiple users.

In our case we have a RDS server that many users log onto as it has an old application still needed so also needs Office.

Shared computer activation gets enabled during the installation of Office 365 ProPlus, Project Pro for Office 365 and Visio Pro for Office 365 using the Office Deployment Tool. Once enabled, Office installs without being activated. When a user signs in to a computer with Office installed via shared computer activation, Office will check to see if the user has been provisioned for Office 365 ProPlus and temporarily activates Office 365 ProPlus. If a second user signs in to the same computer, the activation does not persist from the first user and process is repeated.

It’s also important to note that deploying Office 365 ProPlus using shared computer activation does not count against a user’s five total installations of Office 365 ProPlus or Office for Mac.

This is the config.xml we have implemented (o365 files already downloaded).

 

 

 

No Comments

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Office 365
Import Contacts to Office 365 Global Address List

Office 365 doesn’t offer you a way to easily import a list of contacts into your company’s Global Address List (GAL). But it can be done quite easily with Powershell and a csv file of the contacts to import. First of all the csv file. There are some mandatory fields …

Office 365
Save Sent Items in Shared Mailbox

The default behavior for shared mailboxes is that the sent mail will go to the sent items folder of the senders mailbox. This means other users with shared access cannot see what has been sent from this mailbox. We can change this so the sent items are saved to the …

Office 365
Create a Dynamic Distribution Group of All Users in Office 365

Launch Powershell as an Administrator and connect to Office 365 Run New-DynamicDistributionGroup -IncludedRecipients MailboxUsers -Name “AllUsers” That’s it – Dynamic Distribution Group created. To check the membership of the group…… run $AllUsers = Get-DynamicDistributionGroup “AllUsers” Get-Recipient -RecipientPreviewFilter $AllUsers.RecipientFilter | FT DisplayName, Alias, PrimarySMTPAddress   Related