Introduction to Prime 4. Prerequisites 5. Deploying the Database 7. Updating the Web.Config 10. Turn-Off SharePoint Mobile 13

Size: px
Start display at page:

Download "Introduction to Prime 4. Prerequisites 5. Deploying the Database 7. Updating the Web.Config 10. Turn-Off SharePoint Mobile 13"

Transcription

1 Prime Installation Copyright Atera Prime, Inc. All rights reserved. All trademarks and registered trademarks are property of their respective owners.

2 Prime Installation 1 Introduction Introduction to Prime 4 Prerequisites 5 2 SQL Database Setup Deploying the Database 7 Updating the Web.Config 10 3 Setting Up Mobile 3.1 Turn-Off SharePoint Mobile 13 4 Deploying Prime Run Installation Script 16 Known Issues 18 5 Configuring Prime Activate Prime Features 20 Change Master Page 21 6 Updating Prime 6.1 How to update Prime 24

3 Prime Installation - 3 Introduction

4 Introduction to Prime It s what s missing from SharePoint An improved SharePoint experience that drives adoption and drastically improves productivity. All while making SharePoint fully mobile! Prime addresses many of challenges with SharePoint. It is designed for organizations large and small to maximize their returns in SharePoint by surfacing relevant information and drastically reducing the overhead involved in creating and organizing content. In this guide, we will be covering the installation for Prime. For support, you can us at family@ateraprime.com. Prime Installation - 4

5 Prerequisites In order to deploy Prime, you must have the following ready and configured: 1. SharePoint 2010/2013 Environment 2. SQL Server 2008 R2 and up 3. Direct/RDP access to all servers in the SharePoint Farm 4. Admin user with db_owner provileges to SharePoint Content and Config databases In addition, having a publishing features enabled would make the Prime experience much more seamless and integrated. However, this is a recommendation, and not required, as SharePoint Foundation does not have Publishing Infrastructure. Prime Installation - 5

6 Prime Installation - 6 SQL Database Setup

7 Deploying the Database Prime requires the Prime Settings Database to be deployed. This Database is used by all Prime web parts and components to store configuration data. To deploy the database, please follow the steps below. Prereq: Database Installation Script and SQL Management Studio To deploy the database, we will be using the SQL script provided in the installation package and Microsoft SQL Management Studio. Please make sure that the SQL Authentication has been enabled for SQL Server under Server -> Properties -> Security. The SQL script should reside in the SQL folder of the Prime installation package. Prime Installation - 7

8 Step 1: Connect to SQL You should open and connect to the SQL instance you would like the database to deploy to. Step 2: Open Script inside SQL Server Go to File -> Open -> 'File...' in the top menu and open the SQL Script provided with the Prime Installation package. Prime Installation - 8

9 If you would like to change the name of the database, or the user, you can do a simple Find and Replace and change the database name and the username. Default database name is "PrimeSettings_SP" and default database username is "primesettingsuser". Step 3: Execute the Script After having opened the script, you can simply excecute the script. Prime Installation - 9

10 Updating the Web.Config Once the database has been successfully deployed, we would need to update the web.config file for the all the web applications getting Prime on all servers in the farm. Prerequisites You need access to all the servers in the SharePoint farm. Optional, but recommended would be NotePad++, for easy web.config editing. Step 1: Determine Web.Config Location Web.Config for a web application is usually stored at <Local_Drive>:\inetpub\wwwroot\wss\VirtualDirectories\<WebApp_Port>\web.config. If you have trouble finding this, you should contact your System Administrator for help. Step 2: Backup Web.Config File It is always recommended to backup the web.config file. To do so, make a copy of the Web.Config file, and rename it to web_<year>_<month>_<day>_<hour>_<minute>_<seconds>.bak. Prime Installation - 10

11 Step 3: Update the Web.Config Now you should open the Web.Config. Check to see if you already have a <connectionstrings> tag. If there is, then paste the contents of the <connectionstrings> from below in there. If not, somewhere inside the <configuration> tag, add the <connectionstrings> tag from below. Also, make sure to update the SERVERNAME, DBNAME, USERNAME, and PWD. If you have trouble finding this information, contact your SQL Admin for help. <connectionstrings> <remove name="aterasettings" /> <add name="aterasettings" connectionstring="data Source=SERVERNAME;database=DBNAME;User ID=USERNAME;Password=PWD" providername="system.data.sqlclient" /> </connectionstrings> Step 4 (Optional): Additional Web Applications You must repeat steps 1 through 3 for all Web Applications on which Prime will be deployed. More Servers in Farm If you have more servers in your farm, you must repeat steps 1 through 4 on all of them. Prime Installation - 11

12 Prime Installation - 12 Setting Up Mobile

13 Turn-Off SharePoint Mobile In order for Prime's amazing mobile capabilities to kick in, we must turn of SharePoint's mobile functionality. To do so, please follow the steps below. Prerequisites You need access to all the servers in the SharePoint farm. Optional, but recommended would be NotePad++, for easy web.config editing. Step 1: Determine Web.Config Location Web.Config for a web application is usually stored at <Local_Drive>:\inetpub\wwwroot\wss\VirtualDirectories\<WebApp_Port>\web.config. If you have trouble finding this, you should contact your System Administrator for help. Step 2: Backup Web.Config File It is always recommended to backup the web.config file. To do so, make a copy of the Web.Config file, and rename it to web_<year>_<month>_<day>_<hour>_<minute>_<seconds>.bak. Prime Installation - 13

