### What? On windows, the `payload-graphql generate:schema` command fails. ### Why? Because the config it's trying to load is `c:\path\to\config.js`, which node interprets as `\path\to\config.js` on the `c:` protocol. ### How? By changing it to use a file URL, as in `file:\\\c:\path\to\config.js`. The change is the same as what the main `payload` cli does: https://github.com/payloadcms/payload/blob/main/packages/payload/src/bin/index.ts#L54 Fixes #9309 Co-authored-by: Violet Rosenzweig <rosenzweigv@leoncountyfl.gov>