Create Installa+on Packages in Visual Studio

Size: px
Start display at page:

Download "Create Installa+on Packages in Visual Studio"

Transcription

1 Create Installa+on Packages in Visual Studio Step by step Exercises Hans- Pe8er Halvorsen, M.Sc.

2 Maintenance Developers Developers & Testers Customers Development Tes+ng Produc+on Deployment & Installa+on Support A Clean PC/Server (or a network The Customers with PCs and Servers) where you environment where you install and test your SoHware. unstall the final sohware Today we typically set- up a Virtual Test Environment Typically the Developers Personal Computer with Database, Web Server and Programming SoHware Development Environment Test Environment (Servers and Clients) Produc+on Environment Programming environments such as Visual Studio, etc. should not be installed in this environment. You need to create.exe files etc. in order to make your sohware run.

3 Test/Produc+on Environment Infrastructure with Servers, Virtual Servers, Database Servers, Web Servers, etc. Local Infrastructure with Servers & Virtualiza+on Cloud- based Infrastructure (monthly payment), e.g.: Windows Azure (Visual Studio has built- in support for Deploying to Windows Azure) Amazon Web Services (AWS) Google Cloud PlaTorm etc. 3

4 Deployment Is it a Generic SoHware Product or a Tailor- made SoHware Solu+on? Different Deployment/Installa+on prepara+ons required!! Generic SoHware: Many Customers The Customers install the SoHware itself Tailor- made: Typically only one Customer The Developer Company typically installs the sohware (at least server- side components) If many Desktop Clients: A Setup is required 4

5 Setup & Deployment Desktop Apps You need to create an.exe file and a Setup Package Different Deployment/Installa+on prepara+ons required depending on what type of Apps you are Developing. Setup packages can then be distributed on CDs/DVDs or downloaded from a Web Page You are use the Setup in order to install the sohware on all the clients Time consuming, combersome, depends on local components that might not be installed, version conflicts, etc. This makes it difficult (and a lot of work and tes+ng) to create robust setup packages Mac: You can deploy to Mac App Store, Windows 8: You can deploy to Windows Store Web Apps No client installa+on needed! Installed on a Web Server (IIS, Apache) Accessed on the Clients using only a Web Browser Easy, simple to deploy new versions, bugfixes, etc. (Customer dont need to do anything) But make sure you App supports all major Web Browsers (Internet Explorer, Chrome, FireFox, Opera, Safari) Mobile Apps Deployed to "App Stores" like Apple App Store, Google Play, Windows Store (Windows 8) Server- side (Database, Web Services, etc.) Typically a setup package that installs this, or manually if it is a tailor- made solu+on 5

