Xurrent (formerly 4me) is an enterprise IT Service Management platform designed for high-velocity service delivery across organizations and their service providers.
This PowerShell module provides cmdlets to automate Xurrent administration tasks, built and maintained by techwork data GmbH.
For detailed API reference, see the Xurrent API documentation.
| Knowledge Articles |
|---|
| ConvertTo-XurrentKnowledgeArticle |
| ConvertFrom-XurrentKnowledgeArticle |
| Export-XurrentKnowledgeArticle |
| Import-XurrentKnowledgeArticle |
| New-XurrentKnowledgeArticleCsvExample |
| New-XurrentKnowledgeArticleTemplate |
# PowerShellGet 2.x
Install-Module -Name XurrentHelpers -Repository PSGallery
# PowerShellGet 3.x
Install-PSResource -Name XurrentHelpers
Import-Module XurrentHelpers
# List all available cmdlets provided by the module
Get-Command -Module XurrentHelpersThe knowledge article cmdlets work in both directions: author articles in Markdown and bulk-import them into Xurrent, or export from Xurrent and convert back to Markdown files.
New-XurrentKnowledgeArticleTemplate -Name 'HowToResetPassword'
# Creates HowToResetPasswordKnowledgeArticle.md in the current directoryGet-Item .\HowToResetPasswordKnowledgeArticle.md |
ConvertTo-XurrentKnowledgeArticle -Service 'My Service' -ServiceInstances 'My Service Instance'Export-XurrentKnowledgeArticle -Folder .\Articles -Service 'My Service' -ServiceInstances 'My Service Instance'
# Writes import-knowledge_articles.csv in the current directoryYou can also store SERVICE and SERVICE_INSTANCES in a .env file in the working directory so you don't have to pass them each time:
SERVICE=techwork automator
SERVICE_INSTANCES=techwork automator for ACSExport-XurrentKnowledgeArticle -Folder .\Articles
# Reads SERVICE / SERVICE_INSTANCES from .env automaticallyImport-XurrentKnowledgeArticle -CsvPath .\export-knowledge_articles.csv -OutputFolder .\Articles
# Writes one *KnowledgeArticle.md file per row into .\ArticlesImport-Csv .\export-knowledge_articles.csv |
ConvertFrom-XurrentKnowledgeArticle -Path .\ArticlesNew-XurrentKnowledgeArticleCsvExample
# Creates example-knowledge_articles.csv in the current directory
New-XurrentKnowledgeArticleCsvExample -OutputPath C:\Temp\example.csv