Qlik Sense Cmdlet for PowerShell. Sokkorn CHEAV

Size: px
Start display at page:

Download "Qlik Sense Cmdlet for PowerShell. Sokkorn CHEAV"

Transcription

1 Qlik Sense Cmdlet for PowerShell Sokkorn CHEAV

2 Table of Contents 1. Introduction Why this document? Tested Environment Installation Command Test Case View a list of available commands View help for specific command Connect to Qlik Sense Server Import QVF Publish QVF Trigger Task Export QVF Auto Import and Publish App Using Window Task Schedule Archive QVF and delete backup files older than 7 days... 9 Page 1 of 10

3 1. Introduction Qlik-Cli is a PowerShell module that provides a command line interface for managing a Qlik Sense environment. The module provides a set of commands for viewing and editing configuration settings, as well as managing tasks and other features available through the APIs. You can find original Qlik-Cli in GitHub by click this link 2. Why this document? The main purpose of this document is to provide some of use case function where we can t find in GitHub. A common scenario: a. Triggering tasks from an external application b. Auto import and publish app to QMC c. Backup QVF 3. Tested Environment Below server environment has been successfully tested with 1. Windows Server 2016 Standard 2. Qlik Sense June Installation The installation of Qlik-Cli is very simple. Here is the step: 1. Download the package from here 2. Extract the package into [C:\Windows\System32\WindowsPowerShell\v1.0\Modules\Qlik-Cli] Page 2 of 10

4 MUST READ: a. If you download package from point 4.1 and has same Tested Environment, no issue occur. b. If you download package from original GitHub and has same Tested Environment, the PowerShell will not work. To overcome the issue, you must amend script in file Qlik-Cli.psm1 by adding $result = Invoke-WebRequest -Uri " below line [System.Net.ServicePointManager]::CertificatePolicy = New-Object TrustAllCertsPolicy Page 3 of 10

5 6. Command Test Case 6.1 View a list of available commands Get-Help Qlik 6.2 View help for specific command Get-Help Connect-Qlik 6.3 Connect to Qlik Sense Server Connect-Qlik Page 4 of 10

6 6.4 Import QVF # Step 1: Connect to Qlik Sense Server (start session) # Step 2: Import QVF Import-QlikApp -file "C:\myQVF\Executive Dashboard.qvf" -name "Executive Dashboard" -upload 6.5 Publish QVF # Step 1: Connect to Qlik Sense Server (start session) # Step 2: Publish QVF Publish-QlikApp -id "8c6b1568-7bb0-47bc-a9c9-a90b18b56975" -stream "Executive" -name "Executive Dashboard" Page 5 of 10

7 6.6 Trigger Task # Step 1: Connect to Qlik Sense Server (start session) # Step 2: Trigger task Start-QlikTask "Reload task of Operations Monitor" -wait Wait-QlikExecution Page 6 of 10

8 6.7 Export QVF # Step 1: Connect to Qlik Sense Server (start session) # Step 2: Export QVF # Sample export using app id Export-QlikApp -id "8c6b1568-7bb0-47bc-a9c9-a90b18b56975" -filename "C:\myQVF\myExportApp - Operations Monitor.qvf" # Sample export using app name $QVF_Name_In_QMC = "License Monitor" Export-QlikApp -id $(Get-QlikApp -filter "name eq '$QVF_Name_In_QMC'").id -filename "C:\myQVF\myExportApp - $QVF_Name_In_QMC.qvf" 6.8 Auto Import and Publish App Using Window Task Schedule # Step 1: Connect to Qlik Sense Server (start session) # Step 2: Import Qlik Sense App # - In QMC will show "myhelpdeskmanagement" under Apps name Import-QlikApp -name "myhelpdeskmanagement" -file "C:\myQVF\Helpdesk Management.qvf" -upload # Step 3: Publish Qlik Sense App to Stream # - "Support" is a stream name Publish-QlikApp -id $(Get-QlikApp -filter "name eq 'myhelpdeskmanagement'").id -stream $(Get- QlikStream -filter "name eq 'Support'").id -name "myhelpdeskmanagement" Copy script into notepad and save as Import_n_Publish.ps1 Create Task Schedule Page 7 of 10

9 Add Action a. Action : Start a program b. Program/Script : PowerShell.exe c. Add arguments (optional) : -ExecutionPolicy Bypass C:\myQVF\Import_n_Publish.ps1 Page 8 of 10

10 6.9 Archive QVF and delete backup files older than 7 days Scenario: 1. Everyday we want to export QVF from QMC into a backup folder and name it something like YYYYMMDD License Monitor.qvf 2. We want to create a backup directory automatically if it not exists. Ex. C:\QVF_Backup 3. We want to delete QVF files where age older than 7 days Page 9 of 10

