Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Exporting your Qlik Sense Enterprise apps

No ratings
cancel
Showing results for 
Search instead for 
Did you mean: 
Clever_Anjos
Employee
Employee

Exporting your Qlik Sense Enterprise apps

Last Update:

Jul 16, 2018 10:54:17 AM

Updated By:

Clever_Anjos

Created date:

Jul 16, 2018 10:54:17 AM

For some reason you may want to dump all your applications from a QSE box and the QMC only allow you export only at once, right?

Using the work of aay‌ (https://github.com/ahaydon/Qlik-Cli) I´ve written a piece of code (Powershell) that dumps all your apps to a specific folder and segregating them according to your streams (each stream app goes to same folder)

Please make your adjustements and this is made available "AS IS" without warranty of any kind

$myserver = "yourserver.youdomain.com"

$folder = "c:\dump"

Connect-Qlik $myserver ## check https://github.com/ahaydon/Qlik-Cli for details


foreach($qvf in $(get-qlikapp)) {

    if ($qvf.published -and $qvf.stream.name) { # Is it published?

        $streamfolder = $qvf.stream.name

        If(!(test-path "$folder\$streamfolder")) # Create a folder if it does not exists

        {

              New-Item -ItemType Directory -Force -Path "$folder\$streamfolder"

        }

    } else {

        $streamfolder = ""

    }

    Export-QlikApp -id $qvf.id -filename "$($folder)\$($streamfolder)\$($qvf.name).qvf" #dumps the qvf

}


Comments
Clever_Anjos
Employee
Employee

You can use any machine that has:

  1. PowerShell installed
  2. Network connectivity to the Qlik Sense Server

You need to export certificates from QMC and copy these to your box, qlik-cli demands a certificate

Please refer to "Installation" in this link https://github.com/ahaydon/Qlik-Cli-Windows/blob/master/README.md

 

0 Likes
Version history
Last update:
‎2018-07-16 10:54 AM
Updated by: