Initial Commit

This commit is contained in:
Torsten Brendgen
2026-02-08 14:54:46 +01:00
commit 5de9ab325d
2 changed files with 24 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
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")
}