Admin-UserLookup.psd1
|
@{ RootModule = 'Admin-UserLookup.psm1' ModuleVersion = '1.0.0' GUID = 'e5f6a7b8-2c13-4e9f-d0a1-6c7d8e9f0a12' Author = 'Larry Roberts, Independent Consultant' CompanyName = 'Independent' Copyright = '(c) 2026 Larry Roberts. All rights reserved.' Description = 'Universal user lookup for enterprise admins. One command to see AD, M365, Intune, and sign-in data for any user.' PowerShellVersion = '5.1' FunctionsToExport = @( 'Get-UserEverything' 'Get-UserADDetails' 'Get-UserM365Details' 'Get-UserDevices' 'Get-UserSignInHistory' ) CmdletsToExport = @() VariablesToExport = @() AliasesToExport = @() PrivateData = @{ PSData = @{ Tags = @('User', 'Lookup', 'ActiveDirectory', 'M365', 'Intune', 'Identity', 'Admin', 'MFA') LicenseUri = 'https://github.com/larro1991/Admin-UserLookup/blob/master/LICENSE' ProjectUri = 'https://github.com/larro1991/Admin-UserLookup' ReleaseNotes = 'Initial release - Universal user lookup combining AD, M365, Intune, and sign-in data.' } } } |