We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce18407 commit e445f74Copy full SHA for e445f74
1 file changed
NtObjectManager/NtObjectManager.psm1
@@ -1249,13 +1249,15 @@ function Format-NtToken {
1249
if ($Information) {
1250
"TOKEN INFORMATION"
1251
"-----------------"
1252
- "Type : {0}" -f $token.TokenType
+ "Type : {0}" -f $token.TokenType
1253
if ($token.TokenType -eq "Impersonation") {
1254
- "Imp Level : {0}" -f $token.ImpersonationLevel
+ "Imp Level : {0}" -f $token.ImpersonationLevel
1255
}
1256
- "ID : {0}" -f $token.Id
1257
- "Auth ID : {0}" -f $token.AuthenticationId
1258
- "Session ID: {0}" -f $token.SessionId
+ "ID : {0}" -f $token.Id
+ "Auth ID : {0}" -f $token.AuthenticationId
+ "Origin ID : {0}" -f $token.Origin
1259
+ "Modified ID: {0}" -f $token.ModifiedId
1260
+ "Session ID : {0}" -f $token.SessionId
1261
1262
1263
0 commit comments