6 Setup Crea+on SoHware InstallShield Professional/Premium InstallShield is a professional sohware for crea+ng installers, Price WiX Toolset (Windows Installer XML) (Free) Used to create Windows Installer packages ("MSI files) The WiX toolset builds Windows installa+on packages from XML source code. Free and Open Source Used by e.g., MicrosoH to create Setup packages for Office, SQL Server, Visual Studio, etc. Apple, etc. also use it. Inno Setup Free of charge Installer for Windows programs NSIS (NullsoH Scriptable Install System) Professional open source system to create Windows installers. etc. 6

7 Setup & Deployment in Visual Studio InstallShield Limited EdiMon (InstallShield Professional is a professional sohware for crea+ng installers, Price 2000+) Tool for crea+ng setup packages "Included" (free), but needs to be enabled and downloaded Integrates with Visual Studio (Prof. ed can be used independently) WiX Toolset (Windows Installer XML) Used to create Windows Installer packages ("MSI files) Can be used in Visual Studio or independently ClickOnce Deployment. Publishing Desktop Apps to a Web Server. Users can then install them with a single click. Deployment to Windows Azure ("Windows in the Cloud"). Monthly Payment Web Apps (Web Deploy) Create a Web Deployment Package which can be imported using IIS Mobile Apps: Windows Store Apps Built- in Deployment inside Visual Studio to Windows Store 7

8 Setup & Deployment in Visual Studio Deploying Applica+ons, Services, and Components: h8p://msdn.microsoh.com/en- us/library/wtzawcsz.aspx 8

9 4 Exercises A. Create Setup Packages/Installers: Can be used to install all kind of sohware/components 1. InstallShield LE (Limited EdiMon) 2. WiX B. Deploy Web Sites on IIS: 3. Web Package Deployment C. WinForm or WPF Apps: 4. ClickOnce Deployment 9

10 1 InstallShield LE Limited Edi+on for Visual Studio Hans- Pe8er Halvorsen, M.Sc.

11 Create a WinForm App This is the App that shall be installed from a Setup 11

12 Create a WinForm App This is the App that shall be installed from a Setup This is just an example create what ever you like Build your App and make sure it works! 12

13 InstallShield Limited Edi+on for Visual Studio To enable InstallShield Limited Edi+on: 1. On the menu bar, choose File, New, Project. 2. In the New Project dialog box, expand the Other Project Types node, and then choose the Setup and Deployment node. 3. In the template list, choose Enable InstallShield Limited Edi+on, and then choose the OK bu8on. 4. In the browser window that opens, read the instruc+ons, and then choose the Go to the download web site link. See next slide for screen shot... 13

14 InstallShield Limited Edi+on for Visual Studio Installa+on 14

15 InstallShield Limited Edi+on Start Crea+ng your Setup for Visual Studio Select a proper Name 15

16 InstallShield Limited Edi+on for Visual Studio 16

17 InstallShield Limited Edi+on Step 1: Applica+on Informa+on for Visual Studio 17

18 InstallShield Limited Edi+on Step 2: Installa+on Requirements for Visual Studio 18

19 InstallShield Limited Edi+on Step 3: Applica+on Files for Visual Studio Select your.exe File 19

20 InstallShield Limited Edi+on Step 4: Applica+on Shortcuts for Visual Studio 20

21 InstallShield Limited Edi+on for Visual Studio etc., Go through all the steps in the Wizard Finally: Build the Setup Project Test you Setup (preferably on a Virtual Machine or a separate test computer (why?)) 21

22 InstallShield Limited Edi+on for Visual Studio This is your Setup Files/Setup Package Copy the Setup Package to the Computer where you want to test it and Run Setup.exe 22

23 InstallShield Limited Edi+on Your Final Setup for Visual Studio 23

24 InstallShield Limited Edi+on for Visual Studio 24

25 You are finished with the Exercise 25

26 2 WiX Toolset Windows Installer XML Hans- Pe8er Halvorsen, M.Sc.

27 Download WiX Toolset h8p://wixtoolset.org 27

28 WiX Documenta+on WiX Manual: h8p://wixtoolset.org/documenta+on/manual/v3/ WiX Tutorial: h8p://wix.tramontana.co.hu 28

29 WiX Example In this example, we will create a C# Windows Form Applica+on and then use WiX to create an installer for the applica+on. Step 1: Create the C# Windows Form ApplicaMon Click File, then select New, then select Project. Choose the Visual C# node in the Project Types tree, then select Windows Forms Applica+on. Name your applica+on e.g., "MyApplica+on (Use whatever you want) and press OK. Step 2: Create the Installer for the applicamon Click File, then click New, then click Project. Choose the Windows Installer XML node in the Project types tree, then select WiX Project Name your project "MySetup" and press OK. In the MySetup project, right- click on the References node and choose Add Reference... Navigate to the Projects tab, click on the MyApplica+on project, and click the Add bu8on, and then press OK. Find the comment that says: <!- - TODO: Insert your files, registry keys, and other resources here. - - > Delete that line and replace it with the following lines of code: <File Source="$(var.MyApplica+on.TargetPath)" /> Build the Wix project h8p://wixtoolset.org/documenta+on/manual/v3/vo+ve/authoring_first_vo+ve_project.html

30 Create a WinForm App This is the App that shall be installed from a Setup 30

31 Create a WinForm App This is the App that shall be installed from a Setup This is just an example create what ever you like 31

32 Create WiX Setup Project 32

33 Installer XML Code 33

34 <?xml version="1.0" encoding="utf- 8"?> <Wix xmlns=" <Product Id="*" Name="MySetup" Language="1033" Version=" " Manufacturer="Telemark University College" UpgradeCode="2ee9a35c- e8ba a97f- 192b80a1d6bf"> <Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" /> <MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." /> <MediaTemplate /> <Feature Id="ProductFeature" Title="MySetup" Level="1"> <ComponentGroupRef Id="ProductComponents" /> </Feature> </Product> <Fragment> </Fragment> <Directory Id="TARGETDIR" Name="SourceDir"> <Directory Id="ProgramFilesFolder"> <Directory Id="INSTALLFOLDER" Name="MySetup" /> </Directory> </Directory> <Fragment> </ComponentGroup> </Fragment> </Wix> <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER"> <Component Id="ProductComponent"> <File Source="$(var.WinFormApp.TargetPath)" /> </Component>

35 The Installer/Setup is Ready Run the Installer ( MySetup.msi ) in order to install your SoHware Note! This Setup has no GUI it just installs your sohware (more advanced setups can of course be created) 35

36 AHer Installa+on As you see it has been properly installed Double- click to open your App 36

37 Uninstalla+on You may Uninstall it if you want 37

38 That's it! Now you have a working installer that installs and uninstalls the applica+on. This was a very simple Installer with no Wizard or interac+on with the user during Installa+on. With Wix you can do all this and more. For more informa+on about WiX, se the online documenta+on. WiX Manual: h8p://wixtoolset.org/documenta+on/manual/v3/ WiX Tutorial: h8p://wix.tramontana.co.hu 38

39 Example with User Interface 39

40 Example with User Interface 40

41 You are finished with the Exercise 41

42 3 Web Package Deployment h8p:// deploy Hans- Pe8er Halvorsen, M.Sc.

43 Web Deployment Alterna+ves: - Create a Installa+on Package that you or the Customer need to install on the server (Web Deploy Package) - Deploy directly to the server using Web Deploy (You need to have online access to the server) - Deploy directly to the server using FTP (You need to have online access to the server)

44 On the Development Computer 44

45 Web Package Deployment Note! In order to start on this Exercise, you need to create an ASP.NET project or use an exis+ng ASP.NET Project. Right- click on the ASP.NET Project in the Solu+on Explorer in Visual Studio and select Publish... 45

46 If you miss the Deploy op+on, make sure to install the Web Deploy features. You may download and install it from WebPI (Web PlaTorm Installer) (Google it and download it) 46

47 Create Web Package Wizard 47

48 Create Web Package Wizard If your Web App uses a Database connec+on in Web.config, you may setup the Connec+on String on the Server here. xxx 48

49 On the Test or Produc+on Server 49

50 Prepara+on You need to install the Web Deploy sohware on the Server Download WebPI (Web PlaTorm Installer) and then select to Install Web Deploy for Hos+ng Servers 50

51 Import Package in IIS 51

52 Import Package in IIS Make sure you have copied the Installa+on Package to the Server 52

53 Web Package Deployment 53

54 Test It If your Web App uses a Database, you need to setup/configure the database. 54

55 You are finished with the Exercise 55

56 4 ClickOnce Deployment Easy Deployment of WinForm Apps and WPF Apps Hans- Pe8er Halvorsen, M.Sc.

57 ClickOnce Deployment Easy Deployment of WinForm Apps and WPF Apps

58 ClickOnce Deployment ClickOnce is a deployment technology that enables you to create self- upda+ng Windows- based applica+ons that can be installed and run with minimal user interac+on. A ClickOnce applica+on is any Windows Presenta+on Founda+on (.xbap), Windows Forms (.exe), console applica+on (.exe), or Office solu+on (.dll) published using ClickOnce technology. You can publish a ClickOnce applica+on in three different ways: from a Web page from a network file share from media such as a CD- ROM. 58

59 Right- click on your WinForm or WPF Project in the Solu+on Explorer Select where you want to store the Installer. Then you can distribute the link to the Users that need to install the applica+on 59

60 60

61 The Installa+on Pacckage was created: Copy the Installa+on Pakage to the Server Give the link to the Users that shall to Install and use the SoHware 61

62 Give the link to the Users that shall to Install and use the SoHware 62

63 You are finished with the Exercise 63

64 Hans- Pe`er Halvorsen, M.Sc. Telemark University College Faculty of Technology Department of Electrical Engineering, InformaMon Technology and CyberneMcs E- mail: Blog: h`p://home.hit.no/~hansha/ 64

Create a Virtual Test Environment

Create a Virtual Test Environment Create a Virtual Test Environment Step by Step Exercises Hans- Pe5er Halvorsen, M.Sc. Why Do We Need a Test Environment? Why cant we just use our own PC? 2 3 Why Test Environment? It works on my PC says

More information

So#ware Deployment. Hans- Pe4er Halvorsen, M.Sc. h4p://home.hit.no/~hansha/?page=so#ware_development

So#ware Deployment. Hans- Pe4er Halvorsen, M.Sc. h4p://home.hit.no/~hansha/?page=so#ware_development h4p://home.hit.no/~hansha/?page=so#ware_development So#ware Deployment B. Lund. (2013). Lunch. Available: h4p://www.lunchstriper.no, h4p://www.dagbladet.no/tegneserie/lunch/ Hans- Pe4er Halvorsen, M.Sc.

More information

Database Communica/on in Visual Studio/C# using Web Services. Hans- Pe=er Halvorsen, M.Sc.

Database Communica/on in Visual Studio/C# using Web Services. Hans- Pe=er Halvorsen, M.Sc. Database Communica/on in Visual Studio/C# using Web Services Hans- Pe=er Halvorsen, M.Sc. Background We will use Web Services because we assume that the the App should be used on Internet outside the Firewall).

More information

Database Communica/on in Visual Studio/C# using ASP.NET Web Forms. Hans- PeBer Halvorsen, M.Sc.

Database Communica/on in Visual Studio/C# using ASP.NET Web Forms. Hans- PeBer Halvorsen, M.Sc. Database Communica/on in Visual Studio/C# using ASP.NET Web Forms Hans- PeBer Halvorsen, M.Sc. Web Programming Hans- PeBer Halvorsen, M.Sc. Web is the Present and the Future 3 History of the Web Internet

More information

System Administration Training Guide. S100 Installation and Site Management

System Administration Training Guide. S100 Installation and Site Management System Administration Training Guide S100 Installation and Site Management Table of contents System Requirements for Acumatica ERP 4.2... 5 Learning Objects:... 5 Web Browser... 5 Server Software... 5

More information

Install Guide Housatonic Project Plan for Web. Housatonic Software - Project Plan 365 App

Install Guide Housatonic Project Plan for Web. Housatonic Software - Project Plan 365 App Install Guide Housatonic Project Plan for Web Housatonic Software - Project Plan 365 App 2014 Contents 1. Introduction... 3 2. Requirements... 4 2.1 Client-side / Workstation Requirements... 4 2.2 Server-side

More information

Web Services. with Examples. Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics

Web Services. with Examples. Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics Hans- Petter Halvorsen, 2014.03.01 Web Services with Examples Faculty of Technology, Postboks 203,

More information

STATISTICA VERSION 10 STATISTICA ENTERPRISE SERVER INSTALLATION INSTRUCTIONS

STATISTICA VERSION 10 STATISTICA ENTERPRISE SERVER INSTALLATION INSTRUCTIONS Notes: STATISTICA VERSION 10 STATISTICA ENTERPRISE SERVER INSTALLATION INSTRUCTIONS 1. The installation of the STATISTICA Enterprise Server entails two parts: a) a server installation, and b) workstation

