Create Installation Packages in Visual Studio

Size: px
Start display at page:

Download "Create Installation Packages in Visual Studio"

Transcription

1 Create Installation Packages in Visual Studio Step by step Exercises Hans-Petter Halvorsen, M.Sc.

2 Maintenance Developers Developers & Testers Customers Development Testing Production Deployment & Installation Support Typically the Developers Personal A Clean PC/Server (or a network The Customers Computer with Database, Web with PCs and Servers) where you environment where you Server and Programming install and test your Software. unstall the final software Software Today we typically set-up a Virtual Test Environment Development Environment Test Environment (Servers and Clients) Production 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 software run.

3 Test/Production Environment Infrastructure with Servers, Virtual Servers, Database Servers, Web Servers, etc. Local Infrastructure with Servers & Virtualization 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 Platform etc. 3

4 Deployment Is it a Generic Software Product or a Tailor-made Software Solution? Different Deployment/Installation preparations required!! Generic Software: Many Customers The Customers install the Software itself Tailor-made: Typically only one Customer The Developer Company typically installs the software (at least server-side components) If many Desktop Clients: A Setup is required 4

5 Desktop Apps Web Apps Setup & Deployment You need to create an.exe file and a Setup Package Setup packages can then be distributed on CDs/DVDs or downloaded from a Web Page, etc. You use the Setup in order to install the software on all the clients Time consuming, cumbersome, depends on local components that might not be installed, version conflicts, etc. This makes it difficult (and a lot of work and testing) to create robust setup packages Mac: You can deploy to Mac App Store, Windows 10: You can deploy to Windows Store No client installation 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 solution Different Deployment/Installation preparations required depending on what type of Apps you are Developing. 5

