Gostaria de saber se existe um scritp ou uma forma de ativação do Office 365 que não seja manual, ou seja, criar o e-mail, gerar uma chave e aplicar essa chave manualmente ao acessar o e-mail.
Temos uma solução de Deploy de Software que tem um procedimento, porém não consigo entender qual código e como gerar isso na Console do Office 365:
Download the Office 2016 Tool
- Download Microsoft office 2016 tool from the Microsoft website (https://www.microsoft.com/en-us/download/details.aspx?id=49117)
and store in the network share. Network share is recommended only if you want to deploy the software to computers within the network. If you wanted to deploy Microsoft Office to computers located in a remote location, you can useHTTP
upload.
Note: The network share should have read permissions to Everyone group
and should be accessible from all the computers to which you are trying to install.
Extract the contents of the EXE
- To extract the downloaded package, navigate to the command prompt and run this command - <File Path>\officedeploymenttool_6612-6352.exe /extract:<File Path>\Destination Folder /quiet
Note: Ensure that you enter the correct file name in the command prompt
before extracting the package. You can know the file name by viewing the details, before downloading the package from the website.
Customize the Installation
- Open the Configuration.xml file from the extracted folder and the edit the file as given below,
Note: If you are copying the contents from CD, edit the config.xml file
available at \Networkshare\Office16\ProPlus.WW\Config.xml
<Configuration>
<Add OfficeClientEdition="32">
<Product ID="O365ProPlusRetail" PIDKEY="XXXXX-XXXXX-XXXXX-XXXXX-XXXXX">
<Language ID="en-US" />
<ExcludeApp ID="Access" />
</Product>
</Add>
<Updates Enabled="True" />
<Display Level="None" AcceptEULA="True" />
<Property Name="AutoActivate" Value="1" />
<Property Name="ForceAppShutdown" Value="True" />
</Configuration>
Note:
1. Product ID depends on the edition you require. For Office 2016 professional plus enter "ProPlusRetail", for Office 365 enter "O365ProPlusRetail"
2. Office Client edition depends on your OS architecture(32 or 64-bit)
3. Setting AutoActivate value as 1 will allow user to access the application directly without specifying the log in credentials
4. Setting ForceAppShutdown value as "True" will close all the microsoft office applications forcibly, before shutting down the computers. This may cause any data loss when microsoft office applications are running in the background.
- Save the file, after making the customization changes.