Introduction
This guide will walk you through how to upgrade LiveTiles Intranet Enterprise Online manually with PowerShell script.
Prerequisites
1) Download SharePoint Online Management Shell
2) Publishing profile from the Intranet Enterprise hosted App Service
3) Intranet Enterprise deploy package
Get Publishing Profile from the App Service
1) Go to https://portal.azure.com
2) Go to 'App Service'
3) Find the App Service in the list
4) In the 'Overview' section click the 'Download publish profile' to download it
Get Deploy package
All deploy packages can be downloaded from here:
1) Download the Deploy package
2) Unzip the file
3) Go to the subfolder where the Deploy package is located
4) Copy below script to a text editor
.\Deploy.ps1 -siteName <msdeploySite> -username `<userName> -password <userPWD> -deployUrl https://<msdeploySite>.scm.azurewebsites.net/MSDeploy.axd?site=<msdeploySite>
Find info in the Publish profile
In the downloaded publish profile, you need 3 different information.
1) msdeploysite, e.g. 'LiveTiles365'
2) userName, e.g. '$LiveTiles'
3) userPWD, a 60 character string
<publishProfile
..
msdeploySite="LiveTiles365"
userName="$LiveTiles"
userPWD="1234567890abcdefghij"
..
>
Copy out these values and replace them it in the .Deploy script.
The values that should be replaces is marked in <..> (angle brackets) - brackets included.
The final Deploy script looks like this:
.\Deploy.ps1 -siteName LiveTiles365 -username `$LiveTiles -password 1234567890abcdefghij -deployUrl https://LiveTiles365.scm.azurewebsites.net/MSDeploy.axd?site=LiveTiles365
NOTE: The ` is not an mistake!
Run Deploy script
Run the SharePoint Online Management Shell directly in the folder.
NOTE: Select the option 'Open Windows PowerShell as administrator'
Paste in the final deploy script and press Enter to run it.
If it ask you how to run it, press 'r' to run it once.
The script will run for approx. 5 minutes and once it has run it will start upgrading the App Service with the files. In the duration of this upgrade, the LiveTiles Enterprise Administration (Wizdom Configuration Center) will be unresponsive.
Comments
0 comments
Article is closed for comments.