adk-docs icon indicating copy to clipboard operation
adk-docs copied to clipboard

PowerShell and Command Prompt handle single quotes differently

Open doggy8088 opened this issue 3 weeks ago • 0 comments

Describe the bug

In this page: https://google.github.io/adk-docs/get-started/go/#windows_1

The Windows command line below is a little bit ambiguous:

echo 'set GOOGLE_API_KEY="YOUR_API_KEY"' > env.bat

In PowerShell/pwsh, the command above is correct. But in Command Prompt, the correct command should be:

echo set GOOGLE_API_KEY="YOUR_API_KEY" > env.bat

I suggest the tab name should change to "Windows PowerShell" or "pwsh".

Screenshots

Image

Versions

  • OS: Windows
  • ADK version: Not relevant.
  • Python version: Not relevant.

Additional context

It's a doc issue.

doggy8088 avatar Nov 09 '25 07:11 doggy8088