In a test environment that uses HTTP ======================================================================== Step 1: Create the binding between SharePoint 2016 and Office Web Apps Server New-SPWOPIBinding -ServerName <WacServerName> -AllowHTTP Step 2: View the WOPI zones for the SharePoint bindings Get-SPWOPIZone Step 3: Change the WOPI zone to internal-http Set-SPWOPIZone -zone "internal-http" Step 4: Change the AllowOAuthOverHttp setting in SharePoint 2016 to True (Get-SPSecurityTokenServiceConfig).AllowOAuthOverHttp $config = (Get-SPSecurityTokenServiceConfig) $config.AllowOAuthOverHttp = $true $config.Update() (Get-SPSecurityTokenServiceConfig).AllowOAuthOverHttp Step 5: Enable the Excel SOAP API $Farm = Get-SPFarm $Farm.Properties.Add("WopiLegacySoapSupport", "<URL>/x/_vti_bin/ExcelServiceInternal.asmx"); $Farm.Update(); Step 6: Verify that Office Web Apps is working In a production environment that uses H...
1. Create a new project: 2. Configure as a Sandbox (or as a Farm) Solution: 3. Add a new Module to your project: 4. Download a copy of Seattle.master: 5. Add the copy to your module, rename to CustomMaster.master, and Change your elements.xml file to point to _catalogs\masterpage folder: 6. Change your masterpage, to include a welcome message: 7. Deploy your solution and change your Site master page: 8. Verify that it shows your welcome message: Source: https://raquelalineblog.wordpress.com/2013/04/26/sharepoint-2013-create-a-master-page-based-on-seattle-master-with-vs-2012/
Comments
Post a Comment