More information

Installation Guide. (You can get these files from http://www.clariostechnology.com/intelligentreports/install)

Installation Guide. (You can get these files from http://www.clariostechnology.com/intelligentreports/install) Clarios Technology Pty. Ltd. Intelligent Reporter Installation Guide Installing Intelligent Reports JIRA plugin The Intelligent Reports plugin for JIRA is available through the Atlassian Marketplace. Follow

More information

So#ware Development. Overview. Hans- Pe4er Halvorsen, M.Sc. h4p://home.hit.no/~hansha/?page=so#ware_development

So#ware Development. Overview. Hans- Pe4er Halvorsen, M.Sc. h4p://home.hit.no/~hansha/?page=so#ware_development h4p://home.hit.no/~hansha/?page=so#ware_development So#ware Development Overview B. Lund. (2013). Lunch. Available: h4p://www.lunchstriper.no, h4p://www.dagbladet.no/tegneserie/lunch/ Hans- Pe4er Halvorsen,

More information

Desktop Surveillance Help

Desktop Surveillance Help Desktop Surveillance Help Table of Contents About... 9 What s New... 10 System Requirements... 11 Updating from Desktop Surveillance 2.6 to Desktop Surveillance 3.2... 13 Program Structure... 14 Getting

More information

ASP.NET. Web Programming. Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics

ASP.NET. Web Programming. Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics Hans- Petter Halvorsen, 2014.03.01 ASP.NET Web Programming Faculty of Technology, Postboks 203,

More information

STATISTICA VERSION 9 STATISTICA ENTERPRISE INSTALLATION INSTRUCTIONS FOR USE WITH TERMINAL SERVER

STATISTICA VERSION 9 STATISTICA ENTERPRISE INSTALLATION INSTRUCTIONS FOR USE WITH TERMINAL SERVER Notes: STATISTICA VERSION 9 STATISTICA ENTERPRISE INSTALLATION INSTRUCTIONS FOR USE WITH TERMINAL SERVER 1. These instructions focus on installation on Windows Terminal Server (WTS), but are applicable

More information

How To Install the Virtual Learning App

How To Install the Virtual Learning App Table of Contents Installation Instructions... 2 MAC: Using Firefox... 2 MAC: Using Chrome... 6 Disabling PepperFlash... 9 MAC: Using Safari Unsafe Mode We Can t Control So Use Firefox or Chrome... 11

More information

Deploying Migrated IBM Notes Applications to the Cloud

Deploying Migrated IBM Notes Applications to the Cloud Deploying Migrated IBM Notes Applications to the Cloud A guide on deploying Composer Notes application to Microsoft Azure Prepared by Composer Technologies Copyright Composer Technologies Table of Contents

More information

Setting up FileMaker 10 Server

Setting up FileMaker 10 Server Setting up FileMaker 10 Server Note : If your current live Database folder is located in the default database folder ( C:\Program Files\FileMaker\FileMaker Server\Data\Databases ), move\copy this folder

More information

FTP Over SSL (FTPS) Core FTP LE. Installing Core FTP LE"

FTP Over SSL (FTPS) Core FTP LE. Installing Core FTP LE FTP Over SSL (FTPS) Gordon State College has setup FTP Over SSL (also known as FTPS ) to allow students, faculty, and staff to access resources from our Servers from off-campus using an encrypted connection.

More information

To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server 2008.

To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server 2008. Znode Multifront - Installation Guide Version 6.2 1 System Requirements To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server

More information

Live Maps. for System Center Operations Manager 2007 R2 v6.2.1. Installation Guide

Live Maps. for System Center Operations Manager 2007 R2 v6.2.1. Installation Guide Live Maps for System Center Operations Manager 2007 R2 v6.2.1 Installation Guide CONTENTS Contents... 2 Introduction... 4 About This Guide... 4 Supported Products... 4 Understanding Live Maps... 4 Live

More information

How To Sync Google Drive On A Mac Computer With A Gmail Account On A Gcd (For A Student) On A Pc Or Mac Or Mac (For An Older Person) On An Ipad Or Ipad (For Older People) On

How To Sync Google Drive On A Mac Computer With A Gmail Account On A Gcd (For A Student) On A Pc Or Mac Or Mac (For An Older Person) On An Ipad Or Ipad (For Older People) On Installation and Setup of Google Drive for Students on Mac OS X Purpose: This guide will lead you through the Google Drive Installation and Configuration. Pre-requisites: 1) ODU Student Gmail account 2)

