Determining whether a user is enabled for Skype for Business (Lync)¶
The following code sample determines whether a user is enabled for Skype for Business.
[Reflection.Assembly]::LoadWithPartialName("Softerra.Adaxes.Adsi")
# Connect to the Adaxes service
$admNS = New-Object("Softerra.Adaxes.Adsi.AdmNamespace")
$admService = $admNS.GetServiceDirectly("localhost")
# Bind to the user
$userDN = "CN=John Smith,CN=Users,DC=domain,DC=com"
$user = $admService.OpenObject("Adaxes://$userDN", $NULL, $NULL, 0)
# Is enabled for Skype for Business?
$enabledForLync = $user.IsLyncEnabled
using Softerra.Adaxes.Interop.Adsi;
using Softerra.Adaxes.Adsi;
class Program
{
static void Main(string[] args)
{
// Connect to the Adaxes service
AdmNamespace adsNS = new AdmNamespace();
IAdmService admService = adsNS.GetServiceDirectly("localhost");
// Bind to the user
const string userPath = "Adaxes://CN=John Smith,CN=Users,DC=domain,DC=com";
IADs user = (IADs)admService.OpenObject(userPath, null, null, 0);
// Is enabled for Skype for Business?
lyncOps = (IAdmLyncOps)user;
Boolean enabledForLync = lyncOps.IsLyncEnabled;
}
}