Skip to content

Interact with the ManageEngine ServiceDesk Plus API using PowerShell.

License

Notifications You must be signed in to change notification settings

devynspencer/powershell-sdp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PowerShell Module: ServiceDeskPlus

PowerShell module focused on manipulating the ManageEngine ServiceDesk Plus API.

Setup

Clone the module into your PowerShell modules directory:

git clone "https://github.com/devynspencer/powershell-sdp" "$env:USERPROFILE\Documents\WindowsPowerShell\Modules\ServiceDeskPlus"

Alternatively, create a symlink:

$ProjectPath = "$env:USERPROFILE\projects\powershell-sdp"
$InstallPath = "$env:USERPROFILE\Documents\WindowsPowerShell\Modules\ServiceDeskPlus"

cmd /c mklink /d $InstallPath $ProjectPath

Add your ServiceDesk Plus API key and server URI to your PowerShell profile as default parameter values:

# Update default parameters hash with SDP API key and server URI
$PSDefaultParameterValues["*-ServiceDesk*:Uri"] = "https://sdp.example.com"
$PSDefaultParameterValues["*-ServiceDesk*:ApiKey"] = "B42550F3-006D-48EB-8011-F6C7D6323EE7"

Releases

No releases published

Packages

No packages published