14 Step 3: Update Web.Config Open the web.config file and add this block in the 'configuration/system.web' child elements: <browsercaps> <result type="system.web.mobile.mobilecapabilities, System.Web.Mobile, Version= , Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> <filter>ismobiledevice=false</filter> </browsercaps> Step 4 (Optional): Additional Web Applications You must repeat steps 1 through 3 for all Web Applications on which Prime will be deployed. More Servers in Farm If you have more servers in your farm, you must repeat steps 1 through 4 on all of them. Prime Installation - 14

15 Prime Installation - 15 Deploying Prime

16 Run Installation Script To deploy all the WSPs with the Prime package, we've created a powershell script which automatically deploys and installs all the webparts. To do so, please follow the steps below. Prerequisite You will need a user with Admin access and db_owner access to SharePoint content databse and config database to do this installation. Also, during this process, your SharePoint would be down for about minutes, so plan ahead. Step 1: Copy all WSPs and Deploy.ps1 to a folder You should copy all the provided WSPs and the Deploy.ps1 script into a folder. For ease, copy into C:\PrimeInstallation Folder. Step 2: Run SharePoint Management Shell as an Administrator Prime Installation - 16

17 Step 3: Run Commands to Deploy and Install Prime To install the WSPs, you should run the following commands: > cd "<Directory_Where_Prime_WSPs>" >.\deploy.ps1 This process should take about minutes. Installation Problems If you come across some issues, please check the next page for Known Issues. Prime Installation - 17

18 Known Issues Below are some known issues during SharePoint deployment. Script not digitally signed Please do the following to bypass this: 1. Run >Get-ExecutionPolicy inside the Management Shell. Take note of the policy set. Write it down somewhere. 2. Run >Set-ExecutionPolicy Unrestricted. 3. Run the >.\deploy.ps1 to deploy the WSPs. 4. Reset the Execution policy to what you took note of in step 2 using >Set-ExecutionPolicy <WhatYouWroteDown> Other Issues For other issues, you can contact your System Administrator, as they might have a better idea on the configurations on the system. You can also contact us at family@ateraprime.com. Prime Installation - 18

19 Prime Installation - 19 Configuring Prime

20 Activate Prime Features Prime gives you great control over your SharePoint. You can activate and use Prime on a site collection-to-site collection basis. Even better, you can turn off the Prime features you don't use on certain site collections. Prime uses the SharePoint features to the fullest extent to provide the best experience possible. Prerequisites Site Collection Admin access to the Site Collection activating Prime on. To Activate Prime Go to the Site Collection you want to activate Prime on. Go to Site Actions > Site Settings > Site Collection Features. Here you will see all the Prime features, activate whichever ones you will use. You can activate them all if you like. Also, some features might have 'Beta' in them. These Beta features are still in early stages; thus, have bugs. But they will give you the taste of some of the exciting new things coming in Prime. Of course, Beta is not the end of it. We are always working on new things, and of course, maintaining current release. Prime Installation - 20

21 Change Master Page After activating Prime, you can use the Prime Masterpage, as the Prime Masterpage gives your users a refreshing look and enables the responsive behaviour, which makes SharePoint work on mobile devices and tablets. Step 1: Site Settings Go to Site Settings and click Master Page under Look and Feel. Step 2: Select a Masterpage The following masterpages get shipped with Prime: 1. ap-prime-2010.master: Use this masterpage in most instances. Except, SharePoint Foundation. For Foundation, use ap-prime-foundation.master. 2. ap-prime-edge.master: This masterpage runs modern IE, where as SharePoint reverts all IE versions back to IE8-compatibility. This is an experimental masterpage, and not recommended Prime Installation - 21

22 as some SharePoint functionality might not work. 3. ap-prime-mysite.master: Use this masterpage on a My Sites site. 4. ap-prime-foundation.master: Use this masterpage on SharePoint Foundation environments. 5. ap-prime-configuration.master: Don't use this masterpage. It is for internal Prime use. Prime Installation - 22

23 Prime Installation - 23 Updating Prime

24 How to update Prime So, you want to install a new version of Prime? You will need to the following: 1. Run the powershell script to install the new packages. Refer to this document for instructions. 2. If there is a new Database script, run the script, as it will take care of everything. Make sure to update the database name in the script. More on database setup here. 3. Re-activate all the Prime features in all the site collections using Prime. More info on this here. Prime Installation - 24

Melon, Inc. Melon Components Starter Kit

Melon, Inc. Melon Components Starter Kit User s Guide for Melon Components Starter Kit For additional information www.meloncomponents.com Contact us at info@meloncomponents.com 2010 All rights reserved Contents Overview... 3 Melon Components

More information

Responsive SharePoint WSP Edition

Responsive SharePoint WSP Edition Responsive SharePoint WSP Edition Version 1.0 Bootstrap 3 and Foundation 4 for SP 2013 The Bootstrap 3 and Foundation 4 frameworks integrated with Microsoft SharePoint 2013, including several master pages

More information

Search for Dynamics v Installation Guide

Search for Dynamics v Installation Guide Search for Dynamics v1.4.3.1 Installation Guide SharePoint 2013 and 2016 Contents Chapter 1: Prerequisites... 3 Chapter 2: Install Search for Dynamics... 4 Install SharePoint Components...4 Install Permissive

More information

Brainware Intelligent Capture Solution Configuration Manager

