diff --git a/docs/docs/guides/02-installation/02-windows.md b/docs/docs/guides/02-installation/02-windows.md index cfaee1f5b..7bf3cb0e9 100644 --- a/docs/docs/guides/02-installation/02-windows.md +++ b/docs/docs/guides/02-installation/02-windows.md @@ -57,7 +57,8 @@ To remove all user data associated with Jan, you can delete the `/Jan` directory ```shell # Jan's User Data directory -%AppData%\Jan +cd C:\Users\%USERNAME%\AppData\Roaming +rmdir /S Jan ``` ## Troubleshooting diff --git a/docs/docs/guides/07-troubleshooting/01-stuck-on-broken-build.mdx b/docs/docs/guides/07-troubleshooting/01-stuck-on-broken-build.mdx index 2b65dc440..1eb60c7bd 100644 --- a/docs/docs/guides/07-troubleshooting/01-stuck-on-broken-build.mdx +++ b/docs/docs/guides/07-troubleshooting/01-stuck-on-broken-build.mdx @@ -70,7 +70,7 @@ The following steps will help you troubleshoot and resolve issues related to bro ```bash # You can delete the `/Jan` directory in Windows's AppData Directory by visiting the following path `%APPDATA%\Jan` cd C:\Users\%USERNAME%\AppData\Roaming - rm -rf ./Jan + rmdir /S Jan ```