Skip to content

Commit f066d7a

Browse files
[CF1] windows application check (#21378)
1 parent 03c433a commit f066d7a

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/content/docs/cloudflare-one/identity/devices/warp-client-checks/application-check.mdx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,3 +134,13 @@ ps -eo pid | awk '{print "/proc/"$1"/exe"}' | xargs readlink -f | awk '{print $1
134134
```
135135

136136
The application path must appear in the `/proc/<pid>/exe` output for the check to pass.
137+
138+
### Windows
139+
140+
To get the list of active processes, run the following command:
141+
142+
```powershell
143+
Get-Process | Select-Object ProcessName, Path | Format-Table -AutoSize
144+
```
145+
146+
The application path must appear in the output for the check to pass.

0 commit comments

Comments
 (0)