Brainware Intelligent Capture Solution Configuration Manager Brainware Intelligent Capture Solution Configuration Manager Installation and Setup Guide Version: 1.2.x Written by: Documentation Team Date: March 2019 2014-2019 Hyland Software, Inc. and its affiliates.

More information

BindTuning Installations Instructions, Setup Guide. RECAP Setup Guide

BindTuning Installations Instructions, Setup Guide. RECAP Setup Guide BindTuning Installations Instructions, Setup Guide RECAP Setup Guide This documentation was developed by, and is property of Bind Lda, Portugal. As with any software product that constantly evolves, our

More information

How to Configure Impersonation for OneDrive for Business Data Sources

How to Configure Impersonation for OneDrive for Business Data Sources How to Configure Impersonation for OneDrive for Business Data Sources Before Getting Started Download and install the SharePoint Online Management Shell from the Microsoft Windows Download Center to a

More information

PHEWR Installation Guide (version 3)

PHEWR Installation Guide (version 3) PHEWR Installation Guide (version 3) Introduction Included in this Zip File: Database - sql scripts to install database objects Admin - directory structure containing the files necessary to run the PHEWR

More information

Coveo Platform 7.0. Microsoft SharePoint Legacy Connector Guide

Coveo Platform 7.0. Microsoft SharePoint Legacy Connector Guide Coveo Platform 7.0 Microsoft SharePoint Legacy Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds

More information

SharePoint 2010 Central Administration/Configuration Training

SharePoint 2010 Central Administration/Configuration Training SharePoint 2010 Central Administration/Configuration Training Overview: - This course is designed for the IT professional who has been tasked with setting up, managing and maintaining Microsoft's SharePoint

More information

RSA Via L&G Collector Data Sheet for Office365

RSA Via L&G Collector Data Sheet for Office365 RSA Via L&G Collector Data Sheet for Office365 Table of Contents Purpose 3 Supported Software 3 Account Data Collector 4 Prerequisites 4 Configuration 5 Configuration Information 5 Limitations/ Requirements

More information

81225 &SSWSSS Call Us SharePoint 2010 S:

81225 &SSWSSS Call Us SharePoint 2010 S: 81225 &SSWSSS Call Us SharePoint 2010 S: +91 93925 63949 Course Objectives At the end of the course, students will be able to:! Understand IIS Web Server and hosting websites in IIS.! Install and configure

More information

BindTuning Installations Instructions, Setup Guide. Invent Setup Guide

BindTuning Installations Instructions, Setup Guide. Invent Setup Guide BindTuning Installations Instructions, Setup Guide Invent Setup Guide This documentation was developed by, and is property of Bind Lda, Portugal. As with any software product that constantly evolves, our

More information

BindTuning Installations Instructions, Setup Guide. Empower Setup Guide

BindTuning Installations Instructions, Setup Guide. Empower Setup Guide BindTuning Installations Instructions, Setup Guide Empower Setup Guide This documentation was developed by, and is property of Bind Lda, Portugal. As with any software product that constantly evolves,

More information

BindTuning Installations Instructions, Setup Guide. Zeus Setup Guide

BindTuning Installations Instructions, Setup Guide. Zeus Setup Guide BindTuning Installations Instructions, Setup Guide Zeus Setup Guide This documentation was developed by, and is property of Bind Lda, Portugal. As with any software product that constantly evolves, our

More information

PointFire Multilingual User Interface for on-premises SharePoint PointFire 2013 v1.0 to 2016 v1.0 Upgrade Guide

PointFire Multilingual User Interface for on-premises SharePoint PointFire 2013 v1.0 to 2016 v1.0 Upgrade Guide PointFire 2016 Multilingual User Interface for on-premises SharePoint 2016 PointFire 2013 v1.0 to 2016 v1.0 Upgrade Guide Version: 1.0 Build Date: October 28, 2016 Prepared by: Address: Tel: Email: Web:

More information

Forrest Terrace, Abbotsford, BC V2S 1G7 Tel: Fax: Website:

Forrest Terrace, Abbotsford, BC V2S 1G7 Tel: Fax: Website: 203-34334 Forrest Terrace, Abbotsford, BC V2S 1G7 Tel: 604-504-7936 Fax: 604-504-7976 Website: www.kcsi.ca Email: sales@kcsi.ca SIMMS Inventory Management System RFQ Module Manual Prerequisites: - SIMMS

More information

DocAve 6 SharePoint Migrator

DocAve 6 SharePoint Migrator DocAve 6 SharePoint Migrator User Guide Service Pack 4, Cumulative Update 2 Revision C Issued July 2014 Table of Contents About SharePoint Migration... 5 Complementary Products... 5 Submitting Documentation

More information

Replicator. Installing and Configuring Replicator With Least Privilege P. March 09,

Replicator. Installing and Configuring Replicator With Least Privilege P. March 09, Replicator Installing and Configuring Replicator With Least Privilege P March 09, 2018 www.metalogix.com info@metalogix.com 202.609.9100 Copyright International GmbH, 2002-2018 All rights reserved. No

More information

Table of Contents. Introduction.. 2. System Requirement.. 3. Installation Steps Inserting data into NotificationInfo list...

Table of Contents. Introduction.. 2. System Requirement.. 3. Installation Steps Inserting data into NotificationInfo list... Table of Contents Introduction.. 2 System Requirement.. 3 Installation Steps... 3 Inserting data into NotificationInfo list...5 Editing User information... 6 Viewing User information. 7 Conclusion.8 Page