11 Below command will handle above scenario: #========================================================================= # Use Case: # 1. Everyday we want to export QVF from QMC into a backup folder # and name it something like YYYYMMDD License Monitor.qvf # 2. We want to create a backup directory automatically if it # not exists. Ex. C:\QVF_Backup # 3. We want to delete QVF files where age older than 7 days # # Step 1: Declare global variables $Path_Backup = "C:\QVF_Backup" $Today = Get-Date -format "yyyymmdd" # Step 2: Create backup directory if it not exist If(!(test-path $Path_Backup)) { New-Item -ItemType Directory -Force -Path $Path_Backup } # Step 3: Connect to Qlik Sense Server (start session) # Step 4: Only Export and Delete old QVF if reload task FinishedSuccess $GetTaskStatus = $(Get-QlikTask -filter "name eq 'Reload License Monitor'").status If ($GetTaskStatus -eq "FinishedSuccess") { #Export QVF $QVF_Name_In_QMC = "License Monitor" Export-QlikApp -id $(Get-QlikApp -filter "name eq '$QVF_Name_In_QMC'").id -filename "$Path_Backup\$Today - $QVF_Name_In_QMC.qvf" #Delete files older than 7 days Get-ChildItem $Path_Backup -Recurse Where-Object { $_.LastWriteTime -lt (Get- Date).AddDays(-7) } Remove-Item } Copy script into notepad and save as Archive_QVF.ps1 Create Task Schedule (please refer to 6.8) Page 10 of 10

POWERSHELL. Introduction COMP2101 Winter 2019

POWERSHELL. Introduction COMP2101 Winter 2019 POWERSHELL Introduction COMP2101 Winter 2019 POWERSHELL VERSIONS Windows Powershell version 5.1 is the target version for this course The get-host command can be used to see your Windows Powershell version

More information

Integrate Viper business antivirus EventTracker Enterprise

Integrate Viper business antivirus EventTracker Enterprise Integrate Viper business antivirus EventTracker Enterprise Publication Date: June 2, 2016 EventTracker 8815 Centre Park Drive Columbia MD 21045 www.eventtracker.com Abstract This guide provides instructions

More information

Release notes for version 3.7.2

Release notes for version 3.7.2 Release notes for version 3.7.2 Important! Create a backup copy of your projects before updating to the new version. Projects saved in the new version can t be opened in versions earlier than 3.7. Breaking

More information

Executing PowerShell Agent Commands

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

More information

Developing Microsoft Azure Solutions (70-532) Syllabus

Developing Microsoft Azure Solutions (70-532) Syllabus Developing Microsoft Azure Solutions (70-532) Syllabus Cloud Computing Introduction What is Cloud Computing Cloud Characteristics Cloud Computing Service Models Deployment Models in Cloud Computing Advantages

More information

Executing PowerShell Agent Commands

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

More information

Powershell: Introduction and Practical Uses. Presentation URL:

Powershell: Introduction and Practical Uses. Presentation URL: Powershell: Introduction and Practical Uses Presentation URL: http://bit.ly/2ick4pt HELLO! I am Chris Wieringa CS Lab Manager for Calvin College cwieri39@calvin.edu 2 1. Goals What we will cover today...

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

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

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

More information

Deploying an IVR Web Application

Deploying an IVR Web Application Deploying an IVR Web Application Last Updated: July 24, 2008 The Cisco Unity Express Interactive Voice Response (IVR) feature allows you to deploy your VoiceXML scripts, which represent the static content

More information

FIMS V You will need to know all of the following items before customizing the script and setting up the schedule.

FIMS V You will need to know all of the following items before customizing the script and setting up the schedule. Customizing and Using DBbackup.bat Purpose The dbbackup.bat file is provided to allow the customer to schedule a backup of their database using the Windows task scheduler without the need to shut the database

More information

Monitor Qlik Sense sites. Qlik Sense Copyright QlikTech International AB. All rights reserved.

Monitor Qlik Sense sites. Qlik Sense Copyright QlikTech International AB. All rights reserved. Monitor Qlik Sense sites Qlik Sense 2.1.2 Copyright 1993-2015 QlikTech International AB. All rights reserved. Copyright 1993-2015 QlikTech International AB. All rights reserved. Qlik, QlikTech, Qlik Sense,

More information

$Date = Get-Date -uformat %A $Name = Read-Host Please enter your name Write-Host Hello $Name, today is $Date

More information

Building Powerful Workflow Automation with Cherwell and PowerShell

Building Powerful Workflow Automation with Cherwell and PowerShell Building Powerful Workflow Automation with Cherwell and PowerShell Agenda Welcome & Session Introduction What is PowerShell? PowerShell ISE Commands/Cmd-Lets Operators Variables Flow Control LAB 1 Exploring

