Qlik-Cli-Windows icon indicating copy to clipboard operation
Qlik-Cli-Windows copied to clipboard

New-QlikNode Get-QlikNode - Not available

Open mdaadil opened this issue 3 years ago • 1 comments

New-QlikNode Get-QlikNode

These command don't seem to be present as part of this library. Only the below functions are available.

New-QlikContentLibrary
New-QlikCustomProperty
New-QlikDataConnection
New-QlikLicenseRule
New-QlikProfessionalAccessGroup New-QlikRule
New-QlikStream
New-QlikTable
New-QlikTag
New-QlikTask
New-QlikTaskSchedule
New-QlikUser
New-QlikUserAccessGroup
New-QlikUserDirectory
New-QlikVirtualProxy

New-QlikNode : The term 'New-QlikNode' is not recognized as the name of a cmdlet, function, script file, or 
operable program. Check the spelling of the name, or if a path was included, verify that the path is correct 
and try again.
Get-QlikNode : The term 'Get-QlikNode' is not recognized as the name of a cmdlet, function, script file, or 
operable program. Check the spelling of the name, or if a path was included, verify that the path is correct 
and try again.

mdaadil avatar Oct 14 '21 18:10 mdaadil

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

The Following commands should produce the output shown in the screenshot below.

$Module = Get-Module -Name Qlik-Cli
$Module 
Write-Host "Qlik-CLI Version: " -NoNewline -ForegroundColor Gray
Write-Host "$($Module.Version)"
Write-Host "Qlik-CLI Function Count: " -NoNewline -ForegroundColor Gray
Write-Host "$($Module.ExportedCommands.Count)" -ForegroundColor Green
Write-Host "Qlik-CLI Function Names:" -ForegroundColor Gray
$Module.ExportedCommands.Keys -join ", "

image

Nillth avatar Oct 14 '21 23:10 Nillth