More information

NetAdvantage for SharePoint Release Notes

NetAdvantage for SharePoint Release Notes NetAdvantage for SharePoint Release Notes Whether you are a business user who needs to update a list or a developer who wants to create richer visualizations, NetAdvantage for SharePoint allows you to

More information

NetAdvantage for SharePoint Release Notes

NetAdvantage for SharePoint Release Notes NetAdvantage for SharePoint Release Notes Whether you are a business user who needs to update a list or a developer who wants to create richer visualizations, NetAdvantage for SharePoint allows you to

More information

Sharepoint 2010 How Manually Update Web Analytics Reports Not Working

Sharepoint 2010 How Manually Update Web Analytics Reports Not Working Sharepoint 2010 How Manually Update Web Analytics Reports Not Working Having trouble finding your web analytics report for SharePoint 2013? There is much confusion around the SharePoint community on whether

More information

DocAve 6 Exchange Public Folder Migrator

DocAve 6 Exchange Public Folder Migrator DocAve 6 Exchange Public Folder Migrator User Guide Service Pack 4, Cumulative Update 1 Revision B Issued June 2014 Table of Contents Table of Contents... 2 About Exchange Public Folder Migrator... 5 Complementary

More information

EPM Live Installation Guide

EPM Live Installation Guide 08.18.16.CKG EPM Live 2013 - Installation Guide... 3 Installation Guide Disclaimer... 3 Introduction to EPM Live 2013 - Installation Guide... 4 Pre-Installation... 4 Pre-Installation Setup... 4 Required

More information

TFS for SQL/BI Developers. Dave Fackler Business Intelligence

TFS for SQL/BI Developers. Dave Fackler Business Intelligence TFS for SQL/BI Developers Dave Fackler Business Intelligence Architect davef@rollinghillsky.com @sqlbiguru http://linkedin.com/in/davefackler Agenda The Problem Intro to Team Foundation Server (TFS) Using

More information

Deltek winsight Dashboard 6.5. Installation Guide

Deltek winsight Dashboard 6.5. Installation Guide Deltek winsight Dashboard 6.5 Installation Guide August 17, 2012 While Deltek has attempted to verify that the information in this document is accurate and complete, some typographical or technical errors

More information

Coveo Platform 6.5. Microsoft SharePoint Connector Guide

Coveo Platform 6.5. Microsoft SharePoint Connector Guide Coveo Platform 6.5 Microsoft SharePoint Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to changing

More information

White Paper. Backup and Recovery Challenges with SharePoint. By Martin Tuip. October Mimosa Systems, Inc.

White Paper. Backup and Recovery Challenges with SharePoint. By Martin Tuip. October Mimosa Systems, Inc. White Paper By Martin Tuip Mimosa Systems, Inc. October 2009 Backup and Recovery Challenges with SharePoint CONTENTS Introduction...3 SharePoint Backup and Recovery Challenges...3 Native Backup and Recovery

More information

DocAve 6 EMC Documentum Migrator

DocAve 6 EMC Documentum Migrator DocAve 6 EMC Documentum Migrator User Guide Service Pack 4, Cumulative Update 2 Revision C Issued July 2014 Table of Contents Table of Contents... 2 About EMC Documentum Migrator... 5 Complementary Products...

More information

EPM Live Installation Guide

EPM Live Installation Guide 04.20.17.CKG EPM Live 2016 - Installation Guide... 3 Installation Guide Disclaimer... 3 Introduction to EPM Live 2016 - Installation Guide... 4 Pre-Installation... 4 Pre-Installation Setup... 4 Required

More information

Wiki Installation Guide Guide to installing the BlueBridge Wiki Extensions for Microsoft SharePoint 2013

Wiki Installation Guide Guide to installing the BlueBridge Wiki Extensions for Microsoft SharePoint 2013 Guide to installing the BlueBridge Wiki Extensions for Microsoft SharePoint 2013 Table Of Contents 1. BlueBridge Wiki Extensions Installation Guide... 3 2. Installation... 4 2.1 Preparing the Installation...

More information

DocAve 6 File System Migrator

DocAve 6 File System Migrator DocAve 6 File System Migrator User Guide Service Pack 4, Cumulative Update 1 Revision B Issued June 2014 Table of Contents About File System Migrator... 5 Complementary Products... 5 Submitting Documentation

More information

Click Studios. Passwordstate. Upgrade Instructions to V8 from V5.xx

Click Studios. Passwordstate. Upgrade Instructions to V8 from V5.xx Passwordstate Upgrade Instructions to V8 from V5.xx This document and the information controlled therein is the property of Click Studios. It must not be reproduced in whole/part, or otherwise disclosed,

More information

File Share Navigator Online. Release Notes

File Share Navigator Online. Release Notes File Share Navigator Online Release Notes Release Date: March 2018 File Share Navigator Online March 2018 New Features and Improvements Microsoft Azure File Storage is now a supported storage type. Special

More information

Sharepoint 2010 How Manually Update Web Analytics Reports No Data

Sharepoint 2010 How Manually Update Web Analytics Reports No Data Sharepoint 2010 How Manually Update Web Analytics Reports No Data Having trouble finding your web analytics report for SharePoint 2013? Usage processing may be disabled on tis server or the usage data

More information

SQL Server Deployment Installation Manual. Call a Hygiena representative for more information or support

SQL Server Deployment Installation Manual. Call a Hygiena representative for more information or support SQL Server Deployment Installation Manual Call a Hygiena representative for more information or support 1.805.388.8007 Why SQL Server? Performance Quicker performance with reporting due to querying Security