6 Setup Creation Software InstallShield Professional/Premium InstallShield is a professional software for creating installers, Price WiX Toolset (Windows Installer XML) (Free) Used to create Windows Installer packages ("MSI files) The WiX toolset builds Windows installation packages from XML source code. Free and Open Source Used by e.g., Microsoft 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 (Nullsoft Scriptable Install System) Professional open source system to create Windows installers. etc. 6

7 Setup & Deployment in Visual Studio InstallShield Limited Edition (InstallShield Professional is a professional software for creating installers, Price 2000+) Tool for creating 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 Applications, Services, and Components: 8

9 4 Exercises A. Create Setup Packages/Installers: Can be used to install all kind of software/components 1. InstallShield LE (Limited Edition) 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 Edition for Visual Studio Hans-Petter 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 Edition for Visual Studio To enable InstallShield Limited Edition: 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 Edition, and then choose the OK button. 4. In the browser window that opens, read the instructions, and then choose the Go to the download web site link. See next slide for screen shot... 13

14 InstallShield Limited Edition for Visual Studio Installation 14

15 InstallShield Limited Edition Start Creating your Setup for Visual Studio Select a proper Name 15

16 InstallShield Limited Edition for Visual Studio 16

17 InstallShield Limited Edition Step 1: Application Information for Visual Studio 17

18 InstallShield Limited Edition Step 2: Installation Requirements for Visual Studio 18

19 InstallShield Limited Edition Step 3: Application Files for Visual Studio Select your.exe File 19

20 InstallShield Limited Edition Step 4: Application Shortcuts for Visual Studio 20

21 InstallShield Limited Edition 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 Edition 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 Edition Your Final Setup for Visual Studio 23

24 InstallShield Limited Edition for Visual Studio 24

25 You are finished with the Exercise 25

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

27 Download WiX Toolset 27

28 WiX Documentation WiX Manual: / WiX Tutorial: 28

29 WiX Example In this example, we will create a C# Windows Form Application and then use WiX to create an installer for the application. Step 1: Create the C# Windows Form Application Click File, then select New, then select Project. Choose the Visual C# node in the Project Types tree, then select Windows Forms Application. Name your application e.g., "MyApplication (Use whatever you want) and press OK. Step 2: Create the Installer for the application 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 MyApplication project, and click the Add button, 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.MyApplication.TargetPath)" /> Build the Wix project

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-4197-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 Id="ProductComponents" Directory="INSTALLFOLDER"> <Component Id="ProductComponent"> <File Source="$(var.WinFormApp.TargetPath)" /> </Component> </ComponentGroup> </Fragment> </Wix>

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

36 After Installation As you see it has been properly installed Double-click to open your App 36

37 Uninstallation You may Uninstall it if you want 37

38 That's it! Now you have a working installer that installs and uninstalls the application. This was a very simple Installer with no Wizard or interaction with the user during Installation. With Wix you can do all this and more. For more information about WiX, se the online documentation. WiX Manual: WiX Tutorial: 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 Hans-Petter Halvorsen, M.Sc.

43 Web Deployment Alternatives: - Create a Installation 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 existing ASP.NET Project. Right-click on the ASP.NET Project in the Solution Explorer in Visual Studio and select Publish... 45

46 If you miss the Deploy option, make sure to install the Web Deploy features. You may download and install it from WebPI (Web Platform 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 connection in Web.config, you may setup the Connection String on the Server here. xxx 48

49 On the Test or Production Server 49

50 Preparation You need to install the Web Deploy software on the Server Download WebPI (Web Platform Installer) and then select to Install Web Deploy for Hosting Servers 50

51 Import Package in IIS 51

52 Import Package in IIS Make sure you have copied the Installation 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-Petter 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-updating Windows-based applications that can be installed and run with minimal user interaction. A ClickOnce application is any Windows Presentation Foundation (.xbap), Windows Forms (.exe), console application (.exe), or Office solution (.dll) published using ClickOnce technology. You can publish a ClickOnce application 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 Solution Explorer Select where you want to store the Installer. Then you can distribute the link to the Users that need to install the application 59

60 60

61 The Installation Pacckage was created: Copy the Installation Pakage to the Server Give the link to the Users that shall to Install and use the Software 61

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

63 You are finished with the Exercise 63

64 Hans-Petter Halvorsen, M.Sc. University College of Southeast Norway Blog:

Create a Virtual Test Environment

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

More information

Software Platforms. Quiz with Explainations. Hans-Petter Halvorsen, M.Sc.

Software Platforms. Quiz with Explainations. Hans-Petter Halvorsen, M.Sc. Software Platforms Quiz with Explainations Hans-Petter Halvorsen, M.Sc. Questions 1. List 3 different software platforms with some examples for each 2. List 5 different Web Browsers and the name of the

More information

University College of Southeast Norway. Web Services. with Examples. Hans-Petter Halvorsen,

University College of Southeast Norway. Web Services. with Examples. Hans-Petter Halvorsen, University College of Southeast Norway Web Services Hans-Petter Halvorsen, 2016.11.01 with Examples http://home.hit.no/~hansha Table of Contents 1. Introduction... 4 1.1. The Problem... 4 1.2. The Solution...

More information

Visual Studio Team Services

Visual Studio Team Services Visual Studio Team Services Getting Started Hans-Petter Halvorsen, M.Sc. Visual Studio Team Services Visual Studio Team Services is a platform taking care of all aspects of the process of developing software

More information

University College of Southeast Norway ASP.NET. Web Programming. Hans-Petter Halvorsen,

University College of Southeast Norway ASP.NET. Web Programming. Hans-Petter Halvorsen, University College of Southeast Norway Hans-Petter Halvorsen, 2016.11.01 ASP.NET Web Programming http://home.hit.no/~hansha Table of Contents 1 Introduction... 4 1.1 Visual Studio... 4 1.2 C#... 5 1.3.NET

More information

Introduction to ERwin

Introduction to ERwin Introduction to ERwin Database Design & Modelling Hans-Petter Halvorsen, M.Sc. Software The following Editions can be downloaded for Free on Internet: CA ERwin Data Modeler Community Edition SQL Server

More information

Software Testing. Hans-Petter Halvorsen, M.Sc.

Software Testing. Hans-Petter Halvorsen, M.Sc. Software Testing Hans-Petter Halvorsen, M.Sc. STD System Documentation Testing Software Test Documentation Software Test Plan (STP) Test Documentation End-User Documentation Implementation Code System

More information

Week Assignment Source Code Control (SCC) & Bug Tracking Systems Hans-Petter Halvorsen

Week Assignment Source Code Control (SCC) & Bug Tracking Systems Hans-Petter Halvorsen https://www.halvorsen.blog Week Assignment Source Code Control (SCC) & Bug Tracking Systems Hans-Petter Halvorsen 1. SCC Systems Overview Everybody should collaborate creating a document giving an overview

More information

Using SQL Server in C#

Using SQL Server in C# University College of Southeast Norway Using SQL Server in C# Hans-Petter Halvorsen, 2016.11.01 with Examples http://home.hit.no/~hansha Table of Contents 1. Introduction...

More information

Week Assignment. Source Code Control (SCC) & Bug Tracking Systems. Hans-Petter Halvorsen

Week Assignment. Source Code Control (SCC) & Bug Tracking Systems. Hans-Petter Halvorsen 2017.03.06 Week Assignment Source Code Control (SCC) & Bug Tracking Systems B. Lund. Lunch. Available: http://www.lunchstriper.no, http://www.dagbladet.no/tegneserie/lunch/ Hans-Petter Halvorsen Note!

More information

https://www.halvorsen.blog Web Services Hans-Petter Halvorsen

https://www.halvorsen.blog Web Services Hans-Petter Halvorsen https://www.halvorsen.blog Web Services Hans-Petter Halvorsen Problem How to Share Data between Devices in a Network? Server(s) Firewalls Security Clients Local Network/Internet Database Routers/Switches,

More information

Team Foundation Server Visual Studio Team Services. Hans-Petter Halvorsen, M.Sc.

Team Foundation Server Visual Studio Team Services. Hans-Petter Halvorsen, M.Sc. Team Foundation Server Visual Studio Team Services Hans-Petter Halvorsen, M.Sc. Team Foundation Server (TFS) is an Application Lifecycle Management (ALM) system The Software Development Lifecycle (SDLC)

More information

Software Architecture

Software Architecture O. Widder. (2013). geek&poke. Available: http://geek-and-poke.com Software Architecture Hans-Petter Halvorsen Clients Windows Server 2008/2012 Windows 7/8 Wi-Fi Server LAN Ethernet OPC Server Router Web

More information

Deploying Haystack Applications

Deploying Haystack Applications Chapter 12 Deploying Haystack Applications In order to distribute an application that you build with the Haystack Code Generator for.net you need to create a Runtime License. This runtime license is distributed

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

Step 7 How to convert a YouTube Video to Music As I mentioned in the YouTube Introduction, you can convert a Video to a MP3 file using Free Video To

Step 7 How to convert a YouTube Video to Music As I mentioned in the YouTube Introduction, you can convert a Video to a MP3 file using Free Video To Step 7 How to convert a YouTube Video to Music As I mentioned in the YouTube Introduction, you can convert a Video to a MP3 file using Free Video To MP3 Converter program. Next I will show you how to download

More information

EMS DESKTOP CLIENT Installation Guide

EMS DESKTOP CLIENT Installation Guide EMS DESKTOP CLIENT Installation Guide Version 44.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 1: Introduction

More information

Week Assignment. Software Testing Test Planning. Hans-Petter Halvorsen

Week Assignment. Software Testing Test Planning. Hans-Petter Halvorsen 2017.04.07 Week Assignment Software Testing Test Planning B. Lund. Lunch. Available: http://www.lunchstriper.no, http://www.dagbladet.no/tegneserie/lunch/ Hans-Petter Halvorsen Note! All Documents, Code,

More information

Unit Testing. Quiz with Explainations. Hans-Petter Halvorsen, M.Sc.

Unit Testing. Quiz with Explainations. Hans-Petter Halvorsen, M.Sc. Unit Testing Quiz with Explainations Hans-Petter Halvorsen, M.Sc. Questions 1. What is Unit Testing? 2. List some Unit Test Framework 3. Who is creating the Unit Tests? 4. What kind of Requirements does

More information

Web Programming HTML CSS JavaScript Step by step Exercises Hans-Petter Halvorsen

Web Programming HTML CSS JavaScript Step by step Exercises Hans-Petter Halvorsen https://www.halvorsen.blog Web Programming HTML CSS JavaScript Step by step Exercises Hans-Petter Halvorsen History of the Web Internet (1960s) World Wide Web - WWW (1991) First Web Browser - Netscape,

More information

Database Communication in Visual Studio/C# using Web Services

Database Communication in Visual Studio/C# using Web Services https://www.halvorsen.blog Database Communication in Visual Studio/C# using Web Services Hans-Petter Halvorsen Background With Web Services you can easily get your data through Internet We will use Web

More information

Using SQL Reporting Services with isupport

Using SQL Reporting Services with isupport isupport s SQL Reporting functionality is installed via the isupport SQL Reporting Setup Wizard; it includes several report models with isupport database fields, tables, and relationships. isupport includes

More information

Software Architecture

Software Architecture Software Architecture Quiz with Explainations Hans-Petter Halvorsen, M.Sc. Questions 1. Explain 3-layer Architecture 2. What is a Web Service? 3. What is SOA? 4. What is an API? 5. What is Client-Server

More information

SPAR. Installation Guide. Workflow for SharePoint. ITLAQ Technologies

SPAR. Installation Guide. Workflow for SharePoint. ITLAQ Technologies SPAR Workflow for SharePoint 0 ITLAQ Technologies www.itlaq.com Table of Contents I. System Requirements...2 II. Install SPARK Workflow on your environment...2 III. Obtain SPARK Workflow License...7 IV.

More information

Course Folder and Files Instructions for download and use

Course Folder and Files Instructions for download and use Course Folder and Files Instructions for download and use About course folders and files Please read this page carefully! Most, but not all of our courses, at certain points in each chapter, instruct you

More information

Manual Internet Explorer 10 Xp 32 Bit Windows 8

Manual Internet Explorer 10 Xp 32 Bit Windows 8 Manual Internet Explorer 10 Xp 32 Bit Windows 8 Learn about Windows 10, the latest devices, apps and games or find Download Internet Explorer 11 and make your web experience even better. Windows 7 Enterprise,

More information

E-statement Settings Guide

E-statement Settings Guide E-statement Settings Guide Contents Windows PC... 3 Google Chrome... 3 Internet Explorer... 7 Mozilla Firefox... 10 Apple Macintosh... 14 Safari for Mac... 14 Apple ios (iphone/ipad)... 21 Safari for ios

More information

Module Browser-based Deployment

Module Browser-based Deployment Module 17 Browser-based Deployment Browser-based Deployment Benefits Requirements Setup Running Kofax Capture from the browser Browserbased Deployment Slide 2 Module 17 -- Browser-based Deployment Browser-based

More information

Software Implementation

Software Implementation Software Implementation Quiz with Explainations Hans-Petter Halvorsen, M.Sc. Questions 1. List 10 different Programming Languages 2. What is an IDE? - Give some Examples 3. What is.net? 4. What is ASP.NET?

More information

Team Assignment. Final Software Delivery. IA4412 Software Engineering

Team Assignment. Final Software Delivery. IA4412 Software Engineering IA4412 Software Engineering Team Assignment Final Software Delivery B. Lund. Lunch. Available: http://www.lunchstriper.no, http://www.dagbladet.no/tegneserie/lunch/ Hans-Petter Halvorsen, M.Sc. Level of

More information

Mitchell Bosecke, Greg Burlet, David Dietrich, Peter Lorimer, Robin Miller

Mitchell Bosecke, Greg Burlet, David Dietrich, Peter Lorimer, Robin Miller Mitchell Bosecke, Greg Burlet, David Dietrich, Peter Lorimer, Robin Miller 0 Introduction 0 ASP.NET 0 Web Services and Communication 0 Microsoft Visual Studio 2010 0 Mono 0 Support and Usage Metrics .NET

More information

Setup Program Lets users install the application by running a windows Setup program Lets users specify the installation directory Creates a shortcut

Setup Program Lets users install the application by running a windows Setup program Lets users specify the installation directory Creates a shortcut Installing new software can be an exciting and anxious experience. You give over control of the system to a program that may demand administrator privilege and then begins to update some of the most fragile

More information

Amazon AppStream 2.0: Getting Started Guide

Amazon AppStream 2.0: Getting Started Guide 2018 Amazon AppStream 2.0: Getting Started Guide Build an Amazon AppStream 2.0 environment to stream desktop applications to your users April 2018 https://aws.amazon.com/appstream2/ 1 Welcome This guide

More information

Workstation Configuration

Workstation Configuration Workstation Configuration September 22, 2015 - Version 9 & 9.1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

More information

ALTIRIS Software State Management

ALTIRIS Software State Management ALTIRIS Software State Management The information contained in the Altiris Knowledgebase is subject to the Terms of Use as outlined at http://www.altiris.com/legal/termsofuse.asp. History Additions / Edits

More information

Testing your TLS version

Testing your TLS version Testing your TLS version If you are not able to access Progressive Leasing websites, you may need to upgrade your web browser or adjust your settings. In order to test your TLS version to see if it is

More information

ArtfulBits Link to Document Column

ArtfulBits Link to Document Column ArtfulBits Link to Document Column Install Guide for Microsoft SharePoint System Requirements... 1 Preparation for Installation... 2 Installation... 2 License Management... 6 Activating / Deactivating

More information

Install and upgrade Qlik Sense. Qlik Sense 3.0 Copyright QlikTech International AB. All rights reserved.

Install and upgrade Qlik Sense. Qlik Sense 3.0 Copyright QlikTech International AB. All rights reserved. Install and upgrade Qlik Sense Qlik Sense 3.0 Copyright 1993-2016 QlikTech International AB. All rights reserved. Copyright 1993-2016 QlikTech International AB. All rights reserved. Qlik, QlikTech, Qlik

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

Programming. Languages & Frameworks. Hans-Petter Halvorsen, M.Sc. O. Widder. (2013). geek&poke. Available:

Programming. Languages & Frameworks. Hans-Petter Halvorsen, M.Sc. O. Widder. (2013). geek&poke. Available: Programming O. Widder. (2013). geek&poke. Available: http://geek-and-poke.com Languages & Frameworks Hans-Petter Halvorsen, M.Sc. Implementation Planning Maintenance Testing Implementation The Software

More information

Workstation Configuration

Workstation Configuration Workstation Configuration December 15, 2017 - Version 9.3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

More information

Workstation Configuration

Workstation Configuration Workstation Configuration December 12, 2017 - Version 9.4 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

More information

Installation Instructions for JMP Genomics 4.1 for SAS 9.2

Installation Instructions for JMP Genomics 4.1 for SAS 9.2 Installation Instructions for JMP Genomics 4.1 for SAS 9.2 These instructions briefly describe the process for installing JMP Genomics 4.1 on your Windows desktop machine. Your software may be delivered

More information

Amazon Virtual Private Cloud. Getting Started Guide

Amazon Virtual Private Cloud. Getting Started Guide Amazon Virtual Private Cloud Getting Started Guide Amazon Virtual Private Cloud: Getting Started Guide Copyright 2017 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks

More information

Workspace Administrator Help File

Workspace Administrator Help File Workspace Administrator Help File Table of Contents HotDocs Workspace Help File... 1 Getting Started with Workspace... 3 What is HotDocs Workspace?... 3 Getting Started with Workspace... 3 To access Workspace...

More information

Amazon WorkSpaces Application Manager. Administration Guide

Amazon WorkSpaces Application Manager. Administration Guide Amazon WorkSpaces Application Manager Administration Guide Manager: Administration Guide Copyright 2017 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks and trade

More information

Workstation Configuration Guide

Workstation Configuration Guide Workstation Configuration Guide August 13, 2018 Version 9.6.134.78 For the most recent version of this document, visit our documentation website. Table of Contents 1 Workstation configuration 4 1.1 Considerations

More information

Upgrading CallRex 3.9 to CallRex 4.0

Upgrading CallRex 3.9 to CallRex 4.0 This document describes how to upgrade CallRex 3.9 to CallRex 4.0. It covers the following: Changes to CallRex in Version 4.0. Do Not Upgrade CallRex 3.9 If Server Prerequisites. Performing the Upgrade.

More information

Database Systems. S. Adams. Dilbert. Available: Hans-Petter Halvorsen

Database Systems. S. Adams. Dilbert. Available:  Hans-Petter Halvorsen Database Systems S. Adams. Dilbert. Available: http://dilbert.com Hans-Petter Halvorsen Old fashion Database (Data-storage) Systems Not too long ago, this was the only data-storage device most companies

More information

How do I access the wireless network using a laptop?

How do I access the wireless network using a laptop? Zane State College offers free computer software and software tools to help students achieve success. Below are instructions to install the many software applications offered at Zane State College. How

More information

iphone ios 8.x (4s, 5, 5s & 5c, 6, 6+ models) ipad ios 8.x (all models) Android OS or higher

iphone ios 8.x (4s, 5, 5s & 5c, 6, 6+ models) ipad ios 8.x (all models) Android OS or higher OVERVIEW The ADF Desktop Integration template is used in the Projects module and General Ledger module for uploading journal entries. After the new version of Oracle is completed, you will be prompted

More information

Database Views & Stored Procedures. Hans-Petter Halvorsen, M.Sc.

Database Views & Stored Procedures. Hans-Petter Halvorsen, M.Sc. Database Views & Stored Procedures Hans-Petter Halvorsen, M.Sc. SQL Server Hans-Petter Halvorsen, M.Sc. Microsoft SQL Server 3 1 2 Your SQL Server Your Tables Your Database 4 Write your Query here 5 The

More information

Ansible Tower Quick Setup Guide

Ansible Tower Quick Setup Guide Ansible Tower Quick Setup Guide Release Ansible Tower 2.4.5 Red Hat, Inc. Jun 06, 2017 CONTENTS 1 Quick Start 2 2 Login as a Superuser 3 3 Import a License 4 4 Examine the Tower Dashboard 6 5 The Setup

More information

GLOBAL INFOSKILLS SDN BHD

GLOBAL INFOSKILLS SDN BHD 1 COMPUTER TECHNICAL COURSES SCHEDULE 2019( LOCATION:GISB ) JAN FEB MAC APR MAY JUNE MICROSOFT AZURE MS10978 Introduction to Azure for Developers 1 5 3500 7-11 11-15 4-8 1-5 6-10 10-14 MS20487 Developing

More information

GLOBAL INFOSKILLS SDN BHD

GLOBAL INFOSKILLS SDN BHD 1 JAN FEB MAC APR MAY JUNE MICROSOFT AZURE MS10978 Introduction to Azure for Developers 1 5 3500 8-12 5-9 26-30 16-20 21-25 4-8 MS20487 Developing Microsoft Azure and Web Services 1 5 3500 15-19 19-23

More information

Microsoft Cloud Club

Microsoft Cloud Club Microsoft Cloud Club Cloud Club - Office 365 Microsoft Cloud Club Office 365 Office365 Cloud Club Basic Implementation Pack Offerings : Implementation under Exchange Online plan (Maximum of 30 users) 1.

More information

JCCC Virtual Labs. Click the link for more information on installing on that device type. Windows PC/laptop Apple imac or MacBook ipad Android Linux

JCCC Virtual Labs. Click the link for more information on installing on that device type. Windows PC/laptop Apple imac or MacBook ipad Android Linux JCCC Virtual Labs Revision 9/21/2017 http://ats.web. Welcome to the JCCC Virtual Lab Environment. This system allows students to access campus software titles on their personal computers from almost anywhere.

More information

Junxure Code Upgrade Instructions

Junxure Code Upgrade Instructions Junxure Code Upgrade Instructions If at any time you run into an issue with the following process, call or email Junxure Support (866-586-9873, opt 1 or support@junxure.com) and we will assist you with

More information

System requirements for Qlik Sense. Qlik Sense September 2018 Copyright QlikTech International AB. All rights reserved.

System requirements for Qlik Sense. Qlik Sense September 2018 Copyright QlikTech International AB. All rights reserved. System requirements for Qlik Sense Qlik Sense September 2018 Copyright 1993-2018 QlikTech International AB. All rights reserved. Copyright 1993-2018 QlikTech International AB. All rights reserved. Qlik,

More information

Introduction to the Azure Portal

Introduction to the Azure Portal Page 1 of 17 Introduction to the Azure Portal The new Azure portal is an all-in-one, work-anywhere experience. Now you can manage App Service Apps, databases and Visual Studio Team Services projects in

More information

EMCO MSI Package Builder Enterprise 7. Copyright EMCO. All rights reserved.

EMCO MSI Package Builder Enterprise 7. Copyright EMCO. All rights reserved. EMCO MSI Package Builder Enterprise 7 Copyright 2001-2017 EMCO. All rights reserved. Company web site: emcosoftware.com Support e-mail: support@emcosoftware.com Table of Contents Chapter... 1: Introduction

More information

NovaBACKUP CMon v19.0

NovaBACKUP CMon v19.0 June 2017 NovaBACKUP CMon v19.0 User Manual Features and specifications are subject to change without notice. The information provided herein is provided for informational and planning purposes only. 2017

More information

Implementing Microsoft Azure Infrastructure Solutions (20533)

Implementing Microsoft Azure Infrastructure Solutions (20533) Implementing Microsoft Azure Infrastructure Solutions (20533) Duration: 5 Days Price: $895 Delivery Option: Attend via MOC On-Demand Students Will Learn Describing Azure architecture components, including

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

Publisher Onboarding Kit

Publisher Onboarding Kit Publisher Onboarding Kit Smart content. Smart business. Publishing, Supporting & Selling HotDocs Market Templates A HotDocs Market publisher s guide for loading templates, answering customer questions

More information

Learn about the latest offerings in Adobe Connect. This article summarizes the new features and enhancements.

Learn about the latest offerings in Adobe Connect. This article summarizes the new features and enhancements. Adobe Connect 9.7 Release Notes Learn about the latest offerings in Adobe Connect. This article summarizes the new features and enhancements. Adobe Connect is a web conferencing solution for web meetings,

More information

Getting Started with. Management Portal. Version

Getting Started with. Management Portal. Version Getting Started with Management Portal Version 10.1.0.0 Copyright RES Software Development B.V. All rights reserved. Commercial Computer Software documentation/data Restricted Rights. RES and RES ONE are

More information

Connecting to the Virtual Desktop Infrastructure (VDI)

Connecting to the Virtual Desktop Infrastructure (VDI) System Office IT Connecting to the Virtual Desktop Infrastructure (VDI) There are four ways to connect to the system office Virtual Desktop Infrastructure (VDI): Web client Windows client - personal computer

More information

InstallAware A Simple Solution for Windows Installer

InstallAware A Simple Solution for Windows Installer InstallAware A Simple Solution for Windows Installer InstallAware at a Glance Founded in 2003 by former InstallShield employees Designed to support Windows Installer automatically builds logocompliant

More information

Amazon AppStream 2.0: SOLIDWORKS Deployment Guide

Amazon AppStream 2.0: SOLIDWORKS Deployment Guide 2018 Amazon AppStream 2.0: SOLIDWORKS Deployment Guide Build an Amazon AppStream 2.0 environment to stream SOLIDWORKS to your users June 2018 https://aws.amazon.com/appstream2/ 1 Welcome This guide describes

More information

Upgrade to Office 365 ProPlus

Upgrade to Office 365 ProPlus Upgrade to Office 365 ProPlus Page 1 Index 1 Purpose of this document... 3 2 Assumptions... 3 3 Create and Distribute Office 365 ProPlus 2016... 5 3.1 Prepare the Office 365 ProPlus installation files

More information

Project types supported by Limnor Studio

Project types supported by Limnor Studio Project Types Contents Introduction... 1 Windows Application... 2 Windows Service... 2 Class Library... 3 Web Service... 3 Console Application... 3 Setup... 3 Kiosk Application... 3 Screensaver Application...

More information

FAQs. Business (CIP 2.2) AWS Market Place Troubleshooting and FAQ Guide

FAQs. Business (CIP 2.2) AWS Market Place Troubleshooting and FAQ Guide FAQs 1. What is the browser compatibility for logging into the TCS Connected Intelligence Data Lake for Business Portal? Please check whether you are using Mozilla Firefox 18 or above and Google Chrome

More information

2015 Beta 2 Tutorials

2015 Beta 2 Tutorials 2015 Beta 2 Tutorials 2015 Beta 2 FOR WINDOWS & UNIX & LINUX Contents 1 Tutorial 2: Config, Deploy & Run the Application... 1 1.1 Task 1: Configure the database type... 1 1.2 Task 2: Configure the database

More information

ipm Global CHAPTER 1 INSTALLATION CH 1 - p 1

ipm Global CHAPTER 1 INSTALLATION CH 1 - p 1 CHAPTER 1 INSTALLATION CH 1 - p 1 CHAPTER 1 - INSTALLATION 1.0 INSTALLATION 1.1 System Requirements In order to correctly install and use IPM, the follow system requirements must be met: - Microsoft Dynamics

More information

Publishing Updates Guide

Publishing Updates Guide Publishing Updates Guide 1 Document Versions: Date Version Description June 14, 2014 1.0 Initial Release March 14, 2015 1.1 Minor Changes 2 Publishing Updates: This guide is assuming you have completed

More information

This guide details the deployment and initial configuration necessary to maximize the value of JetAdvantage Insights.

This guide details the deployment and initial configuration necessary to maximize the value of JetAdvantage Insights. HP JetAdvantage Insights Deployment Guide This guide details the deployment and initial configuration necessary to maximize the value of JetAdvantage Insights. 1. Overview HP JetAdvantage Insights provides

More information

Browser Checklist. Objective. Content. 1) Zurich recommended browser

Browser Checklist. Objective. Content. 1) Zurich recommended browser Browser Checklist Objective To ensure that agents have the fastest and best experience of Zurich einsurance portal. By checking that agents have the best browser on the computers. By creating a shortcut

