Devolutions.Hub.psm1
$ModuleName = $(Get-Item $PSCommandPath).BaseName $Manifest = Import-PowerShellDataFile -Path $(Join-Path $PSScriptRoot "${ModuleName}.psd1") Export-ModuleMember -Cmdlet @($manifest.CmdletsToExport) Export-ModuleMember -Function @($Manifest.FunctionsToExport) if (-Not (Test-Path 'variable:global:IsWindows')) { $script:IsWindows = $true; # Windows PowerShell 5.1 or earlier } if ($IsWindows) { [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12; } |