Skip to content

Instantly share code, notes, and snippets.

View c3rberus's full-sized avatar

c3rberus c3rberus

View GitHub Profile
@get-itips
get-itips / InterpretedUserTypes.md
Last active June 2, 2022 12:57
InterpretedUserType table

InterpretedUserType table

InterpretedUserType Possible Description
AADConnectDisabledOnlineActiveDirectoryDisabledUser
AADConnectDisabledOnlineActiveDirectoryDisabledUserPendingDeletionFromAD
AADConnectDisabledOnlineSfBUserWithTeamsLicensePendingDeletionFromAD
AADConnectDisabledOnlineTeamsUserPendingDeletionFromAD
AADConnectDisabledOnlineTeamsUser
AADConnectDisabledOnlineUserNotLicensedForServicePendingDeletionFromAD
@mbrownnycnyc
mbrownnycnyc / veryfastping.ps1
Last active November 1, 2016 01:22
test-connection got you down? ping just not cutting it for you? How about using the System.Net.NetworkInformation.Ping.send() method
# 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