More information

TeamViewer App for Outlook Documentation

TeamViewer App for Outlook Documentation TeamViewer App for Outlook Documentation Version 1.0.0 TeamViewer GmbH Jahnstr. 30 D-73037 Göppingen www.teamviewer.com Content 1 Installation... 3 1.1 Option 1 - Installation for own use... 3 1.1.1 Use

More information

Web. Programming. Hans- Pe0er Halvorsen, M.Sc. h0p://home.hit.no/~hansha/?page=sojware_development

Web. Programming. Hans- Pe0er Halvorsen, M.Sc. h0p://home.hit.no/~hansha/?page=sojware_development h0p://home.hit.no/~hansha/?page=sojware_development Web O. Widder. (2013). geek&poke. Available: h0p://geek- and- poke.com Programming Hans- Pe0er Halvorsen, M.Sc. 1 Web is the Present and the Future 2

More information

mystanwell.com Installing Citrix Client Software Information and Business Systems

mystanwell.com Installing Citrix Client Software Information and Business Systems mystanwell.com Installing Citrix Client Software Information and Business Systems Doc No: 020/12 Revision No: Revision Date: Page: 1 of 16 Contents Overview... 3 1. Microsoft Internet Explorer... 3 2.

More information

NSi Mobile Installation Guide. Version 6.2

NSi Mobile Installation Guide. Version 6.2 NSi Mobile Installation Guide Version 6.2 Revision History Version Date 1.0 October 2, 2012 2.0 September 18, 2013 2 CONTENTS TABLE OF CONTENTS PREFACE... 5 Purpose of this Document... 5 Version Compatibility...

More information

Accessing the Online Meeting Room (Blackboard Collaborate)

Accessing the Online Meeting Room (Blackboard Collaborate) Step 1: Check your System and Install Required Software NOTE: Make sure you are on the computer you will be using to access the online meeting room AND that you are using the internet browser (ie: firefox,

More information

Installation Instruction STATISTICA. Concurrent Network License with Borrowing Domain Based Registration

Installation Instruction STATISTICA. Concurrent Network License with Borrowing Domain Based Registration Installation Instruction STATISTICA Concurrent Network License with Borrowing Domain Based Registration Notes: ❶ The installation of the Concurrent network version entails two parts: a) a server installation,

More information

TxEIS Browser Settings

TxEIS Browser Settings TxEIS Browser Settings Updated May 2016 The TxEIS Browser Settings document lists supported browsers and recommended browser settings which will allow you to utilize the TxEIS system at its fullest potential

More information

ProSystem fx Document

ProSystem fx Document ProSystem fx Document Server Upgrade from Version 3.7 to Version 3.8 1 This Document will guide you through the upgrade of Document Version 3.7 to Version 3.8. Do not attempt to upgrade from any other

More information

Foxit Reader Deployment and Configuration

Foxit Reader Deployment and Configuration Copyright 2004-2016 Foxit Software Incorporated. All Rights Reserved. No part of this document can be reproduced, transferred, distributed or stored in any format without the prior written permission of

More information

USING SSL/TLS WITH TERMINAL EMULATION

USING SSL/TLS WITH TERMINAL EMULATION USING SSL/TLS WITH TERMINAL EMULATION This document describes how to install and configure SSL or TLS support and verification certificates for the Wavelink Terminal Emulation (TE) Client. SSL/TLS support

