How to Use Claude on Windows 11 | Web, Desktop & Code: Which to Choose

When you want to use Claude on Windows 11, the first thing that trips people up is figuring out what to download. Claude actually offers three access methods: a web browser version, a desktop app, and a command-line version (Code) — and the best choice depends on how you plan to use it. This article draws on official Anthropic information to walk you through getting started with Claude on Windows 11 and help you decide which of the three methods suits you best, all in one page.

Article Summary by AI Chatpowered by Claude
結論powered by Claude

There are three main ways to use Claude on Windows 11: ① the web browser version, ② the Claude Desktop app, and ③ Claude Code (CLI). If you want to start right away with no installation, go with the web version. If you plan to use Claude daily for writing or research, the Desktop app is the way to go. And if your goal is code generation or development work, Claude Code is the right pick.

The Desktop app (available at https://claude.com/download) is a native Windows app supporting both x64 and ARM64, integrating chat, Claude Cowork, and Claude Code in one place — and it installs without administrator privileges. Claude Code can be installed from PowerShell with a single line: irm https://claude.ai/install.ps1 | iex, and it runs on Windows 10 version 1809 or later (all Windows 11 versions supported). Note that Claude Code requires a Pro plan or higher — the Free plan will be rejected at authentication.

One Windows 11-specific consideration: on Copilot+ PCs with Snapdragon processors, selecting the ARM64 version for both the Desktop app and Claude Code will give you the best performance. If OneDrive is enabled, path redirection can cause issues with Claude Code's configuration files, so use Resolve-Path to confirm the actual path before entering it.

目次 (22)

Three Ways to Use Claude on Windows 11

Claude is available on Windows 11 through the following three methods.

Method Name Installation Best For
Claude Web Not required People who want to try it immediately
Claude Desktop App Required (GUI) People who chat or write daily
Claude Code (CLI) Required (terminal) Developers and programmers

If you're not sure which to pick, the fastest path is to try the web version first, then move to the Desktop app once you find yourself using it regularly.

Method ①: Use Claude in a Web Browser (claude.ai)

The easiest option is to open the official Claude site, claude.ai, in your browser. It works with Microsoft Edge (built into Windows 11), as well as Chrome and Firefox. Just create an account (using an email address or a Google/Apple account) and you can start using the free plan right away.

What You Can Do with the Web Version

  • Text chat (questions, writing, translation, summarization, and more)
  • File uploads and analysis (PDFs, images, text files)
  • Projects feature (organize multiple conversations into folders)
  • Web search (available on paid plans)

Web Version Limitations

  • No direct access to local files: If you need to continuously reference folders on your PC, you'll need the Desktop app
  • No offline use: A constant internet connection is required
  • Free plan has a message limit: A paid plan is recommended for heavy use

Source: https://claude.ai

Method ②: Install the Claude Desktop App

Claude Desktop is a native Windows app that combines Chat, Claude Cowork, and Claude Code in a single application. The biggest advantage over the web version is the ability to launch it quickly from the taskbar or Start menu without opening a browser, and it also allows expanded access to local files and tools.

Installation Steps

  1. Open https://claude.com/download in your browser
  2. Click "Download for Windows" to download the installer (.exe)
    • If your PC uses ARM64 (Surface Pro 11, Copilot+ PCs, etc.), select "Windows (arm64)"
  3. Double-click the downloaded .exe to run it
  4. Follow the installation wizard to completion (no administrator privileges required)
  5. Launch "Claude" from the Start menu and sign in to your account

What You Can Do with the Desktop App (After the April 2026 Overhaul)

Anthropic significantly revamped the Desktop app in April 2026. Here are the five key features:

  1. Multiple parallel sessions — Run multiple conversations simultaneously and switch between them in tabs
  2. Integrated terminal — Execute commands directly while writing code
  3. Diff editor — Visually review code changes
  4. App preview — Preview generated HTML and React apps on the spot
  5. Side chat — A sub-window for asking separate questions alongside your main task

For more details, see Claude Desktop App | How to Use Its 5 Features and Pitfalls to Avoid.

System Requirements

The Desktop app works on all Windows 11 editions (Home, Pro, Education). It supports both x64 and ARM64 architectures, and runs on Copilot+ PCs without any additional configuration. For specific system requirements, refer to the Help Center link on the download page (source).

Method ③: Install Claude Code on Windows 11

Claude Code is a developer-focused tool operated from the terminal (command line). Its strength is the ability to handle file reading and writing, code generation, test execution, and Git operations all within a single session — making it well suited for ongoing project work.

System Requirements

According to the official Anthropic documentation (https://code.claude.com/docs/ja/setup), the requirements are as follows:

  • OS: Windows 10 version 1809 or later, or Windows Server 2019 or later (all Windows 11 versions supported)
  • RAM: 4 GB or more
  • Processor: x64 or ARM64
  • Plan: Pro, Max, Team, or Enterprise (not available on the Free plan)

Installation Steps

Using PowerShell (Recommended)

Open PowerShell and run the following single line — installation will complete automatically, and auto-updates will be enabled.

irm https://claude.ai/install.ps1 | iex

Using CMD (Command Prompt)

curl -fsSL https://claude.ai/install.cmd -o install.cmd && install.cmd && del install.cmd

Using WinGet

winget install Anthropic.ClaudeCode

Note that the WinGet method does not auto-update, so run winget upgrade Anthropic.ClaudeCode periodically to stay current.

Post-Installation Verification

Once installation is complete, verify the version and run diagnostics.

claude --version
claude doctor

claude doctor checks your version, authentication status, and dependencies all at once.

How to Tell PowerShell from CMD

Before installing, confirm which terminal you are using.

  • Prompt shows PS C:\Users\YourName> → PowerShell (use the irm command)
  • Prompt shows C:\Users\YourName> → CMD (use the curl command)

Running a CMD command in PowerShell will produce an error: "&& is not a valid statement separator." When in doubt, the PowerShell version is the safest choice.

For detailed Windows configuration, also see How to Use Claude Code on Windows.

Which Method Should You Choose? — Quick Reference

What You Want to Do Recommended Method
Just want to see what Claude is like ① Web version
Use it daily for writing, translation, or research ② Desktop app
Need to continuously reference local files ② Desktop app
Main goal is code generation or programming ③ Claude Code
Want to use it from the terminal via commands ③ Claude Code
Want to use it in a WSL Linux environment ③ Claude Code (via WSL)

Since the Desktop app integrates Claude Code internally, code-related tasks can also be handled through the GUI. If you're not comfortable with the terminal, the Desktop app alone is the safest all-in-one choice.

Windows 11-Specific Considerations

Choosing ARM64 (For Copilot+ PC Users)

On PCs with Snapdragon X Elite or X Plus processors (Surface Pro 11, ASUS Vivobook S 15, etc.), selecting the ARM64 version bypasses x64 emulation and delivers faster performance.

  • Desktop app: Download the "Windows (arm64)" version from claude.com/download
  • Claude Code: The PowerShell installer automatically detects your architecture and installs the native binary

The OneDrive Path Mismatch Problem

When Windows 11 is set up with a Microsoft account, the Documents folder may be redirected to C:\Users\YourName\OneDrive\Documents. When entering folder paths in Claude Code's configuration files, don't copy paths from File Explorer — use PowerShell to get the actual path first.

Resolve-Path "$env:USERPROFILE\Documents"

For more details, see Claude Windows Path Issues | How to Locate claude and Set PATH.

Responding to Security Warnings

When running the installer, you may see a warning about an "app from an unknown publisher." Both the Desktop app and Claude Code binaries are code-signed by Anthropic, PBC, so you can safely proceed by clicking "More info" → "Run anyway." You can verify the signature in PowerShell:

Get-AuthenticodeSignature .\claude.exe

If the Status in the output shows Valid, the installer is genuine (source).

Claude Pricing and Plans

Plan Monthly Price (Reference) Desktop Chat Claude Code
Free Free Basic chat only Not available
Pro ~$20 / month All features
Max ~$100+ / month All features ○ (higher limits)
Team / Enterprise Contact for pricing All features

Claude Code requires a Pro plan or higher. If you just want to try it out, start with the Free plan on the web version, then upgrade to Pro or above when you're ready to make full use of code generation and automation.

Frequently Asked Questions (FAQ)

Q. Does support differ between Windows 11 Home and Pro? A. No. Claude Desktop and Claude Code install the same way regardless of edition (Home / Pro / Education).

Q. Is chat history shared between the Desktop app and the web version? A. Yes. Both are linked to your cloud account, so the same conversation history is displayed in both.

Q. Do I need administrator privileges to install Claude Code? A. No. It installs with standard user permissions, and is installed under %USERPROFILE%\.local\bin\.

Q. Can I install the Desktop app on the Free plan? A. Yes, you can install it. However, Claude Code features are only available on Pro or higher plans, while the chat feature is available on the Free plan as well.

Q. How do I uninstall Claude Code? A. Run the following from PowerShell:

Remove-Item -Path "$env:USERPROFILE\.local\bin\claude.exe" -Force
Remove-Item -Path "$env:USERPROFILE\.local\share\claude" -Recurse -Force

Sources

参考になったら ♡
Clauder Navi 編集部
@clauder_navi

Anthropic の Claude / Claude Code を中心に、日本のエンジニア向けに最新動向と実務 を毎日発信。 運営方針 は メディアについて をご覧ください。