Mit dem folgenden Code erhalte ich das aufgefüllte Name
& LastLogon
, aber nicht das ProfilePath
.
Add-RegKeyMember
Isthttps://gallery.technet.microsoft.com/scriptcenter/Get-Last-Write-Time-and-06dcf3fb.
ProfileImagePath
Ich habe versucht, mit $Profile.Properties.ProfileImagePath
, , und anderen darauf zuzugreifen $Profile.Name.ProfileImagePath
, aber sie geben alle leer zurück (könnten null sein). Wie um Himmels Willen stellt dieses scheinbare Objekt diese Eigenschaften zur Verfügung?
$Profiles = get-childitem "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList" | Add-RegKeyMember
foreach($Profile in $Profiles)
{
$ThisProfileInfo = @{Name=$Profile.Name;
LastLogon=$Profile.LastWriteTime;
ProfilePath=$Profile.ProfileImagePath}
$Profile
}
Name Property
---- --------
S-1-5-18 Flags : 12
ProfileImagePath : C:\WINDOWS\system32\config\systemprofile
RefCount : 1
Sid : {1, 1, 0, 0...}
State : 0
Antwort1
Schauen Sie sich anArbeiten mit Registrierungseinträgenfür weitere Details, aber dieWin32.RegistryKey
Der Typ enthält nicht alle Daten für die Werte in diesem Schlüssel, sondern nur die "Eigentum"NoatePropertydas die Wertenamen auflistet.
$ProfilePath = 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList'
$Profiles = Get-ChildItem $PRofilePath
$Profiles | Get-Member -MemberType NoteProperty
TypeName: Microsoft.Win32.RegistryKey
Name MemberType Definition
---- ---------- ----------
Property NoteProperty string[] Property=System.String[]
PSChildName NoteProperty string PSChildName=S-1-5-18
...
Um Schlüsseleinträge und deren Werte anzuzeigen, können Sie verwendenGet-ItemProperty
:
$Profiles | Get-ItemProperty | select * -Exclude PS*
Flags : 12
ProfileImagePath : C:\WINDOWS\system32\config\systemprofile
RefCount : 1
Sid : {1, 1, 0, 0...}
State : 0
Flags : 0
ProfileImagePath : C:\WINDOWS\ServiceProfiles\LocalService
State : 0
Flags : 0
ProfileImagePath : C:\WINDOWS\ServiceProfiles\NetworkService
State : 0
ProfileImagePath : C:\Users\keith
Flags : 0
State : 0
Sid : {1, 5, 0, 0...}
FullProfile : 1
Migrated : {96, 248, 201, 91...}
LocalProfileLoadTimeLow : 3360357489
LocalProfileLoadTimeHigh : 30847106
ProfileAttemptedProfileDownloadTimeLow : 0
ProfileAttemptedProfileDownloadTimeHigh : 0
ProfileLoadTimeLow : 0
ProfileLoadTimeHigh : 0
RunLogonScriptSync : 0
LocalProfileUnloadTimeLow : 1652511590
LocalProfileUnloadTimeHigh : 30847106
ProfileImagePath : C:\Users\LongUserName
Flags : 0
State : 4
Sid : {1, 5, 0, 0...}
FullProfile : 1
Migrated : {144, 179, 238, 90...}
ProfileImagePath : C:\Users\Administrator
Flags : 0
State : 4
Sid : {1, 5, 0, 0...}
FullProfile : 1
Migrated : {96, 87, 195, 93...}
Eine alternative Möglichkeit, auf die Daten zuzugreifen, und in Ihrem Fall wahrscheinlich die bessere Wahl, ist dieRegistryKey.GetValue()
Methode derWin32.RegistryKey
. Ihr Code würde also lauten:
...
foreach($Profile in $Profiles)
{
$ThisProfileInfo = @{
Name = $Profile.Name
LastLogon = $Profile.LastWriteTime
ProfilePath = $Profile.GetValue('ProfileImagePath')
}
$Profile
}
...
Außerdem erhalten Sie dieLastWriteTime
eines Registrierungsschlüssels und der anschließende NameLastLogon
. Ich denke, das ist eine fehlerhafte Logik.