Marc Collins
Marc Collins
The Function [New-QlikVirtualProxy](https://github.com/ahaydon/Qlik-Cli-Windows/blob/8ce050995e03849757625fd71928859e23cacdb7/resources/proxy.ps1#L116) does not expose the property "sessionCookieDomain" so unless you have modified it that may be causing a error As a work around to this, you can call...
try replacing `Get-QlikTask -filter "name eq 'Test task 2'" | Add-QlikTrigger -name 'After Test task 1' -OnSuccess (Get-QlikTask -filter "name eq 'Test task 1'")` with `Get-QlikTask -filter "name eq 'Test...
I suspect that you have a issue with your install of Qlik-CLI-Windows It may be worth removing the module and installing again. the installation instructions can be found here: [Installation](https://github.com/ahaydon/Qlik-Cli-Windows/wiki/installation)...
When you call the Get-QlikCustomProperty ensure that you use the -raw parameter. as an example the export script will look like this, you may need to adjust the file path...
Can you please confirm the Export process uses the -Raw command
As a simple workaround how about this... `$SerializedString = [System.Management.Automation.PSSerializer]::Serialize($Object) $BackToObject = [System.Management.Automation.PSSerializer]::Deserialize($SerializedString)`
The API Overview has some gaps but is a start. https://docs.linkwarden.app/api/overview you can also view the Browser Dev tools to see the URL's being called in the UI. `/api/v1/links?PARAMS` which...