More information

EPUB / VISUAL STUDIO 2010 PUBLISH WEB SERVICE FILE

EPUB / VISUAL STUDIO 2010 PUBLISH WEB SERVICE FILE 17 April, 2018 EPUB / VISUAL STUDIO 2010 PUBLISH WEB SERVICE FILE Document Filetype: PDF 102.71 KB 0 EPUB / VISUAL STUDIO 2010 PUBLISH WEB SERVICE FILE In this article we'll show you how to deploy your

More information

Introduction to.net Deployment. Brian Noyes IDesign, Inc. (

Introduction to.net Deployment. Brian Noyes IDesign, Inc. ( Introduction to.net Deployment Brian Noyes IDesign, Inc. (www.idesign.net) brian.noyes@idesign.net About Brian Principal Software Architect, IDesign Inc. (www.idesign.net) Microsoft MVP in ASP.NET Writing

More information

Microsoft Dynamics NAV Windows Client Requirements

Microsoft Dynamics NAV Windows Client Requirements Microsoft Dynamics NAV Windows Client Requirements The following table shows the minimum system requirements for the Microsoft Dynamics NAV Windows client. Supported operating systems Windows 8.1 Professional

More information

Overview of Microsoft Virtualization

Overview of Microsoft Virtualization Overview of Microsoft Virtualization Microsoft offers a number of virtualization technologies that administrators and infrastructure architects can use to create and administer a virtual environment. To

More information

EMCO MSI Package Builder Professional 7. Copyright EMCO. All rights reserved.

EMCO MSI Package Builder Professional 7. Copyright EMCO. All rights reserved. EMCO MSI Package Builder Professional 7 Copyright 2001-2017 EMCO. All rights reserved. Company web site: emcosoftware.com Support e-mail: support@emcosoftware.com Table of Contents Chapter... 1: Introduction

More information

USB driver and Software Installation. UPS Monitoring and Management Software

USB driver and Software Installation. UPS Monitoring and Management Software USB driver and Software Installation UPS Monitoring and Management Software LEN.MAN.SOF.143 Rev.1.00/2008 Installing USB driver and Easy-Mon X for LEONICS UPS 1. Installing and uninstalling the USB driver

More information

Platinum~Pro (v21.0): Deployment Guide (v1.2)

Platinum~Pro (v21.0): Deployment Guide (v1.2) (v1.2) INTRODUCTION... 2 SYSTEM REQUIREMENTS... 4 CHAPTER 1 DEPLOYMENT... 6 CHAPTER 2 UPGRADING... 12 CHAPTER 3 MIGRATION... 15 CHAPTER 4 UNINSTALLATION... 16 APPENDIX 1 DEPLOYMENT ISSUES... 18 APPENDIX

More information

SES E-Reader App User Guide

SES E-Reader App User Guide Version - July 27, 2016 For more information, contact Mike Morrel Executive Director SES - The Society for Standards Professionals 1950 Lafayette Road, Box 1 Portsmouth, NH 03801 admin@ses-standards.org

More information

Installation Guide Savision iq

Installation Guide Savision iq Installation Guide Savision iq Contents 1. Introduction... 3 1.1 About This Guide... 3 1.2 Supported Integrations... 3 1.3 Software Components... 3 2. Installing Savision iq... 4 2.1 Upgrading from Savision

More information

Below you'll find some browser and device specific instructions, as well as links to more expansive tutorials if you need them.

Below you'll find some browser and device specific instructions, as well as links to more expansive tutorials if you need them. In most web browsers, you can clear the cache from the Privacy or History area in the Settings or Options menu, depending on the browser, of course. Ctrl+Shift+Del works with most browsers as well. While

More information

Oracle Fusion Middleware. 1 Introduction. 1.1 Supported Functionality and Intended Use. 1.2 Limitations

Oracle Fusion Middleware. 1 Introduction. 1.1 Supported Functionality and Intended Use. 1.2 Limitations Oracle Fusion Middleware Installation Notes for Oracle Business Intelligence Mobile App Designer Trial Edition 11g Release 1 (11.1.1) E49297-01 September 2013 Welcome to Installation Notes for Oracle Business

More information

Additional Products & Utilities. Suite. V10.1 Platform Specifications that are supported. Operating Systems (64-bit only) Microsoft Office

Additional Products & Utilities. Suite. V10.1 Platform Specifications that are supported. Operating Systems (64-bit only) Microsoft Office Aspen Infrastructure - roduct Installation Update Center Integration Foundation Additional roducts & Utilities V10.1 latform Specifications that are supported Operating Systems (64-bit only) Windows 10

More information

Sentences Installation Guide. Sentences Version 4.0

Sentences Installation Guide. Sentences Version 4.0 Sentences Installation Guide Sentences Version 4.0 A publication of Lazysoft Ltd. Web: www.sentences.com Lazysoft Support: support@sentences.com Copyright 2000-2012 Lazysoft Ltd. All rights reserved. The

More information

Manual Internet Explorer 9 Xp For Windows 7

Manual Internet Explorer 9 Xp For Windows 7 Manual Internet Explorer 9 Xp For Windows 7 This page provides the Group Policy Administrative Template files for Internet Explorer. Server 2003 machine, the Administrative Template files need to be manually

More information

to know how and when to apply which Microsoft technology. In many cases, you can combine multiple

to know how and when to apply which Microsoft technology. In many cases, you can combine multiple Overview of Microsoft Virtualization Microsoft offers a number of virtualization technologies that administrators and infrastructure architects can use to create and administer a virtual environment. To

More information

EMCO MSI Package Builder Architect 7. Copyright EMCO. All rights reserved.

EMCO MSI Package Builder Architect 7. Copyright EMCO. All rights reserved. EMCO MSI Package Builder Architect 7 Company web site: emcosoftware.com Support e-mail: support@emcosoftware.com Table of Contents Chapter... 1: Introduction 4 Chapter... 2: Getting Started 6 Getting...

More information

Installation Guide for Pulse on Windows Server 2012

Installation Guide for Pulse on Windows Server 2012 USER GUIDE MADCAP PULSE 4 Installation Guide for Pulse on Windows Server 2012 Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The

More information

Wireless DAQ using ZigBee

Wireless DAQ using ZigBee Høgskolen i Telemark Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics Wireless DAQ using ZigBee Cuong Nguyen, Hans- Petter Halvorsen 2013.10.29 Hardware

More information

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited SHAREPONT 2013 BUSINESS INTELLIGENCE

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited SHAREPONT 2013 BUSINESS INTELLIGENCE SHAREPONT 2013 BUSINESS INTELLIGENCE SharePoint 2013 Business Intelligence (SBI2013 version 1.1.0) Copyright Information Copyright 2016 Webucator. All rights reserved. The Author Bruce Gordon Bruce Gordon

More information

PDSA.NET Productivity Framework Deployment Manual

PDSA.NET Productivity Framework Deployment Manual PDSA.NET Productivity Framework Deployment Manual By: PDSA, Inc. August 2016 Published By: PDSA, Inc. Copyright 2002-2016, PDSA, Inc. All Rights Reserved Worldwide Introduction Written By: Technical Editors:

More information

How Parallels RAS Enhances Microsoft RDS. White Paper Parallels Remote Application Server

How Parallels RAS Enhances Microsoft RDS. White Paper Parallels Remote Application Server How Parallels RAS Enhances Microsoft RDS White Paper Parallels Remote Application Server Table of Contents Introduction... 3 Overview of Microsoft Remote Desktop Services... 3 Microsoft RDS Pain Points...

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