More information

DocAve 6 Exchange Public Folder Migrator

DocAve 6 Exchange Public Folder Migrator DocAve 6 Exchange Public Folder Migrator User Guide Service Pack 6, Cumulative Update 1 Issued December 2015 1 Table of Contents What s New in this Guide... 5 About Exchange Public Folder Migrator... 6

More information

DocAve 6 Software Platform

DocAve 6 Software Platform DocAve 6 Software Platform Release Notes Service Pack 9, Cumulative Update 1 DocAve For Microsoft SharePoint September 2017 DocAve 6 SP9 CU1 Update Details Refer to the Update Manager section of the DocAve

More information

DocAve 6 EMC Documentum Migrator

DocAve 6 EMC Documentum Migrator DocAve 6 EMC Documentum Migrator User Guide Service Pack 6 Issued October 2015 1 Table of Contents What s New in this Guide... 5 About EMC Documentum Migrator... 6 Complementary Products... 6 Submitting

More information

DocAve 6 Exchange Public Folder Migrator

DocAve 6 Exchange Public Folder Migrator DocAve 6 Exchange Public Folder Migrator User Guide Service Pack 5, Cumulative Update 1 Issued May 2015 1 Table of Contents What s New in this Guide... 5 About Exchange Public Folder Migrator... 6 Complementary

More information

Chaos, frustrated users

Chaos, frustrated users SharePoint SharePoint 2003 and SharePoint 2007 No formal support No processes No governance No defined security model Chaos, frustrated users Over 80 top level sites Site Owners not identified or trained

More information

DocAve 6 SharePoint Migrator

DocAve 6 SharePoint Migrator + DocAve 6 SharePoint Migrator User Guide Service Pack 6 Issued April 2016 1 Table of Contents What s New in this Guide... 5 About SharePoint Migration... 5 Complementary Products... 6 Submitting Documentation

More information

ControlPoint. Advanced Installation Guide. September 07,

ControlPoint. Advanced Installation Guide. September 07, ControlPoint Advanced Installation Guide September 07, 2017 www.metalogix.com info@metalogix.com 202.609.9100 Copyright International GmbH., 2008-2017 All rights reserved. No part or section of the contents

More information

Migrating vrealize Automation 6.2 to 7.2

Migrating vrealize Automation 6.2 to 7.2 Migrating vrealize Automation 6.2 to 7.2 vrealize Automation 7.2 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition.

More information

Microsoft Official Courseware Course Introduction to Web Development with Microsoft Visual Studio

Microsoft Official Courseware Course Introduction to Web Development with Microsoft Visual Studio Course Overview: This five-day instructor-led course provides knowledge and skills on developing Web applications by using Microsoft Visual Studio 2010. Prerequisites Before attending this course, students

More information

Before you start proceeding with this tutorial, we are assuming that you are already aware about the basics of Web development.

Before you start proceeding with this tutorial, we are assuming that you are already aware about the basics of Web development. About the Tutorial This tutorial will give you an idea of how to get started with SharePoint development. Microsoft SharePoint is a browser-based collaboration, document management platform and content

More information

Service Manager. Ops Console On-Premise User Guide

Service Manager. Ops Console On-Premise User Guide Service Manager powered by HEAT Ops Console On-Premise User Guide 2017.2.1 Copyright Notice This document contains the confidential information and/or proprietary property of Ivanti, Inc. and its affiliates

More information

Installation Guide. Last Revision: Oct 03, Page 1-

Installation Guide. Last Revision: Oct 03, Page 1- Installation Guide Last Revision: Oct 03, 2005 -Page 1- Contents Before You Begin... 2 Installation Overview... 2 Installation for Microsoft Windows 2000, Windows 2003, and Windows XP Professional... 3

More information

PDF SHARE FORMS. Online, Offline, OnDemand. PDF forms and SharePoint are better together. PDF Share Forms Enterprise 3.0.

PDF SHARE FORMS. Online, Offline, OnDemand. PDF forms and SharePoint are better together. PDF Share Forms Enterprise 3.0. PDF SHARE FORMS Online, Offline, OnDemand PDF forms and SharePoint are better together PDF Share Forms Enterprise 3.0 Install Guide SharePoint 2013 Contents Disclaimer...3 Copyright...3 About this guide...3

More information

Search in SharePoint 2013

Search in SharePoint 2013 Search in SharePoint 2013 Peter Carson President, Envision IT SharePoint MVP Virtual Technical Specialist, Microsoft Canada peter@envisionit.com http://blog.petercarson.ca www.envisionit.com Twitter @carsonpeter

More information

SharePoint Server 2013

SharePoint Server 2013 SharePoint Server 2013 Content Extract Files Installing the Search Connector in SharePoint Prerequisites Open an elevated command prompt Deploy the solution to SharePoint Set content access account in

More information

Version 6.1 Release Notes and Installation Guide

Version 6.1 Release Notes and Installation Guide Version 6.1 Release Notes and Copyright 2013 Metalogix International. All Rights Reserved. This software is protected by copyright law and international treaties. Unauthorized reproduction or distribution

More information

Setting Up EPiServer for Demo

Setting Up EPiServer for Demo Setting Up EPiServer for Demo Abstract This document describes how to set up a standard EPiServer installation so that it can be used in a demo environment. Product version: 4.51 Document version: 1.0

More information

