InterpretedUserType | Possible Description |
---|---|
AADConnectDisabledOnlineActiveDirectoryDisabledUser | |
AADConnectDisabledOnlineActiveDirectoryDisabledUserPendingDeletionFromAD | |
AADConnectDisabledOnlineSfBUserWithTeamsLicensePendingDeletionFromAD | |
AADConnectDisabledOnlineTeamsUserPendingDeletionFromAD | |
AADConnectDisabledOnlineTeamsUser | |
AADConnectDisabledOnlineUserNotLicensedForServicePendingDeletionFromAD |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# with reference to http://theadminguy.com/2009/04/30/portscan-with-powershell/ | |
function fastping{ | |
[CmdletBinding()] | |
param( | |
[String]$computername = "127.0.0.1", | |
[int]$delay = 100 | |
) | |
$ping = new-object System.Net.NetworkInformation.Ping | |
# see http://msdn.microsoft.com/en-us/library/system.net.networkinformation.ipstatus%28v=vs.110%29.aspx |