From fb7e39da7643aa6903ea347104ef5dc1438f733c Mon Sep 17 00:00:00 2001 From: Brock Walters <153771548+nonpunctual@users.noreply.github.com> Date: Wed, 12 Jun 2024 15:03:16 -0400 Subject: [PATCH] Update pipes.yml (#19685) Added PowerShell link & updated PowerShell command to include prompt in example. --- schema/tables/pipes.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/schema/tables/pipes.yml b/schema/tables/pipes.yml index 66d2c0e999..b6865ef92e 100644 --- a/schema/tables/pipes.yml +++ b/schema/tables/pipes.yml @@ -11,9 +11,10 @@ notes: |- # (optional) string - Notes about this table. Note: This field support Running the following command at a prompt in PowerShell lists the named pipes currently open on a Windows computer: ``` - get-childitem \\.\pipe\ + PS C:\Windows\System32> get-childitem \\.\pipe\ ``` Links: - Microsoft documentation on [named pipes](https://learn.microsoft.com/en-us/windows/win32/ipc/named-pipes) - - Discover files linked to processes with Windows [Process Explorer](https://learn.microsoft.com/en-us/sysinternals/downloads/process-explorer) \ No newline at end of file + - Discover files linked to processes with Windows [Process Explorer](https://learn.microsoft.com/en-us/sysinternals/downloads/process-explorer) + - Windows [PowerShell](https://learn.microsoft.com/en-us/powershell/scripting/overview?view=powershell-7.4)