DocAve 6 Livelink Migrator

DocAve 6 Livelink Migrator DocAve 6 Livelink Migrator User Guide Service Pack 9 Issued June 2017 1 Table of Contents What s New in this Guide... 6 About Livelink Migration... 7 Complementary Products... 7 Submitting Documentation

More information

Welcome to the. SACRRA Data Master Application. Administration Guide

Welcome to the. SACRRA Data Master Application. Administration Guide Welcome to the SACRRA Data Master Application Administration Guide SACRRA DMA Help Guide v1.0 Copyright 2015 - All Rights Reserved - South African Credit & Risk Reporting Association SACRRA Contents COPYRIGHT...

More information

ControlPoint. Native Installation Guide. February 05,

ControlPoint. Native Installation Guide. February 05, ControlPoint Native Installation Guide February 05, 2018 www.metalogix.com info@metalogix.com 202.609.9100 Copyright International GmbH., 2008-2018 All rights reserved. No part or section of the contents

More information

SHAREPOINT-2016 Syllabus

SHAREPOINT-2016 Syllabus Syllabus Overview: Gone are those days when we used to manage all information in a corporate manually. For every type of requirement we have different solutions but integrating them is a big nuisance.

More information

DocAve 6 Lotus Notes Migrator

DocAve 6 Lotus Notes Migrator DocAve 6 Lotus Notes Migrator User Guide Service Pack 4, Cumulative Update 2 Revision B Issued July 2014 Table of Contents About Lotus Notes Migrator... 5 Complementary Products... 5 Submitting Documentation

More information

REVISED 1 AUGUST REVIEWER'S GUIDE FOR VMWARE APP VOLUMES VMware App Volumes and later

REVISED 1 AUGUST REVIEWER'S GUIDE FOR VMWARE APP VOLUMES VMware App Volumes and later REVISED 1 AUGUST 2018 REVIEWER'S GUIDE FOR VMWARE APP VOLUMES VMware App Volumes 2.13.1 and later Table of Contents Introduction Audience What You Will Learn Navigating This Document for App Volumes Use

More information

REVISED 1 AUGUST QUICK-START TUTORIAL FOR VMWARE APP VOLUMES VMware App Volumes and later

REVISED 1 AUGUST QUICK-START TUTORIAL FOR VMWARE APP VOLUMES VMware App Volumes and later REVISED 1 AUGUST 2018 QUICK-START TUTORIAL FOR VMWARE APP VOLUMES VMware App Volumes 2.13.1 and later Table of Contents Introduction Audience What You Will Learn Navigating This Document for App Volumes

More information

Sharepoint 2010 How Manually Update Web Analytics Workflows Timer Job

Sharepoint 2010 How Manually Update Web Analytics Workflows Timer Job Sharepoint 2010 How Manually Update Web Analytics Workflows Timer Job I am able to generate the reports manually by going to Site Collection Web Analytics Reports, but I Check if the Web Analytics Trigger

More information

VMware AirWatch Database Migration Guide A sample procedure for migrating your AirWatch database

VMware AirWatch Database Migration Guide A sample procedure for migrating your AirWatch database VMware AirWatch Database Migration Guide A sample procedure for migrating your AirWatch database For multiple versions Have documentation feedback? Submit a Documentation Feedback support ticket using

More information

Click Studios. Passwordstate. Installation Instructions

Click Studios. Passwordstate. Installation Instructions Passwordstate Installation Instructions This document and the information controlled therein is the property of Click Studios. It must not be reproduced in whole/part, or otherwise disclosed, without prior

More information

StoragePoint Advanced Installation Guide

StoragePoint Advanced Installation Guide A StoragePoint January 16, 2018 www.metalogix.com info@metalogix.com 202.609.9100 Copyright 2018 Copyright Metalogix International GmbH All rights reserved. No part or section of the contents of this material

More information

SharePoint 2013 a Operations Manager 2012 R2 - Service Visualization

SharePoint 2013 a Operations Manager 2012 R2 - Service Visualization SharePoint 2013 a Operations Manager 2012 R2 - Service Visualization Pavel Kyzivát, Premier Field Engineer Robert Novák, Premier Field Engineer Microsoft Agenda Introduction Architecture of the solution

More information

V4.1. CtxUniverse INSTALLATION GUIDE BY ADRIAN TURCAS. INFRALOGIC INC. #412c-1255 Phillips Square, H3B 3G1 MONTREAL, CANADA

V4.1. CtxUniverse INSTALLATION GUIDE BY ADRIAN TURCAS. INFRALOGIC INC. #412c-1255 Phillips Square, H3B 3G1 MONTREAL, CANADA V4.1 CtxUniverse INSTALLATION GUIDE BY ADRIAN TURCAS INFRALOGIC INC. #412c-1255 Phillips Square, H3B 3G1 MONTREAL, CANADA 2016-11-08 Table of Contents 1 System requirements...3 2 IIS installation...4 3

More information

Getting Started with the Deployment Console and Deploying the Clients Per PXE Network Booting using their MAC address. Quick Guide

Getting Started with the Deployment Console and Deploying the Clients Per PXE Network Booting using their MAC address. Quick Guide Getting Started with the Deployment Console and Deploying the Clients Per PXE Network Booting using their MAC address Quick Guide Deployment Manager 2 Quick Guide 1 Introduction...3 1.1 Installing the

More information

Acano Solution. Acano Manager Release Release Notes. Acano. October J

