Files
Microsoft.SelfService.Porta…/Microsoft.SelfService.Portal.PowerShell.Deployment.psm1
Torsten Brendgen 5de9ab325d Initial Commit
2026-02-08 14:54:46 +01:00

13 lines
336 B
PowerShell

Import-Module -Name "Microsoft.SelfService.Portal.PowerShell.Core" -Force
function Get-SSPDeployments {
return $(Invoke-SSPRequest -Method Get -Endpoint "Deployment")
}
function Get-SSPDeploymentById {
Param(
[System.Guid] $Id
)
return $(Invoke-SSPRequest -Method Get -Endpoint "Deployment" -Query "$Id")
}