From 2e84246ad540bff5ea806425c3bfbdbfdca39f0c Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Sat, 13 Sep 2025 17:25:43 +0200 Subject: [PATCH] Update docs for most recent Windows version In more recent Windows 11 versions (not sure about Windows 10), Windows now ships its own `curl.exe`, so PowerShell's "curl"-alias no longer exists. Changes made in this commit will replace the `curl` alias call with the actual `Invoke-WebRequest` function. Signed-off-by: Manuel Thalmann --- docs/tutorials/podman-for-windows.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/tutorials/podman-for-windows.md b/docs/tutorials/podman-for-windows.md index 00e0994f75..47d53d214a 100644 --- a/docs/tutorials/podman-for-windows.md +++ b/docs/tutorials/podman-for-windows.md @@ -144,11 +144,12 @@ A curl command against localhost on the PowerShell prompt will return a successful HTTP response: ``` -PS C:\Users\User> curl http://localhost:8080/ -UseBasicParsing +PS C:\Users\User> Invoke-WebRequest -UseBasicParsing http://localhost:8080/ -StatusCode : 200 +StatusCode : 200 StatusDescription : OK -Content :

It works!

+Content :

It works!

+[...] ``` As with Linux, to stop, run: