This PowerShell module allows you to interact with the Cireson Portal API.
You can retrive information from SCSM without the need to have the Smlets module or the Cireson Portal
Official documentation: https://support.cireson.com/Help#overview
Install-Module CiresonPortalPS
- Download the repository
- Unblock the zip file
- Extract the module folder 'CiresonPortalPS' to a module path (e.g. $home\Documents\WindowsPowerShell\Modules)
# Import the module.
Import-Module -Name CiresonPortalPS
# Get the commands available
Get-Command -Module CiresonPortalPS
# Set your Credential in a Variable
$Credential = Get-Credential
# Configure the connection
Set-CiresonPortalPSConfiguration -Credential $Credential -URL 'http://ciresonportal'
# Retrieve User with a displayname containing "fxtest"
Get-CiresonPortalUser -UserDisplayName 'fxtest'
# Retrieve the Activity Stage enum
Get-CiresonPortalEnum -ClassID 'f05ea0f0-bd02-143e-2b74-303609750328'
Get-CiresonPortalArticle