Acano Solution. Acano Manager Release Release Notes. Acano. October J Acano Solution Acano Manager Release 1.1.1 Release Notes Acano October 2014 76-1033-03-J Contents Contents 1 Introduction 3 2 Features in Acano Manager 1.1 3 2.1 Time-limited Features in R1.1... 3 2.2

More information

Oracle Application Express: Administration 1-2

Oracle Application Express: Administration 1-2 Oracle Application Express: Administration 1-2 The suggested course agenda is displayed in the slide. Each lesson, except the Course Overview, will be followed by practice time. Oracle Application Express:

More information

Table of Contents. Knowledge Center -

Table of Contents. Knowledge Center - / Table of Contents... Does BioStar work on Windows 8?... Running the BioStar installation package to install BioStar on your PC... Installing MS SQL Server 2012 Express... Running SQL 2012 Express Studio...

More information

Getting Started with the Ed-Fi ODS and Ed-Fi ODS API

Getting Started with the Ed-Fi ODS and Ed-Fi ODS API Getting Started with the Ed-Fi ODS and Ed-Fi ODS API Ed-Fi ODS and Ed-Fi ODS API Version 2.0 - Technical Preview January 2015 2014-2015 Ed-Fi Alliance, LLC. All rights reserved. Ed-Fi is a registered trademark

More information

Core Solutions of Microsoft SharePoint Server 2013

Core Solutions of Microsoft SharePoint Server 2013 Core Solutions of Microsoft SharePoint Server 2013 Course: 20331 Course Details Audience(s): IT Professional(s) Technology: Duration: Microsoft SharePoint Server 40 Hours ABOUT THIS COURSE This course

More information

Installation Guide. Nintex Forms 2010 Installation Guide.

Installation Guide. Nintex Forms 2010 Installation Guide. Installation Guide www.nintex.com support@nintex.com 2012 Nintex, All rights reserved. Errors and omissions excepted. Table of Contents System Requirements... 2 1.0 Installing Nintex Forms 2010... 4 Before

More information

DocAve 6 Software Platform

DocAve 6 Software Platform DocAve 6 Software Platform Release Notes Service Pack 8, Cumulative Update 3 DocAve For Microsoft SharePoint April 2017 DocAve 6 SP8 CU3 Update Details Refer to the Update Manager section of the DocAve

More information

AirLift Configuration. VMware Workspace ONE UEM 1902 VMware Workspace ONE AirLift 1.1

AirLift Configuration. VMware Workspace ONE UEM 1902 VMware Workspace ONE AirLift 1.1 VMware Workspace ONE UEM 1902 VMware Workspace ONE AirLift 1.1 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments about this

More information

MobileFast SyncStudio. A Complete Mobile Database Synchronization Solution. Quick-Start Manual. Release 1.61, May 2014

MobileFast SyncStudio. A Complete Mobile Database Synchronization Solution. Quick-Start Manual. Release 1.61, May 2014 MobileFast SyncStudio A Complete Mobile Database Synchronization Solution Quick-Start Manual Release 1.61, May 2014 Copyright 2014 by MobileFast Corporation All rights reserved Page 1 of 25 Edition Notes

More information

Connect Install Guide

Connect Install Guide Connect Install Guide Version 3.2 Publication Date: December 16, 2013 Copyright Metalogix International GmbH 2008-2013. All Rights Reserved. This software is protected by copyright law and international

More information

Partner Integration Portal (PIP) Installation Guide

Partner Integration Portal (PIP) Installation Guide Partner Integration Portal (PIP) Installation Guide Last Update: 12/3/13 Digital Gateway, Inc. All rights reserved Page 1 TABLE OF CONTENTS INSTALLING PARTNER INTEGRATION PORTAL (PIP)... 3 DOWNLOADING

More information

Configuring RentalPoint Web Services

Configuring RentalPoint Web Services Table of Contents 1. What is RentalPoint Web Services? 2 2. How to Configure Your Server 2 2.1 Download and Install.NET Framework 4.5.1 2 2.2 Download and Install IIS 2 2.3 Download and Install RPWS Files

More information

Initial Server Sync Prior to Replicating

Initial Server Sync Prior to Replicating Replicator VERSION 7.4.0 January 04, 2018 Scenario Guide Article 1130531 www.metalogix.com info@metalogix.com 202.609.9100 Copyright International GmbH, 2002-2018 All rights reserved. No part or section

More information

DocAve 6 Software Platform

DocAve 6 Software Platform DocAve 6 Software Platform Release Notes Service Pack 8, Cumulative Update 2 DocAve For Microsoft SharePoint January 2017 DocAve 6 SP8 CU2 Update Details Refer to the Update Manager section of the DocAve

More information

DocAve 6 Quickr Migrator

DocAve 6 Quickr Migrator DocAve 6 Quickr Migrator User Guide Service Pack 5 Revision B Issued February 2015 1 Table of Contents What s New in this Guide... 5 About Quickr Migrator... 6 Complementary Products... 6 Submitting Documentation

More information

ControlPoint. Quick Start Guide. November 09,

ControlPoint. Quick Start Guide. November 09, ControlPoint Quick Start Guide November 09, 2017 www.metalogix.com info@metalogix.com 202.609.9100 Copyright International GmbH., 2008-2017 All rights reserved. No part or section of the contents of this

More information

Microsoft SharePoint 2010, Application Development

Microsoft SharePoint 2010, Application Development Microsoft SharePoint 2010, Application Development 10175; 5 Days, Instructor-led Course Description This course provides existing.net developers with practical information and labs that enables them to

