Hi,
I have a strange issue , as the title says , when i issue a command on a powershell console in Windows 2016 DC like
Get-ADUser myuser -Properties *
The LockedOut property (and possible others) is not displayed , but on another windows server 2016 powershell console is displayed.
PS Z:\> Compare-Object -ReferenceObject $(get-aduser myuser -Properties *) -DifferenceObject $(Import-Clixml .\myuser.xml) -Property lockedout
lockedout SideIndicator
--------- -------------
=>
False <=
Difference Server
Name Value
---- -----
PSVersion 5.1.14393.2515
PSEdition Desktop
PSCompatibleVersions {1.0, 2.0, 3.0, 4.0...}
BuildVersion 10.0.14393.2515
CLRVersion 4.0.30319.42000
WSManStackVersion 3.0
PSRemotingProtocolVersion 2.3
SerializationVersion 1.1.0.1
Reference Server
PS Z:\> $PSVersionTable
Name Value
---- -----
PSVersion 5.1.14393.2580
PSEdition Desktop
PSCompatibleVersions {1.0, 2.0, 3.0, 4.0...}
BuildVersion 10.0.14393.2580
CLRVersion 4.0.30319.42000
WSManStackVersion 3.0
PSRemotingProtocolVersion 2.3
SerializationVersion 1.1.0.1
Any ideas ?