More information

When Will Client Computer Backups Be Backed-up Online?

When Will Client Computer Backups Be Backed-up Online? Using KeepVault to Backup your WD Sentinel KeepVault Online Backup provides offsite disaster- proof protection for all your important data. KeepVault lets you backup regular directories and folder shares,

More information

Qlik Sense Desktop. Qlik Sense September 2018 Copyright QlikTech International AB. All rights reserved.

Qlik Sense Desktop. Qlik Sense September 2018 Copyright QlikTech International AB. All rights reserved. Qlik Sense Desktop Qlik Sense September 2018 Copyright 1993-2018 QlikTech International AB. All rights reserved. Copyright 1993-2018 QlikTech International AB. All rights reserved. Qlik, QlikTech, Qlik

More information

PDF, Notification, Print, and more with Autodesk Vault Job Processor via powerjobs

PDF,  Notification, Print, and more with Autodesk Vault Job Processor via powerjobs PDF, Email Notification, Print, and more with Autodesk Vault Job Processor via powerjobs Marco Mirandola coolorange Wolfgang Hirner - coolorange CP2641 The Autodesk Vault Jobprocessor comes with great

More information

Developing Microsoft Azure Solutions (70-532) Syllabus

Developing Microsoft Azure Solutions (70-532) Syllabus Developing Microsoft Azure Solutions (70-532) Syllabus Cloud Computing Introduction What is Cloud Computing Cloud Characteristics Cloud Computing Service Models Deployment Models in Cloud Computing Advantages

More information

PowerShell provider for BizTalk Server 2013

PowerShell provider for BizTalk Server 2013 PowerShell provider for BizTalk Server 2013 Getting started guide version 1.4.0.1 Published: October 2014 Randal van Splunteren http://biztalkmessages.vansplunteren.net Maxime Labelle http://maximelabelle.wordpress.com

More information

Technical White Paper Information Map. Taking Action on Information Map Insights

Technical White Paper Information Map. Taking Action on Information Map Insights Taking Action on Information Map Insights 1 Contents Executive Summary... 3 Copying Files... 4 Identifying the Locations of VBS Files via Information Map... 4 Narrow Down to a Particular Source Location

More information

Plan and deploy Qlik Sense. Qlik Sense February 2018 Copyright QlikTech International AB. All rights reserved.

Plan and deploy Qlik Sense. Qlik Sense February 2018 Copyright QlikTech International AB. All rights reserved. Plan and deploy Qlik Sense Qlik Sense February 2018 Copyright 1993-2018 QlikTech International AB. All rights reserved. Copyright 1993-2018 QlikTech International AB. All rights reserved. Qlik, QlikTech,

More information

vsphere plug-in Qlik Sense 3.0 Copyright QlikTech International AB. All rights reserved.

vsphere plug-in Qlik Sense 3.0 Copyright QlikTech International AB. All rights reserved. vsphere plug-in 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 Sense, QlikView,

More information

Plan and deploy Qlik Sense. Qlik Sense September 2017 Copyright QlikTech International AB. All rights reserved.

Plan and deploy Qlik Sense. Qlik Sense September 2017 Copyright QlikTech International AB. All rights reserved. Plan and deploy Qlik Sense Qlik Sense September 2017 Copyright 1993-2017 QlikTech International AB. All rights reserved. Copyright 1993-2017 QlikTech International AB. All rights reserved. Qlik, QlikTech,

More information

Plan and deploy Qlik Sense. Qlik Sense April 2018 Copyright QlikTech International AB. All rights reserved.

Plan and deploy Qlik Sense. Qlik Sense April 2018 Copyright QlikTech International AB. All rights reserved. Plan and deploy Qlik Sense Qlik Sense April 2018 Copyright 1993-2018 QlikTech International AB. All rights reserved. Copyright 1993-2018 QlikTech International AB. All rights reserved. Qlik, QlikTech,

More information

Plan and deploy Qlik Sense. Qlik Sense November 2017 Copyright QlikTech International AB. All rights reserved.

Plan and deploy Qlik Sense. Qlik Sense November 2017 Copyright QlikTech International AB. All rights reserved. Plan and deploy Qlik Sense Qlik Sense November 2017 Copyright 1993-2017 QlikTech International AB. All rights reserved. Copyright 1993-2017 QlikTech International AB. All rights reserved. Qlik, QlikTech,

More information

Updated after review Removed paragraph mentioned java source code.

Updated after review Removed paragraph mentioned java source code. Functional Specification for DCR Plug-in Support Author(s): joel.binnquist.xc@ericsson.com Version: 1.3 Version Date Comment 0.1 2009-01-20 First version 1.0 2009-04-02 Updated after review. - Removed

More information

PowerShell. Scripting in Windows Environments Gergő Ládi

