Thycotic.SecretServer.psm1
#region Import Functions foreach ($file in Get-ChildItem -Path $PSScriptRoot\functions -Recurse -Filter *-*.ps1) { . $file.FullName } #endregion Import Functions [Net.ServicePointManager]::SecurityProtocol = [Net.ServicePointManager]::SecurityProtocol -bor [Net.SecurityProtocolType]::Tls12 Add-Type -AssemblyName System.Web # Add System.Web now, in the unlikely event it was not already loaded. #region Import Parts # Parts are simple .ps1 files beneath a /Parts directory that can be used throughout the module. $partsDirectory = $( # Because we want to be case-insensitive, and because it's fast foreach ($dir in [IO.Directory]::GetDirectories($PSScriptRoot)) { # [IO.Directory]::GetDirectories() if ($dir -imatch "\$([IO.Path]::DirectorySeparatorChar)Parts$") { # and some Regex [IO.DirectoryInfo]$dir;break # to find our parts directory. } }) if ($partsDirectory) { # If we have parts directory foreach ($partFile in $partsDirectory.EnumerateFileSystemInfos()) { # enumerate all of the files. if ($partFile.Extension -ne '.ps1') { continue } # Skip anything that's not a PowerShell script. $partName = # Get the name of the script. $partFile.Name.Substring(0, $partFile.Name.Length - $partFile.Extension.Length) $ExecutionContext.SessionState.PSVariable.Set( # Set a variable $partName, # named the script that points to the script (e.g. $foo = gcm .\Parts\foo.ps1) $ExecutionContext.SessionState.InvokeCommand.GetCommand($partFile.Fullname, 'ExternalScript') ) } } #endregion Import Parts #region alias $script:PSModuleRoot = $PSScriptRoot $script:binRoot = [IO.Path]::Combine($PSModuleRoot,'bin') $script:clientSdkPath = [IO.Path]::Combine($binRoot,'ClientSdk') $script:ignoreVersion = $tss_ignoreversioncheck $aliases = @{ 'gts' = 'Get-TssSecret' 'nts' = 'New-TssSession' 'ira' = 'Invoke-TssRestApi' 'Checkout-TssSecret' = 'Open-TssSecret' 'CheckIn-TssSecret' = 'Close-TssSecret' } foreach ($_ in $aliases.GetEnumerator()) { New-Alias -Name $_.Key -Value $_.Value -Force } Export-ModuleMember -Alias * -Function * -Cmdlet * |