More information

Installation Instruction STATISTICA Enterprise Server

Installation Instruction STATISTICA Enterprise Server Installation Instruction STATISTICA Enterprise Server Notes: ❶ The installation of STATISTICA Enterprise Server entails two parts: a) a server installation, and b) workstation installations on each of

More information

Ekran System Help File

Ekran System Help File Ekran System Help File Table of Contents About... 9 What s New... 10 System Requirements... 11 Updating Ekran to version 4.1... 13 Program Structure... 14 Getting Started... 15 Deployment Process... 15

More information

Foxit Reader Deployment and Configuration

Foxit Reader Deployment and Configuration Copyright 2004-2015 Foxit Software Incorporated. All Rights Reserved. No part of this document can be reproduced, transferred, distributed or stored in any format without the prior written permission of

More information

Install MS SQL Server 2012 Express Edition

Install MS SQL Server 2012 Express Edition Install MS SQL Server 2012 Express Edition Sohodox now works with SQL Server Express Edition. Earlier versions of Sohodox created and used a MS Access based database for storing indexing data and other

More information

Composite C1 Load Balancing - Setup Guide

Composite C1 Load Balancing - Setup Guide Composite C1 Load Balancing - Setup Guide Composite 2014-08-20 Composite A/S Nygårdsvej 16 DK-2100 Copenhagen Phone +45 3915 7600 www.composite.net Contents 1 INTRODUCTION... 3 1.1 Who should read this

More information

CTERA Agent for Mac OS-X

CTERA Agent for Mac OS-X User Guide CTERA Agent for Mac OS-X September 2013 Version 4.0 Copyright 2009-2013 CTERA Networks Ltd. All rights reserved. No part of this document may be reproduced in any form or by any means without

More information

Qlik Sense Desktop. Qlik Sense 2.0.6 Copyright 1993-2015 QlikTech International AB. All rights reserved.

Qlik Sense Desktop. Qlik Sense 2.0.6 Copyright 1993-2015 QlikTech International AB. All rights reserved. Qlik Sense Desktop Qlik Sense 2.0.6 Copyright 1993-2015 QlikTech International AB. All rights reserved. Copyright 1993-2015 QlikTech International AB. All rights reserved. Qlik, QlikTech, Qlik Sense, QlikView,

More information

WS_FTP Professional 12 and WS_FTP Home 12. Getting Started Guide

WS_FTP Professional 12 and WS_FTP Home 12. Getting Started Guide WS_FTP Professional 12 and WS_FTP Home 12 Getting Started Guide Welcome Ipswitch WS_FTP Professional 12 and Home 12 is the leading file transfer client with millions of users worldwide. You can easily

More information

SharePoint List Filter Favorites Installation Instruction

SharePoint List Filter Favorites Installation Instruction SharePoint List Filter Favorites Installation Instruction System Requirements Microsoft Windows SharePoint Services v3 or Microsoft Office SharePoint Server 2007. License Management Click link in Organize

More information

Moving the Web Security Log Database

Moving the Web Security Log Database Moving the Web Security Log Database Topic 50530 Web Security Solutions Version 7.7.x, 7.8.x Updated 22-Oct-2013 Version 7.8 introduces support for the Web Security Log Database on Microsoft SQL Server

More information

Tutorial: setting up a web application

Tutorial: setting up a web application Elective in Software and Services (Complementi di software e servizi per la società dell'informazione) Section Information Visualization Number of credits : 3 Tutor: Marco Angelini e- mail: angelini@dis.uniroma1.it

More information

Installing Sage Accpac ERP CGA 5.6A

Installing Sage Accpac ERP CGA 5.6A APPENDIX A Updated December 2, 2011 Installing Sage Accpac ERP CGA 5.6A This appendix describes how to install and remove Sage Accpac ERP CGA 5.6A. Before installation, make sure your computer meets the

More information

CTERA Agent for Windows

CTERA Agent for Windows User Guide CTERA Agent for Windows September 2013 Version 4.0 Copyright 2009-2013 CTERA Networks Ltd. All rights reserved. No part of this document may be reproduced in any form or by any means without

More information

Reading Kindle titles on your PC or Mac

Reading Kindle titles on your PC or Mac Reading Kindle titles on your PC or Mac If you do not own a Kindle device (or an ipad, Android, or iphone with the Kindle app installed), you have two options for reading a Kindle title: A) Kindle Cloud

More information

Bitrix Site Manager ASP.NET. Installation Guide

Bitrix Site Manager ASP.NET. Installation Guide Bitrix Site Manager ASP.NET Installation Guide Contents Introduction... 4 Chapter 1. Checking for IIS Installation... 5 Chapter 2. Using An Archive File to Install Bitrix Site Manager ASP.NET... 7 Preliminary

More information

TECHNICAL DOCUMENTATION SPECOPS DEPLOY / APP 4.7 DOCUMENTATION

TECHNICAL DOCUMENTATION SPECOPS DEPLOY / APP 4.7 DOCUMENTATION TECHNICAL DOCUMENTATION SPECOPS DEPLOY / APP 4.7 DOCUMENTATION Contents 1. Getting Started... 4 1.1 Specops Deploy Supported Configurations... 4 2. Specops Deploy and Active Directory...5 3. Specops Deploy

More information

Download Google Drive to windows 7

Download Google Drive to windows 7 Download Google Drive to windows 7 Google Drive allows you to store and synchronize your files on the web, hard drive and mobile device. Prior to installing Google Drive, it is recommended that you organize

More information

