As you definitely know disabling user in Active Directory won’t disable it in Skype for Business. That’s because Skype for Business uses it’s own AD attributes. So such users will still be visible in Skype for Business Control Panel and in licenses count.
Tag: Powershell
Jan 24 2018
How to get Skype for Business components version
You can get all Skype for Business components versions grouped in a table with the following Powershell cmdlet. Open Skype for Business Management Shell as Administrator on a Front End Server and execute the following cmdlet:
Oct 07 2017
Run powershell script by double clicking .ps1 file
To do so registry tweaks are needed: First, configure a PSDrive for HKEY_CLASSES_ROOT since this isn’t set up by default. The command for this is:
1 |
New-PSDrive HKCR Registry HKEY_CLASSES_ROOT |
Now you can navigate and edit registry keys and values in HKEY_CLASSES_ROOT just like you would in the regular HKCU and HKLM PSDrives. To configure double-clicking to launch PowerShell …