More information

Essentials Wizard Help - Configure Office 365

Essentials Wizard Help - Configure Office 365 For a list of Essentials options and setup instructions, see Step 1 - Set Up Essentials for Office 36 PowerShell Requirements The Essentials Wizard utilizes PowerShell scripts to quickly configure and

More information

Installation Guide. . All right reserved. For more information about Specops Command and other Specops products, visit

Installation Guide. . All right reserved. For more information about Specops Command and other Specops products, visit . All right reserved. For more information about Specops Command and other Specops products, visit www.specopssoft.com Copyright and Trademarks Specops Command is a trademark owned by Specops Software.

More information

SharePoint 2013 Developer

SharePoint 2013 Developer SharePoint 2013 Developer Duration: 5 Days Overview Thorough education is key to working with SharePoint 2013 productively. This course guides you through essential 2013 elements, from pre-requisites to

More information

NovaBACKUP xsp Version 13.1 Upgrade Guide

NovaBACKUP xsp Version 13.1 Upgrade Guide NovaBACKUP xsp Version 13.1 Upgrade Guide NovaStor / July 2012 2012 NovaStor, all rights reserved. All trademarks are the property of their respective owners. Features and specifications are subject to

More information

DocAve. Release Notes. Governance Automation Service Pack 5 Cumulative Update 2. For Microsoft SharePoint

DocAve. Release Notes. Governance Automation Service Pack 5 Cumulative Update 2. For Microsoft SharePoint DocAve Governance Automation Service Pack 5 Cumulative Update 2 Release Notes For Microsoft SharePoint Released March 10, 2015 Governance Automation SP5 CU2 Update Details Refer to the Updating Governance

More information

DocAve 6 Software Platform

DocAve 6 Software Platform DocAve 6 Software Platform Release Notes Service Pack 9 DocAve For Microsoft SharePoint June 2017 DocAve 6 SP9 Update Details Refer to the Update Manager section of the DocAve Control Panel Reference Guide

More information

COURSE OUTLINE: OD10267A Introduction to Web Development with Microsoft Visual Studio 2010

COURSE OUTLINE: OD10267A Introduction to Web Development with Microsoft Visual Studio 2010 Course Name OD10267A Introduction to Web Development with Microsoft Visual Studio 2010 Course Duration 2 Days Course Structure Online Course Overview This course provides knowledge and skills on developing

More information

Windows. Not just for houses

Windows. Not just for houses Windows Not just for houses Windows 110 Windows Server Essentially a jacked up windows 8 box Still GUI based Still makes no sense No start menu :( (Install classic shell)... trust me... Windows Server

More information

Executing PowerShell Agent Commands

Executing PowerShell Agent Commands This chapter contains the following sections: Cisco UCS Director Orchestrator Workflow and PowerShell Command, page 1 Execute PowerShell Command Task, page 2 Execute Native PowerShell Command Task, page

More information

Course 20764: Administering a SQL Database Infrastructure

Course 20764: Administering a SQL Database Infrastructure Course 20764: Administering a SQL Database Infrastructure About this course: This five-day instructor-led course provides students who administer and maintain SQL Server databases with the knowledge and

More information

DocAve 6 SharePoint Migrator

DocAve 6 SharePoint Migrator DocAve 6 Migrator User Guide Service Pack 10, Cumulative Update 1 Issued April 2018 The Enterprise-Class Management Platform for Governance Table of Contents What s New in this Guide... 6 About... 7 Complementary

More information

SharePoint 3.0 / MOSS 2007 Configuration Guide

SharePoint 3.0 / MOSS 2007 Configuration Guide SharePoint 3.0 / MOSS 2007 Configuration Guide Summary: This is the configuration guide to set up Windows SharePoint Services 3.0 with SecureAuth. It is divided into 3 sections: Section I go over the procedure

More information

DocAve 6 Lotus Notes Migrator

DocAve 6 Lotus Notes Migrator DocAve 6 Lotus Notes Migrator User Guide Service Pack 5 Cumulative Update 1 Issued May 2015 1 Table of Contents What s New in this Guide... 5 About Lotus Notes Migrator... 6 Complementary Products... 6

More information

Colectica Workflow Deployment

Colectica Workflow Deployment COLECTICA Colectica Workflow Deployment As of 4.1.3192 COLECTICA WORKFLOW DEPLOYMENT This document provides detailed instructions for deploying the Colectica Workflow Service and Web Application. CONTENTS...

More information

INTEGRATION TO MICROSOFT EXCHANGE Installation Guide

INTEGRATION TO MICROSOFT EXCHANGE Installation Guide INTEGRATION TO MICROSOFT EXCHANGE Installation Guide V44.1 Last Updated: March 5, 2018 EMS Software emssoftware.com/help 800.440.3994 2018 EMS Software, LLC. All Rights Reserved. Table of Contents CHAPTER

More information

Contents. Table of Contents. Foreword. Part I RDPlus User Guide. 2 Prerequisites 3 Installation. Index <COPYRIGHT>

Contents. Table of Contents. Foreword. Part I RDPlus User Guide. 2 Prerequisites 3 Installation. Index <COPYRIGHT> Contents I Table of Contents Foreword Part I 0 2 1 Overview... 2 2 Prerequisites... 3 3 Installation... 5 4 Customization... and Parameter Settings 8 Administration... Tools 10 Application... Publishing

More information