You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
587 B
14 lines
587 B
if($PSVersionTable.PSVersion.Major -lt 6){
|
|
[System.Reflection.Assembly]::LoadWithPartialName("System.Security.Principal.Windows")
|
|
$null = Add-Type -Path "$PSScriptRoot\refs\net46\SimpleImpersonation.dll"
|
|
}
|
|
else{
|
|
$null = Add-Type -Path "$PSScriptRoot\refs\netstandard2.0\SimpleImpersonation.dll"
|
|
$null = Add-Type -Path "$PSScriptRoot\refs\netstandard2.0\System.Security.Principal.Windows.dll"
|
|
}
|
|
|
|
. "$PSScriptRoot\Commands\Get-GMSACredential.ps1"
|
|
. "$PSScriptRoot\Commands\Invoke-GMSACommand.ps1"
|
|
|
|
|
|
Export-ModuleMember -Function @('Get-GMSACredential','Invoke-GMSACommand')
|