所以我目前有返回公司 ADUsers 的代码。我想缩小它带来的结果,只显示用户而不是它返回的其他结果。
我有以下代码
Import-Module ActiveDirectory
$fmtADUser =
@{Expression={$_.Name};Label="Name";Width=25},
@{Expression={$_.UserPrincipalName};Label="User Principal Name";Width=30},
@{Expression={$_.Created};Label="Created On";Width=30},
@{Expression={$_.lastLogonDate};Label="Last Logged On Date";Width=30}
$host.UI.RawUI.BufferSize = New-Object System.Management.Automation.Host.Size(160,5000)
Get-ADUser -Filter * -Properties * | Format-Table -Property $fmtADUser