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

Announcements
Q&A with Qlik - Qlik Cloud Migration: Questions about migrating to Qlik Cloud? Catch the latest replay!
cancel
Showing results for 
Search instead for 
Did you mean: 
mikaelsc
Specialist
Specialist

qlik sense object scanner install and run

was anyone able to generate the 3 files mentionned in the article https://help.qlik.com/en-US/sense-admin/May2026/Subsystems/DeployAdministerQSE/Content/Sense_DeployA...

at this time i only get the "QlikObjecScanReport.csv"

  • QlikObjectScanOutput.parquet: Contains information about all visualizations used in all apps of the installation.

  • QlikObjectScanExtensionStatus.parquet: Contains information about all extensions available in the Qlik Sense installation and their deprecation status.

  • QlikObjecScanReport.csv: Contains meta data, including time stamp of the scan.

 

any ideas? 

 

@Eduardo_Monteiro thanks for suggesting 

https://community.qlik.com/t5/Official-Support-Articles/Enable-parquet-file-support-for-existing-App...

but this gets me an error when running the ImportQlikSenseCLIModule.ps1

mikaelsc_0-1779994377639.png

similar error when running the AddParquetExtentionWhitelistTable.ps1

mikaelsc_1-1779994433244.png

 

 

Labels (3)
7 Replies
Eduardo_Monteiro
Partner - Creator III
Partner - Creator III

Hi @mikaelsc 

I was only able to get it to work with QlikSense-Cli instead of Qlik-CLI.

You can find it C:\Program Files\Qlik\Sense\Tools\QlikSenseCLI

## Installation
```PowerShell
Get-PackageProvider -Name NuGet -ForceBootstrap

# Install for all users, requires admin rights
Install-Module QlikSenseCLI

# Install for current user
Install-Module QlikSenseCLI -Scope CurrentUser
```

```PowerShell
# Once Installed you can import the Module
Import-Module QlikSenseCLI

Eduardo_Monteiro_0-1779995937500.png

Then you can try to run the AddParquetExtentionWhitelistTable.ps1

** Edit **

Alternatively you can copy the QlikSenseCLI folder to C:\Program Files\WindowsPowerShell\modules and run:

Import-Module QlikSenseCLI

Eduardo_Monteiro_0-1779998088220.png

 

Once it's done, you can open Windows PowerShell ISE and open the script AddParquetExtentionWhitelistTable.ps1

You might need to edit line 4 to use Connect-QlikSense instead of Connect-Qlik.

I hope that helps.

Regards,

Eduardo Monteiro - Senior Support Engineer @ IPC Global
Follow me on my LinkedIn | Know IPC Global at ipc-global.com

Øystein_Kolsrud
Employee
Employee

When you write "able to generate", do you mean that the generation step is failing? Or is it the upload of the generated files to Qlik Sense that fails?

mikaelsc
Specialist
Specialist
Author

@Øystein_Kolsrud files are generated correctly when changing the filepaths. 

 

i guess the solutions provided by @Eduardo_Monteiro should work. 

 

it seems the connection/authentication to qlik sense fails in powershell with the CLI module. 

(should the (admin) user that runs powershell have specific rights/license in qlik sense?

 

mikaelsc_1-1780037767574.png

 

 

 

mikaelsc
Specialist
Specialist
Author

even manually, in a brand new app (may 2026), adding the parquet files fails... 

mikaelsc_0-1780038286134.png

 

not sure if this is another symptom

Eduardo_Monteiro
Partner - Creator III
Partner - Creator III

Hi @mikaelsc 

You can figure out what is going on by manually running the qlik sense object scanner.

Open the command prompt or powershell as administrator

navigate to the qlik sense object scanner folder

Execute:

In cmd.exe QlikSenseObjectScanner.exe -a -d <appid> 

In powershell ./QlikSenseObjectScanner.exe -a -d <appid> 

Please share the results.

Regards,

Eduardo Monteiro - Senior Support Engineer @ IPC Global
Follow me on my LinkedIn | Know IPC Global at ipc-global.com

mikaelsc
Specialist
Specialist
Author

the scanner works. 

mikaelsc_0-1780051419274.png

 

the ImportQlikSenseCLIModule and AddParquetExtentionWhitelistTable ps are somehow failing. 

mikaelsc_1-1780051475057.png

(service account/admin mode/...) 

 

 

Eduardo_Monteiro
Partner - Creator III
Partner - Creator III

Hi @mikaelsc 

It's confirmed.

415: Unsupported media type <-- You don't have .parquet enabled/whitelisted.

What is your OS and PowerShell version?

For PowerShell, you can use $PSVersionTable.PSVersion.

Regards,

Eduardo Monteiro - Senior Support Engineer @ IPC Global
Follow me on my LinkedIn | Know IPC Global at ipc-global.com