PowerShell. Scripting in Windows Environments Gergő Ládi PowerShell Scripting in Windows Environments 2016.04.03. Gergő Ládi (me@gergoladi.me) About Me MSc Student @ BUTE (BME) Member of KSZK since 2011 Relevant certifications: 2016.04.03. Gergő Ládi (me@gergoladi.me)

More information

Qlik Sense Desktop. Qlik Sense February 2018 Copyright QlikTech International AB. All rights reserved.

Qlik Sense Desktop. Qlik Sense February 2018 Copyright QlikTech International AB. All rights reserved. Qlik Sense Desktop Qlik Sense February 2018 Copyright 1993-2018 QlikTech International AB. All rights reserved. Copyright 1993-2018 QlikTech International AB. All rights reserved. Qlik, QlikTech, Qlik

More information

EZDRM Bitmovin Configuration Encoding

EZDRM Bitmovin Configuration Encoding EZDRM Bitmovin Configuration Encoding Table of Contents Prerequisites 3 Preparing for Bitmovin Encoding 4 Step 1: API Key from Bitmovin 4 Step 2. Generating DRM Keys 5 Widevine and PlayReady 5 Apple FairPlay

More information

Qlik NPrinting February 2019

Qlik NPrinting February 2019 Qlik NPrinting February 2019 Release notes Q L I K. C O M TABLE OF CONTENTS What s new in Qlik NPrinting February 2019 2 Improvements 3 Bug fixes 4 Upgrade notes 6 Known issues and limitations 7 Qlik NPrinting

More information

UCON 3.0 Automatic Backup Feature

UCON 3.0 Automatic Backup Feature UCON 3.0 Automatic Backup Feature 1. Overview Starting with version 3.1, ucon supports various datastore backup features. A backup is defined as all the views (*.ucn) and all the datastore files located

More information

Plan Qlik Sense deployments. Qlik Sense June 2017 Copyright QlikTech International AB. All rights reserved.

Plan Qlik Sense deployments. Qlik Sense June 2017 Copyright QlikTech International AB. All rights reserved. Plan Qlik Sense deployments Qlik Sense June 2017 Copyright 1993-2017 QlikTech International AB. All rights reserved. Copyright 1993-2017 QlikTech International AB. All rights reserved. Qlik, QlikTech,

More information

Developing Microsoft Azure Solutions (70-532) Syllabus

Developing Microsoft Azure Solutions (70-532) Syllabus Developing Microsoft Azure Solutions (70-532) Syllabus Cloud Computing Introduction What is Cloud Computing Cloud Characteristics Cloud Computing Service Models Deployment Models in Cloud Computing Advantages

More information

0. Introduction On-demand. Manual Backups Full Backup Custom Backup Store Your Data Only Exclude Folders.

0. Introduction On-demand. Manual Backups Full Backup Custom Backup Store Your Data Only Exclude Folders. Backup & Restore 0. Introduction..2 1. On-demand. Manual Backups..3 1.1 Full Backup...3 1.2 Custom Backup 5 1.2.1 Store Your Data Only...5 1.2.2 Exclude Folders.6 1.3 Restore Your Backup..7 2. On Schedule.

More information

Qlik NPrinting September 2018 Release Notes

Qlik NPrinting September 2018 Release Notes Release Notes Qlik NPrinting September 2018 Release Notes qlik.com Table of Contents What s new in Qlik NPrinting September 2018 3 Improvements 4 Bug fixes 6 Known issues and limitations 9 Upgrade notes

More information

VMware Horizon Session Recording Fling:

VMware Horizon Session Recording Fling: VMware Horizon Session Recording Fling: The VMware Horizon Session Recording fling allows administrators to record VMware Blast Extreme sessions to a central server for playback. These recordings can be

More information

Interact2 Help and Support

Interact2 Help and Support Exporting and Importing an Interact2 Site Best practice for transferring subject content into a new session subject site is: Export/Import process -> Publish Subject Outline -> Merging (only if required).

More information

SharePoint 2010 and 2013 Auditing and Site Content Administration using PowerShell

SharePoint 2010 and 2013 Auditing and Site Content Administration using PowerShell SharePoint 2010 and 2013 Auditing and Site Content Administration using PowerShell 55095A; 1 Days, Instructor-led Course Description This one day class is designed for SharePoint 2010 and 2013 server administrators

More information

Powershell. Working with Objects COMP2101 Winter 2018

Powershell. Working with Objects COMP2101 Winter 2018 Powershell Working with Objects COMP2101 Winter 2018 Objects An object is a data structure residing in memory That structure has places for code and data, those things are called members of the object

More information

Installation Guide. Qlik Sense Copyright QlikTech International AB. All rights reserved.