Lab Inventory System. Label Writer Access Card with Barcode Barcode Reader. Hans- Pe(er Halvorsen, M.Sc.

Lab Inventory System. Label Writer Access Card with Barcode Barcode Reader. Hans- Pe(er Halvorsen, M.Sc. Lab Inventory System Label Writer Access Card with Barcode Barcode Reader Hans- Pe(er Halvorsen, M.Sc. Lab Inventory System (LIS) 1. Register Equipment Data - Then Print out a Barcode Label and sfck it

More information

To Ac&vate Keyboard Apple Systems Preferences. Interna&onal Input Menu install them from an OS X CD Localized Files Switch Keyboards

To Ac&vate Keyboard Apple Systems Preferences. Interna&onal Input Menu install them from an OS X CD Localized Files Switch Keyboards Accents on a Mac Op-on 1: Type the correct sequence for the le8ers you need: acute á, é, í, ó, ú: Op-on + e, then le8er grave è, à, ì, ò, ù: Op-on + `, then le8er circumflex â, ê, î, ô, û: Op-on + i, then

More information

dotmailer for Salesforce Installation Guide Winter 2015 Version 2.30.1

dotmailer for Salesforce Installation Guide Winter 2015 Version 2.30.1 for Salesforce Installation Guide Winter 2015 Version 2.30.1 Page 1 CONTENTS 1 Introduction 2 Browser support 2 Self-Installation Steps 2 Checks 3 Package Download and Installation 4 Users for Email Automation

More information

Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms

Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms InfoPath 2013 Web Enabled (Browser) forms Creating Web Enabled

More information

Configuration Guide. BES12 Cloud

Configuration Guide. BES12 Cloud Configuration Guide BES12 Cloud Published: 2016-04-08 SWD-20160408113328879 Contents About this guide... 6 Getting started... 7 Configuring BES12 for the first time...7 Administrator permissions you need

More information

TIMETABLE ADMINISTRATOR S MANUAL

TIMETABLE ADMINISTRATOR S MANUAL 2015 TIMETABLE ADMINISTRATOR S MANUAL Software Version 5.0 BY GEOFFPARTRIDGE.NET TABLE OF CONTENTS TOPIC PAGE 1) INTRODUCTION 1 2) TIMETABLE SPECIFICATIONS 1 3) SOFTWARE REQUIRED 1 a. Intranet Server (XAMPP

More information

FileZilla: Uploading/Downloading Files to SBI FTP

FileZilla: Uploading/Downloading Files to SBI FTP FileZilla Download and Installation Instructions FileZilla is a free software that uses SourceForge as an installation provider. SourceForge is bundling the FileZilla software with other products that

More information

Installing NetSupport School for use with the NetSupport School Student extension for Google Chrome

Installing NetSupport School for use with the NetSupport School Student extension for Google Chrome Installing NetSupport School for use with the NetSupport School Student extension for Google Chrome NetSupport School delivers the tools you need to help maximise the effectiveness of computer led teaching

More information

MATLAB on EC2 Instructions Guide

MATLAB on EC2 Instructions Guide MATLAB on EC2 Instructions Guide Contents Welcome to MATLAB on EC2...3 What You Need to Do...3 Requirements...3 1. MathWorks Account...4 1.1. Create a MathWorks Account...4 1.2. Associate License...4 2.

More information

Outlook Web App User Guide

Outlook Web App User Guide Outlook Web App Table of Contents QUICK REFERENCE... 2 OUTLOOK WEB APP URL... 2 Imagine! Help Desk...... 2 OUTLOOK WEB APP MAIN WINDOW... 2 KEY NEW FEATURES... 3 GETTING STARTED WITH OUTLOOK... 4 LOGGING

More information

Moving the TRITON Reporting Databases

Moving the TRITON Reporting Databases Moving the TRITON Reporting Databases Topic 50530 Web, Data, and Email Security Versions 7.7.x, 7.8.x Updated 06-Nov-2013 If you need to move your Microsoft SQL Server database to a new location (directory,

More information

PC Monitor Enterprise Server. Setup Guide

PC Monitor Enterprise Server. Setup Guide PC Monitor Enterprise Server Setup Guide Prerequisites Server Requirements - Microsoft Windows Server 2008 R2 or 2012-2GB RAM - IIS 7.5 or IIS 8.0 (with ASP.NET 4.0 installed) - Microsoft SQL Server 2008

More information

STATISTICA VERSION 11 CONCURRENT NETWORK LICENSE WITH BORROWING INSTALLATION INSTRUCTIONS

STATISTICA VERSION 11 CONCURRENT NETWORK LICENSE WITH BORROWING INSTALLATION INSTRUCTIONS data analysis data mining quality improvement web-based analytics Notes STATISTICA VERSION 11 CONCURRENT NETWORK LICENSE WITH BORROWING INSTALLATION INSTRUCTIONS 1. The installation of the Concurrent network

More information

SQL Server Database Administration and Design By Dave Peru, October 2011

SQL Server Database Administration and Design By Dave Peru, October 2011 SQL Server Database Administration and Design By Dave Peru, October 2011 Introduction Name Handout Sheet Developer s Perspective - Story Outline Create a Database Create a New Data Model Data Model Diagrams

More information

Installation and Deployment

Installation and Deployment Installation and Deployment Help Documentation This document was auto-created from web content and is subject to change at any time. Copyright (c) 2016 SmarterTools Inc. Installation and Deployment SmarterStats

More information

DEPLOYING A VISUAL BASIC.NET APPLICATION

DEPLOYING A VISUAL BASIC.NET APPLICATION C6109_AppendixD_CTP.qxd 18/7/06 02:34 PM Page 1 A P P E N D I X D D DEPLOYING A VISUAL BASIC.NET APPLICATION After completing this appendix, you will be able to: Understand how Visual Studio performs deployment

More information

2. PMP New Computer Installation. & Networking Instructions

2. PMP New Computer Installation. & Networking Instructions ONTARIO CHIROPRACTIC ASSOCIATION PATIENT MANAGEMENT PROGRAM PUTTING EXPERIENCE INTO PRACTICE PMP New Computer Installation & Networking Instructions This document provides installation instructions for

More information

Insight Video Net. LLC. CMS 2.0. Quick Installation Guide

Insight Video Net. LLC. CMS 2.0. Quick Installation Guide Insight Video Net. LLC. CMS 2.0 Quick Installation Guide Table of Contents 1. CMS 2.0 Installation 1.1. Software Required 1.2. Create Default Directories 1.3. Create Upload User Account 1.4. Installing

More information

Generating an Apple Enterprise MDM Certificate

Generating an Apple Enterprise MDM Certificate Good Mobile Control Server Generating an Apple Enterprise MDM Certificate Updated 09/30/11 Overview... 1 Generating Your Apple Certificate Using a Mac... 1 Generating Your Apple Certificate Using Windows...

More information

Quick Start Guide Mobile Entrée 4

Quick Start Guide Mobile Entrée 4 Table of Contents Table of Contents... 1 Installation... 2 Obtaining the Installer... 2 Installation Using the Installer... 2 Site Configuration... 2 Feature Activation... 2 Definition of a Mobile Application

More information

On-premise and Online connection with Provider Hosted APP (Part 1)

On-premise and Online connection with Provider Hosted APP (Part 1) On-premise and Online connection with Provider Hosted APP (Part 1) WinWire Technologies Inc. 2350 Mission College Boulevard, Suite 925, Santa Clara, California, 95054 pg. 1 Copyright 2015 WinWire Technologies

More information

Tips for getting started! with! Virtual Data Center!

Tips for getting started! with! Virtual Data Center! Tips for getting started with Virtual Data Center Last Updated: 1 July 2014 Table of Contents Safe Swiss Cloud Self Service Control Panel 2 Please note the following about for demo accounts: 2 Add an Instance

More information

IMDG Code for Intranet

IMDG Code for Intranet Version 12 Installation Instructions System Requirements These files should be loaded on a server running ASP.NET 2.0, and with at least 50 Mb of free disk space. For clients to access the application

More information

BUILDER 3.0 Installation Guide with Microsoft SQL Server 2005 Express Edition January 2008

BUILDER 3.0 Installation Guide with Microsoft SQL Server 2005 Express Edition January 2008 BUILDER 3.0 Installation Guide with Microsoft SQL Server 2005 Express Edition January 2008 BUILDER 3.0 1 Table of Contents Chapter 1: Installation Overview... 3 Introduction... 3 Minimum Requirements...

More information

Rogue Wave HostAccess 7.40J Installation Guide... 1

Rogue Wave HostAccess 7.40J Installation Guide... 1 Rogue Wave HostAccess 7.40J Installation Guide... 1 Rogue Wave HostAccess 7.40J Installation Guide... 1 HostAccess Installations... 2 Standard Installation - Desktop and Windows Terminal Server/Citrix

More information

Contents. Netop MyVision Basic

Contents. Netop MyVision Basic QUICK GUIDE Copyright 1981-2012 Netop Business Solutions A/S. All Rights Reserved. Portions used under license from third parties. Netop is a registered trademark of Netop Business Solutions A/S. All other

More information

LifeSize Control Installation Guide

LifeSize Control Installation Guide LifeSize Control Installation Guide April 2005 Part Number 132-00001-001, Version 1.0 Copyright Notice Copyright 2005 LifeSize Communications. All rights reserved. LifeSize Communications has made every

More information

Backup / migration of a Coffalyser.Net database

Backup / migration of a Coffalyser.Net database Backup / migration of a Coffalyser.Net database There are two main procedures for backup or migration of your Coffalyser.Net database. One of these procedures makes use of the SQL management studio software

More information

File Share Navigator Online 1

File Share Navigator Online 1 File Share Navigator Online 1 User Guide Service Pack 3 Issued November 2015 Table of Contents What s New in this Guide... 4 About File Share Navigator Online... 5 Components of File Share Navigator Online...

More information

CUNY TUMBLEWEED (SECURE TRANSPORT) USER GUIDE

CUNY TUMBLEWEED (SECURE TRANSPORT) USER GUIDE CUNY TUMBLEWEED (SECURE TRANSPORT) USER GUIDE INTRODUCTION Tumbleweed (Secure Transport) is used to provide secure file transfer of critical business files, financial transactions and sensitive data such

More information

Installing a Browser Security Certificate for PowerChute Business Edition Agent

Installing a Browser Security Certificate for PowerChute Business Edition Agent Installing a Browser Security Certificate for PowerChute Business Edition Agent The Agent component of PowerChute Business Edition has a "self-signed" security certificate. This means that when you access

More information

Welcome to the QuickStart Guide

Welcome to the QuickStart Guide QuickStart Guide Welcome to the QuickStart Guide This QuickStart Guide provides the information you need to install and start using Express Software Manager. For more comprehensive help on using Express

More information

How to use Mints@Home

How to use Mints@Home How to use Mints@Home Citrix Remote Access gives Mints users the ability to access University Of Cambridge and MINTS resources from any computer, anywhere in the world,. The service requires a high-speed

More information

USER GUIDE Deploying Your Application to WinHost

USER GUIDE Deploying Your Application to WinHost 2011 USER GUIDE Deploying Your Application to WinHost Table of Contents Deploying Your Application to WinHost... 2 Configuring the Settings in WinHost... 2 Deploying a Web Site Factory Application with

More information

Budget Developer Install Manual 2.5

Budget Developer Install Manual 2.5 Budget Developer Install Manual 2.5 ARGUS Budget Developer Install Version 2.5 2/13/2013 ARGUS Software An Altus Group Company Application Server Installation for ARGUS Enterprise Version 9.1 2/13/2013

More information

The full setup includes the server itself, the server control panel, Firebird Database Server, and three sample applications with source code.

The full setup includes the server itself, the server control panel, Firebird Database Server, and three sample applications with source code. Content Introduction... 2 Data Access Server Control Panel... 2 Running the Sample Client Applications... 4 Sample Applications Code... 7 Server Side Objects... 8 Sample Usage of Server Side Objects...

More information

Last edited on 7/30/07. Copyright Syncfusion., Inc 2001 2007.

Last edited on 7/30/07. Copyright Syncfusion., Inc 2001 2007. Enabling ClickOnce deployment for applications that use the Syncfusion libraries... 2 Requirements... 2 Introduction... 2 Configuration... 2 Verify Dependencies... 4 Publish... 6 Test deployment... 8 Trust

More information

Creating a 32bit installer for 4H Plus using AppDeploy

Creating a 32bit installer for 4H Plus using AppDeploy Page 1 Creating a 32bit installer for 4H Plus using AppDeploy CKV Software s 4H Plus package uses a 16bit InstallShield SETUP.exe for setup. 64bit versions of Windows XP, Vista, and 7 will not run any16bit

More information

Autograph 3.3 Network Installation

Autograph 3.3 Network Installation Eastmond Publishing Ltd (Autograph) PO Box 46, Oundle, Peterborough, PE8 4JX, UK Tel: +44 (0)1832 273444 Fax: +44 (0)1832 273529 Email: support@autograph-maths.com Web: www.autograph-maths.com Technical

More information

Lync Online Deployment Guide. Version 1.0

Lync Online Deployment Guide. Version 1.0 Date 28/07/2014 Table of Contents 1. Provisioning Lync Online... 1 1.1 Operating System Requirements... 1 1.2 Browser Requirements Administrative Centre... 1 2. Obtaining your login Credentials & Logging

More information

Installation Guide. Live Maps 7.4 for System Center 2012

Installation Guide. Live Maps 7.4 for System Center 2012 Installation Guide Live Maps 7.4 for System Center 2012 1 Introduction... 4 1.1 1.2 About This Guide... 4 Supported Products... 4 1.3 1.4 Related Documents... 4 Understanding Live Maps... 4 1.5 Upgrade

More information

Lab 5 Using Remote Worklight Server

Lab 5 Using Remote Worklight Server Lab 5 Using Remote Worklight Server Table of Contents 5. Using Remote Worklight Server... 5-3 5.1. Lab Setup...5-4 5.1.1. Delete the mobile app in the Worklight Console... 5-4 5.2. Using the Remote Worklight

More information

SBBWU PROXY SETTING IT CENTRE How to Set a Proxy Server in All Major Internet Browsers for Windows

SBBWU PROXY SETTING IT CENTRE How to Set a Proxy Server in All Major Internet Browsers for Windows SBBWU PROXY SETTING IT CENTRE How to Set a Proxy Server in All Major Internet Browsers for Windows If you take your laptop to lots of places, including corporate networks that use proxy servers, you need

More information

Juris Installation / Upgrade Guide

Juris Installation / Upgrade Guide Juris Installation / Upgrade Guide Version 2.7 2015 LexisNexis. All rights reserved. Copyright and Trademark LexisNexis, Lexis, and the Knowledge Burst logo are registered trademarks of Reed Elsevier Properties

More information

Anti-Executable Dashboard. Last modified: August 2012

Anti-Executable Dashboard. Last modified: August 2012 1 Last modified: August 2012 2 1999-2012 Faronics Corporation. All rights reserved. Faronics, Deep Freeze, Faronics Core, Anti-Executable, Faronics Device Filter, Faronics Power Save, Faronics Insight,

More information

Initial Setup of Mozilla Thunderbird with IMAP for OS X Lion

Initial Setup of Mozilla Thunderbird with IMAP for OS X Lion Initial Setup of Mozilla Thunderbird Concept This document describes the procedures for setting up the Mozilla Thunderbird email client to download messages from Google Mail using Internet Message Access

More information

SQL Server Setup for Assistant/Pro applications Compliance Information Systems

SQL Server Setup for Assistant/Pro applications Compliance Information Systems SQL Server Setup for Assistant/Pro applications Compliance Information Systems The following document covers the process of setting up the SQL Server databases for the Assistant/PRO software products form

More information

Issue Tracking Anywhere Installation Guide

Issue Tracking Anywhere Installation Guide TM Issue Tracking Anywhere Installation Guide The leading developer of version control and issue tracking software Table of Contents Introduction...3 Installation Guide...3 Installation Prerequisites...3

More information

Open-Source Based Solutions for Processing, Preserving, and Presenting Oral Histories

Open-Source Based Solutions for Processing, Preserving, and Presenting Oral Histories Western Washington University Western CEDAR Western Libraries Western Libraries April 2011 Open-Source Based Solutions for Processing, Preserving, and Presenting Oral Histories Mark I. Greenberg University

More information

SMS for Outlook. Installation, Configuration and Usage Guide

SMS for Outlook. Installation, Configuration and Usage Guide SMS for Outlook Installation, Configuration and Usage Guide INTRODUCTION Installing TxTStream s SMS for Outlook is easy and will only take a minute or two. We will be using screen shots from a Windows

More information

Sophos UTM. Remote Access via PPTP Configuring Remote Client

Sophos UTM. Remote Access via PPTP Configuring Remote Client Sophos UTM Remote Access via PPTP Configuring Remote Client Product version: 9.300 Document date: Tuesday, October 14, 2014 The specifications and information in this document are subject to change without

More information

AvePoint Meetings 3.2.2 for SharePoint On-Premises. Installation and Configuration Guide

AvePoint Meetings 3.2.2 for SharePoint On-Premises. Installation and Configuration Guide AvePoint Meetings 3.2.2 for SharePoint On-Premises Installation and Configuration Guide Issued August 2015 Table of Contents About AvePoint Meetings for SharePoint... 4 System Requirements... 5 2 System

More information

Initial Setup of Mozilla Thunderbird with IMAP for Windows 7

Initial Setup of Mozilla Thunderbird with IMAP for Windows 7 Initial Setup of Mozilla Thunderbird Concept This document describes the procedures for setting up the Mozilla Thunderbird email client to download messages from Google Mail using Internet Message Access

More information