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
}