Installation Guide. Qlik Sense Copyright QlikTech International AB. All rights reserved. Installation Guide Qlik Sense 2.0.1 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

Qlik NPrinting release notes

Qlik NPrinting release notes Qlik NPrinting 17.3.1 release notes IMPORTANT: Upgrading from Qlik NPrinting 17.3 to 17.3.1 To upgrade to Qlik NPrinting 17.3.1 you must start from Qlik NPrinting 17.3. If you have an older version of

More information

vsphere plug-in Qlik Sense Copyright QlikTech International AB. All rights reserved.

vsphere plug-in Qlik Sense Copyright QlikTech International AB. All rights reserved. vsphere plug-in Qlik Sense 2.1.2 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

DRA PowerShell Usage and Examples

DRA PowerShell Usage and Examples Contents Binding to an Object Using the DRA ADSI Provider in a PowerShell Script 2 Checking for Errors in a PowerShell Script 2 Creating an Object 2 Deleting an Object 3 Determining the Properties of an

More information

Microsoft Exam

Microsoft Exam Volume: 177 Questions Question No: 1 DRAG DROP Your company uses Office 365. You are planning a user-driven deployment of Office 365 ProPlus. You need to provide users with the minimum requirements for

More information

Qlik Sense Certification Exam Study Guide

Qlik Sense Certification Exam Study Guide Qlik Sense Certification Exam Study Guide Abstract This document contains information about what you need to study as you prepare for your Qlik Sense Certification Exam. It covers all three roles: System

More information

1. Click on "IaaS" to advance to the Windows Azure Scenario. 2. Click to configure the "CloudNet" Virtual Network

1. Click on IaaS to advance to the Windows Azure Scenario. 2. Click to configure the CloudNet Virtual Network Introduction to the Virtual Network Lab Scenario Steps Description 1. Click on "IaaS" to advance to the Windows Azure Scenario Windows Azure Infrastructure Services ( IaaS ) provides us with the capability

More information

Update Offline Address Book Exchange 2010 Error Couldn Find Database

Update Offline Address Book Exchange 2010 Error Couldn Find Database Update Offline Address Book Exchange 2010 Error Couldn Find Database An error occurred when you tried to access your mailbox because a server Find(ADObjectId rootid, String optionalbasedn, ADObjectId readid,

More information

Security Considerations

Security Considerations Roger Zander CONSULTANT/ MVP Syliance IT Services GmbH roger@zander.ch / roger.zander@syliance.com Security Considerations Configuration Manager Agenda IIS Settings RequestFilterung Monitoring CM12 Site

More information

How To Move MDaemon To A Different Installation Path Or A Different Installation Path On A New Server

How To Move MDaemon To A Different Installation Path Or A Different Installation Path On A New Server How To Move MDaemon To A Different Installation Path Or A Different Installation Path On A New Server These instructions are intended for MDaemon administrators that want to move their MDaemon installation

More information

When Powerful SAS Meets PowerShell TM

When Powerful SAS Meets PowerShell TM PharmaSUG 2018 - Paper QT-06 When Powerful SAS Meets PowerShell TM Shunbing Zhao, Merck & Co., Inc., Rahway, NJ, USA Jeff Xia, Merck & Co., Inc., Rahway, NJ, USA Chao Su, Merck & Co., Inc., Rahway, NJ,

More information

License Metrics for Qlik Sense

License Metrics for Qlik Sense License Metrics for Qlik Sense The License Metrics are part of the Documentation for Qlik Sense Enterprise (QSE) and govern the use of the Software. QSE license options include Professional and Analyzer

More information

Migrating to the latest version of XenApp. Alfons Steger, Senior Systems Engineer CE Rob Sanders, Product Specialist Desktop Virtualisation EMEA

Migrating to the latest version of XenApp. Alfons Steger, Senior Systems Engineer CE Rob Sanders, Product Specialist Desktop Virtualisation EMEA Migrating to the latest version of XenApp Alfons Steger, Senior Systems Engineer CE Rob Sanders, Product Specialist Desktop Virtualisation EMEA http://www.citrix.com/techpreviews Agenda Why? How? Now What?

More information

Monitor Qlik Sense sites. Qlik Sense November 2017 Copyright QlikTech International AB. All rights reserved.

Monitor Qlik Sense sites. Qlik Sense November 2017 Copyright QlikTech International AB. All rights reserved. Monitor Qlik Sense sites Qlik Sense November 2017 Copyright 1993-2017 QlikTech International AB. All rights reserved. Copyright 1993-2017 QlikTech International AB. All rights reserved. Qlik, QlikTech,

More information

AWS Tools for Microsoft Visual Studio Team Services: User Guide

AWS Tools for Microsoft Visual Studio Team Services: User Guide AWS Tools for Microsoft Visual Studio Team Services User Guide AWS Tools for Microsoft Visual Studio Team Services: User Guide Copyright 2018 Amazon Web Services, Inc. and/or its affiliates. All rights

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

QlikView 12 SR1 Release notes

QlikView 12 SR1 Release notes QlikView 12 SR1 Release notes Upgrade issue If you are upgrading to QlikView 12.00 SR1 from version 11.20 SR6 or older there is an issue that causes the PGO files to be cleared. This bug is now fixed in

More information

Archiving s in Microsoft Outlook 2016

Archiving  s in Microsoft Outlook 2016 How to Manually Archive Emails Archiving Emails in Microsoft Outlook 2016 1. Open Microsoft Office Outlook 2016 2. At the top-left hand side of the screen, select File. 3. Click the box that says Cleanup

More information

Updating Skype for Business Phone Firmware from Microsoft Skype for Business Server. Table of Contents

Updating Skype for Business Phone Firmware from Microsoft Skype for Business Server. Table of Contents 1 Table of Contents Updating Phone Firmware from Microsoft Skype for Business Server... 1 Uploading the Update Package... 1 Creating Test Device... 2 Triggering Update... 3 Approving Updates... 4 Obtaining

More information

Magento Optimizer Extension

Magento Optimizer Extension Magento Optimizer Extension 1 Extension description The Magento Optimizer extension makes all cleaning work for you. This module is responsible for Magento cache, session, error reports and abandoned carts

More information

UiPath Orchestrator Azure Installation

UiPath Orchestrator Azure Installation UiPath Orchestrator Azure Installation Revision History Date Version Author Description 9 th June 2016 2016.1 M.B. Applied Template 8 th June 2016 2016.2 C.S. Created Document UiPath Orchestrator Azure

More information

The power of PowerShell

The power of PowerShell The power of PowerShell Created by Ryan Woodward North Central Missouri College Table of Contents H R P C U G 1. About me 2. What is PowerShell? 3. Installing/Starting PowerShell 4. PowerShell Basics Variables

More information

How to Archive s in Outlook 2007

How to Archive  s in Outlook 2007 How to Archive Emails in Outlook 2007 Step 1: Create an archive folder. 1. Go to File and choose Archive 2. You can have it auto-archive or set the parameters to where it creates an empty archive. Due

More information

The KBackup Handbook. Martin Koller

The KBackup Handbook. Martin Koller Martin Koller 2 Contents 1 Introduction 5 2 Using KBackup 6 2.1 Using profiles........................................ 6 2.2 Archive slices........................................ 7 2.3 Incremental Backup.....................................

More information

70-532: Developing Microsoft Azure Solutions

70-532: Developing Microsoft Azure Solutions 70-532: Developing Microsoft Azure Solutions Exam Design Target Audience Candidates of this exam are experienced in designing, programming, implementing, automating, and monitoring Microsoft Azure solutions.

More information

Integrate Malwarebytes EventTracker Enterprise

Integrate Malwarebytes EventTracker Enterprise Integrate Malwarebytes EventTracker Enterprise Publication Date: Aug. 12, 2016 EventTracker 8815 Centre Park Drive Columbia MD 21045 www.eventtracker.com Abstract This guide provides instructions to configure

More information

Auto Start Analyzer after AppPool Recycle by IIS

Auto Start Analyzer after AppPool Recycle by IIS Auto Start Analyzer after AppPool Recycle by IIS Background It is often sites running on the Internet Information Service (IIS) will get recycled by IIS service at a set interval (nightly for example).

More information

Using the Bluemix CLI IBM Corporation

Using the Bluemix CLI IBM Corporation Using the Bluemix CLI After you complete this section, you should understand: How to use the bx Bluemix command-line interface (CLI) to manage applications bx commands help you do tasks such as: Log in

More information

Using SQLCover with SQL Release PowerShell cmdlets

Using SQLCover with SQL Release PowerShell cmdlets Using SQLCover with SQL Release PowerShell cmdlets What is code coverage? Code coverage is a measure used to describe the degree to which the source code of a program is tested by a particular test suite.

More information

Microsoft Official Course

Microsoft Official Course Microsoft Official Course Module 1 Deploying and Managing Microsoft Exchange Server 2013 Module Overview Exchange Server 2013 Prerequisites and Requirements Exchange Server 2013 Deployment Managing Exchange

More information

Product Page: https://digitalrevolver.com/product/automating-administration-with-windows-powershell/

Product Page: https://digitalrevolver.com/product/automating-administration-with-windows-powershell/ Automating Administration with Windows PowerShell Course Code: Duration: 5 Days Product Page: https://digitalrevolver.com/product/automating-administration-with-windows-powershell/ This course provides

More information

70-532: Developing Microsoft Azure Solutions

70-532: Developing Microsoft Azure Solutions 70-532: Developing Microsoft Azure Solutions Objective Domain Note: This document shows tracked changes that are effective as of January 18, 2018. Create and Manage Azure Resource Manager Virtual Machines

More information

FileMaker Exam FM1-306 Developer Essential for FileMaker 12 (Beta) Version: 6.0 [ Total Questions: 198 ]

FileMaker Exam FM1-306 Developer Essential for FileMaker 12 (Beta) Version: 6.0 [ Total Questions: 198 ] s@lm@n FileMaker Exam FM1-306 Developer Essential for FileMaker 12 (Beta) Version: 6.0 [ Total Questions: 198 ] Question No : 1 Which is a valid use of the Let () function in a formula for a FileMaker

More information

Tools for Running Administrative Tasks in IIS Executing Scripts for Administrative Tasks Managing IIS Tasks

Tools for Running Administrative Tasks in IIS Executing Scripts for Administrative Tasks Managing IIS Tasks Tools for Running Administrative Tasks in IIS Executing Scripts for Administrative Tasks Managing IIS Tasks IIS 8.0 Management PowerShell Overview Benefits of Using PowerShell Benefits of Using Microsoft.Web.Administration

More information

GRASP. Installation Manual Step-By-Step v1.3 for GRASP Installer version

GRASP. Installation Manual Step-By-Step v1.3 for GRASP Installer version Fighting Hunger Worldwide GRASP Installation Manual Step-By-Step v1.3 for GRASP Installer version 1.0.12 Manual version 1.3 GRASP Reporting version 1.3.0 GRASP Designer version 1.2.0 GRASP Mobile version

More information

Troubleshoot Qlik Sense using logs. Qlik Sense September 2018 Copyright QlikTech International AB. All rights reserved.

Troubleshoot Qlik Sense using logs. Qlik Sense September 2018 Copyright QlikTech International AB. All rights reserved. Troubleshoot Qlik Sense using logs 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

Documentation on File Management for website

Documentation on File Management for website Documentation on File Management for website File Manager The cpanel FILE MANAGER allows you to modify the files and contents of files that are part of your website. The FILE MANAGER allows point and click

More information

: 10961C: Automating Administration With Windows PowerShell

: 10961C: Automating Administration With Windows PowerShell Module Title Duration : 10961C: Automating Administration With Windows PowerShell : 5 days About this course This course provides students with the fundamental knowledge and skills to use Windows PowerShell

More information

2016 Braindump2go Valid Microsoft Exam Preparation Materials:

2016 Braindump2go Valid Microsoft Exam Preparation Materials: 2016 NEW Microsoft 70-345: Designing and Deploying Microsoft Exchange Server 2016 Exam Questions and Answers RELEASED in Braindump2go.com Online IT Study Website Today! 2016 Braindump2go Valid Microsoft

More information

2018 GLOBALSCAPE TRAINING OVERVIEW

2018 GLOBALSCAPE TRAINING OVERVIEW 2018 GLOBALSCAPE TRAINING OVERVIEW TABLE OF CONTENTS COURSE... 3 EFT ESSENTIALS COURSE...4 EFT ADMINISTRATOR COURSE... 5 EFT ADMINISTRATOR COURSE (CONT.)... 6 EFT AUTOMATION COURSE... 7 EFT SECURITY COURSE...8

More information

Bash Check If Command Line Parameter Exists

Bash Check If Command Line Parameter Exists Bash Check If Command Line Parameter Exists How to enter the parameters on the command line for this shell script? exit 1 fi if $ERR, then echo $MSG exit 1 fi if ( -d "$NAME" ), then echo "Directory -

More information

Microsoft Windows PowerShell v2 For Administrators

Microsoft Windows PowerShell v2 For Administrators Microsoft Windows PowerShell v2 For Administrators Course 50414 5 Days Instructor-led, Hands-on Introduction This four-day instructor-led course provides students with the knowledge and skills to leverage

More information

Additional Management Tools and Interfaces

Additional Management Tools and Interfaces This chapter provides details on additional management tools and interfaces available in Cisco Service Control. The Cisco SCA BB Service Configuration Utility, page 1 The Cisco SCA BB Real-Time Monitoring

More information

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

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

More information

Azure Learning Circles

Azure Learning Circles Azure Learning Circles Azure Management Session 1: Logs, Diagnostics & Metrics Presented By: Shane Creamer shanec@microsoft.com Typical Customer Narratives Most customers know how to operate on-premises,

More information

Guidance for Admin Tool

Guidance for Admin Tool RICOH Interactive Whiteboard Launcher Guidance for Admin Tool This manual describes how to use Admin Tool for RICOH Interactive Whiteboard Launcher (hereinafter, referred to as RICOH Launcher). To start

More information

Upgrade, Backup, Restore, and Reset Guide for Access Gateway Enterprise Edition

Upgrade, Backup, Restore, and Reset Guide for Access Gateway Enterprise Edition Citrix Systems, Inc. Upgrade, Backup, Restore, and Reset Guide for Access Gateway Enterprise Edition Author: Scott L. Lindars Department: Worldwide Technical Readiness Issue Date: June 2007 Circulation:

More information

HEIRES: Heidelberg Remote Service. Release Notes for HEIRES Release 2016B Philipp Lehmann Heidelberg, 2016

HEIRES: Heidelberg Remote Service. Release Notes for HEIRES Release 2016B Philipp Lehmann Heidelberg, 2016 HEIRES: Heidelberg Remote Service Release Notes for HEIRES Release 2016B Philipp Lehmann Heidelberg, 2016 HEIRES HEIRES Release 2016B 1. Summary 2. Change Description 1. Remote Access 2. Support for DCS

More information

Automating Administration with Windows PowerShell

Automating Administration with Windows PowerShell Automating Administration with Windows PowerShell Course 10961C - Five Days - Instructor-led - Hands on Introduction This five-day, instructor-led course provides students with the fundamental knowledge

More information

Resilient & Ready. May 21 23, 2018

Resilient & Ready. May 21 23, 2018 Resilient & Ready May 21 23, 2018 REST Easy! Fear APIs, PowerShell, and Scripting No More Justin Paul, Technical Alliances Architect Mike Nelson, Cloud Architect, MVP What is an API? a set of clearly defined

More information

User Module. File Uploader APPLICATION NOTE

User Module. File Uploader APPLICATION NOTE User Module File Uploader APPLICATION NOTE Used symbols Danger Information regarding user safety or potential damage to the router. Attention Problems that may arise in specific situations. Information

More information

JOB SCHEDULING CHECKLIST

JOB SCHEDULING CHECKLIST JOB SCHEDULING CHECKLIST MVP Systems Software / Phone: 1-800-261-5267 / Web: www.jamsscheduler.com 1 Using these Criteria The following is a detailed list of evaluation criteria that you can use to benchmark

More information

1. Introduction Minimum system requirements Basic Concept Server mode

1. Introduction Minimum system requirements Basic Concept Server mode 1. Introduction TC Monitor is software for monitoring and control of Ethernet (TCW) and GSM/GPRS (TCG) controllers. The supported devices are TCW122B-CM, TCW181B-CM, TCW241, TCW220, TCW210-TH and TCG120.

More information

Qlik Deployment Framework

Qlik Deployment Framework Qlik Deployment Framework QlikView Getting Started Guide April, 2017 qlik.com Table of Contents Why a Framework? 3 Standards 3 Qlik Deployment Framework 3 Qlik Deployment Framework resource containers

More information

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

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

More information

Qlik Sense June 2017 release notes

Qlik Sense June 2017 release notes Release Notes Qlik Sense June 2017 release notes qlik.com Table of Contents What s new in Qlik Sense June 2017? 3 Bug fixes 3 Known issues and limitations 12 Upgrade notes 17 Previous upgrade notes 18

More information

Additional Management Tools and Interfaces

Additional Management Tools and Interfaces CHAPTER 13 The SCA BB Service Configuration Utility, page 13-1 The SCA BB Real-Time Monitoring Configuration Utility, page 13-5 The SCA BB Signature Configuration Utility, page 13-8 Overview of SNMP, MIB,

More information

USER GUIDES OWNCLOUD WEB USER GUIDE. INTRODUCTION: This guide provides details on how to use owncloud via the web.

USER GUIDES OWNCLOUD WEB USER GUIDE. INTRODUCTION: This guide provides details on how to use owncloud via the web. USER GUIDES OWNCLOUD WEB USER GUIDE INTRODUCTION: This guide provides details on how to use owncloud via the web. SYSTEM REQUIREMENTS: Most web browsers WHAT YOU MAY NEED & OTHER CONSIDERATIONS: An Internet

More information

Automating Administration with Windows PowerShell 2.0

Automating Administration with Windows PowerShell 2.0 Automating Administration with Windows PowerShell 2.0 Course No. 10325 5 Days Instructor-led, Hands-on Introduction This course provides students with the knowledge and skills to utilize Windows PowerShell

More information

Article Number: 722 Rating: Unrated Last Updated: Thu, Jul 20, 2017 at 12:31 AM

Article Number: 722 Rating: Unrated Last Updated: Thu, Jul 20, 2017 at 12:31 AM Nagios XI - Using Scripts / Plugins With NCPA Article Number: 7 Rating: Unrated Last Updated: Thu, Jul 0, 017 at 1:31 AM O ve r vie w This KB article explains how to use external scripts / plugins with

More information