Problem Description
On a fresh project, npx react-native init-windows --overwrite fails with:
error: unknown command 'init-windows'
The actual root cause is that react-native-windows's plugin throws at module-load time inside @react-native-windows/find-dotnet-tools when pwsh.exe is not on PATH:
Unable to find pwsh.exe. It should have been made available by `yarn install`.
The community CLI silently swallows the throw during plugin discovery, drops the command, and reports "unknown command" instead of the real error.
PowerShell 7 is not listed on the rnw-dependencies page. Windows ships only Windows PowerShell 5.1 by default, so most fresh machines fail this check.
This affects both react-native-windows@0.81.x and 0.83.x. Additionally, the 0.83.x line has a missing-dependency bug: @react-native-windows/find-dotnet-tools is not in any package's dependencies but is required at runtime. Even after installing pwsh, init-windows still fails on 0.83.x until the user runs yarn add @react-native-windows/find-dotnet-tools manually.
Steps To Reproduce
On a clean Windows 11 install without pwsh.exe on PATH:
npx --yes @react-native-community/cli@latest init Test --version 0.83-stable
cd Test && yarn add react-native-windows@^0.83.0
npx react-native init-windows --overwrite
Result: error: unknown command 'init-windows'
To see the real underlying error, run:
node -e "require('react-native-windows/react-native.config.js')"
`Unable to find pwsh.exe. It should have been made available by yarn install.`
Expected Results
Either:
init-windows plugin discovery is resilient to missing pwsh: defer the pwsh check until the command actually runs, so the user sees a clear "install PowerShell 7" message instead of "unknown command".
- PowerShell 7 is documented as a prerequisite on the rnw-dependencies page, so users install it before reaching this step.
@react-native-windows/find-dotnet-tools is added to react-native-windows's (or @react-native-windows/cli's) dependencies so it's installed transitively rather than left as a manual yarn add.
Ideally all three.
CLI version
20.0.0
Environment
System:
OS: Windows 11 10.0.26200
CPU: (20) x64 13th Gen Intel(R) Core(TM) i9-13900H
Memory: 39.55 GB / 63.45 GB
Binaries:
Node:
version: 22.23.0
path: C:\Program Files\nodejs\node.EXE
Yarn:
version: 1.22.22
path: C:\Program Files\nodejs\yarn.CMD
npm:
version: 10.9.8
path: C:\Program Files\nodejs\npm.CMD
Watchman: Not Found
SDKs:
Android SDK: Not Found
Windows SDK:
AllowDevelopmentWithoutDevLicense: Enabled
AllowAllTrustedApps: Enabled
Versions:
- 10.0.19041.0
- 10.0.22621.0
- 10.0.26100.0
IDEs:
Android Studio: AI-243.24978.46.2431.13363775
Visual Studio:
- 17.14.36401.2 (Visual Studio Enterprise 2022)
Languages:
Java:
version: 17.0.13
path: C:\Program Files\Eclipse Adoptium\jdk-17.0.13.11-hotspot\bin\javac.EXE
Ruby: Not Found
npmPackages:
"@react-native-community/cli":
installed: 20.0.0
wanted: 20.0.0
react:
installed: 19.1.4
wanted: 19.1.4
react-native:
installed: 0.81.6
wanted: 0.81.6
react-native-windows:
installed: 0.81.29
wanted: ~0.81.6
npmGlobalPackages:
"*react-native*": Not Found
Android:
hermesEnabled: true
newArchEnabled: true
iOS:
hermesEnabled: Not found
newArchEnabled: Not found
Community Modules
None
Target React Native Architecture
Old Architecture (UWP) Only
Target Platform Version
10.0.22621
Visual Studio Version
None
Build Configuration
None
Snack, code example, screenshot, or link to a repository
No response
Problem Description
On a fresh project,
npx react-native init-windows --overwritefails with:The actual root cause is that
react-native-windows's plugin throws at module-load time inside@react-native-windows/find-dotnet-toolswhenpwsh.exeis not on PATH:The community CLI silently swallows the throw during plugin discovery, drops the command, and reports "unknown command" instead of the real error.
PowerShell 7 is not listed on the rnw-dependencies page. Windows ships only Windows PowerShell 5.1 by default, so most fresh machines fail this check.
This affects both
react-native-windows@0.81.xand0.83.x. Additionally, the 0.83.x line has a missing-dependency bug:@react-native-windows/find-dotnet-toolsis not in any package'sdependenciesbut is required at runtime. Even after installing pwsh,init-windowsstill fails on 0.83.x until the user runsyarn add @react-native-windows/find-dotnet-toolsmanually.Steps To Reproduce
On a clean Windows 11 install without
pwsh.exeon PATH:npx --yes @react-native-community/cli@latest init Test --version 0.83-stablecd Test && yarn add react-native-windows@^0.83.0npx react-native init-windows --overwriteResult:
error: unknown command 'init-windows'To see the real underlying error, run:
Expected Results
Either:
init-windowsplugin discovery is resilient to missing pwsh: defer the pwsh check until the command actually runs, so the user sees a clear "install PowerShell 7" message instead of "unknown command".@react-native-windows/find-dotnet-toolsis added toreact-native-windows's (or@react-native-windows/cli's)dependenciesso it's installed transitively rather than left as a manualyarn add.Ideally all three.
CLI version
20.0.0
Environment
System: OS: Windows 11 10.0.26200 CPU: (20) x64 13th Gen Intel(R) Core(TM) i9-13900H Memory: 39.55 GB / 63.45 GB Binaries: Node: version: 22.23.0 path: C:\Program Files\nodejs\node.EXE Yarn: version: 1.22.22 path: C:\Program Files\nodejs\yarn.CMD npm: version: 10.9.8 path: C:\Program Files\nodejs\npm.CMD Watchman: Not Found SDKs: Android SDK: Not Found Windows SDK: AllowDevelopmentWithoutDevLicense: Enabled AllowAllTrustedApps: Enabled Versions: - 10.0.19041.0 - 10.0.22621.0 - 10.0.26100.0 IDEs: Android Studio: AI-243.24978.46.2431.13363775 Visual Studio: - 17.14.36401.2 (Visual Studio Enterprise 2022) Languages: Java: version: 17.0.13 path: C:\Program Files\Eclipse Adoptium\jdk-17.0.13.11-hotspot\bin\javac.EXE Ruby: Not Found npmPackages: "@react-native-community/cli": installed: 20.0.0 wanted: 20.0.0 react: installed: 19.1.4 wanted: 19.1.4 react-native: installed: 0.81.6 wanted: 0.81.6 react-native-windows: installed: 0.81.29 wanted: ~0.81.6 npmGlobalPackages: "*react-native*": Not Found Android: hermesEnabled: true newArchEnabled: true iOS: hermesEnabled: Not found newArchEnabled: Not foundCommunity Modules
None
Target React Native Architecture
Old Architecture (UWP) Only
Target Platform Version
10.0.22621
Visual Studio Version
None
Build Configuration
None
Snack, code example, screenshot, or link to a repository
No response