mirror of
https://github.com/benclaussen/NetboxPS.git
synced 2025-12-16 03:05:47 +00:00
11 lines
301 B
PowerShell
11 lines
301 B
PowerShell
|
|
function Get-NetboxURLPath {
|
|||
|
|
[CmdletBinding()]
|
|||
|
|
param ()
|
|||
|
|
|
|||
|
|
Write-Verbose "Getting Netbox URL Path"
|
|||
|
|
if ($null -eq $script:NetboxConfig.URLPath) {
|
|||
|
|
throw "Netbox URL Path is not set! You may set it with Set-NetboxURLPath -Path 'netbox/'"
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
$script:NetboxConfig.URLPath
|
|||
|
|
}
|