We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03c433a commit f066d7aCopy full SHA for f066d7a
src/content/docs/cloudflare-one/identity/devices/warp-client-checks/application-check.mdx
@@ -134,3 +134,13 @@ ps -eo pid | awk '{print "/proc/"$1"/exe"}' | xargs readlink -f | awk '{print $1
134
```
135
136
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