Installing Android Studio interactively is fine when you're sitting at the machine. When you're deploying to 50 machines or building a CI image, you want a one-line silent install. Here's how winget does it.
Skip to the command
Open Terminal as Administrator and run:
winget install --id Google.AndroidStudio -e --silent --accept-package-agreements --accept-source-agreements
Android Studio: The official Integrated Development Environment (IDE) for Android app development.
Typical install time: 10–60 seconds depending on installer size.
What gets installed
| Field | Value |
|---|---|
| Package ID | Google.AndroidStudio |
| Publisher | Google LLC |
| Installer type | NSIS (Nullsoft) |
| License | Android Software Development Kit License Agreement |
| Latest version | Canary |
| Last release | 4/21/2026 |
| Minimum OS | Windows 10+ |
| Homepage | developer.android.com |
NSIS installers use a single /S flag for silent mode. Add /D=<path> (unquoted, last) for a custom install location.
Per-user install (no admin)
If you don't have admin rights, try per-user scope:
winget install --id Google.AndroidStudio -e --scope user --silent
If the manifest doesn't have a user-scope installer, winget falls back with an error — in that case you genuinely need admin or use the Access denied fix.
Specify a version
To pin a known-good version (useful for reproducible CI / team standardisation):
winget install --id Google.AndroidStudio -e --version Canary --silent
List available versions:
winget show --id Google.AndroidStudio --versions
Override silent flags
If winget's --silent doesn't fully suppress the installer's UI, pass native flags via --override:
winget install --id Google.AndroidStudio -e --override "/S"
These are the NSIS (Nullsoft)-native silent switches the installer recognises.
Verify after install
winget list --id Google.AndroidStudio
If the version is shown, the install succeeded.
Upgrade silently
winget upgrade --id Google.AndroidStudio -e --silent --accept-package-agreements --accept-source-agreements
Or upgrade as part of a bulk weekly cron — see How to update all Windows apps.
Uninstall silently
winget uninstall --id Google.AndroidStudio --silent --disable-interactivity
Detailed guide: How to uninstall Windows apps with winget.
In a provisioning script
PowerShell snippet for unattended Windows setup:
$apps = @(
"Google.AndroidStudio"
# add more packages here
)
foreach ($id in $apps) {
winget install --id $id -e --silent `
--accept-package-agreements --accept-source-agreements
}
Wrap in Task Scheduler for one-shot machine provisioning. See Fresh Windows 11 setup.
Common errors
"Android Studio is already installed" — winget detected the existing install. To force-reinstall over the existing copy:
winget install --id Google.AndroidStudio -e --silent --force
"Installer hash does not match" — Google LLC published a new version before the winget manifest updated. Wait ~24 hours or pass --force. See hash mismatch fix.
"Access denied" / 0x80070005 — run Terminal as Administrator. See Access denied fix.
0x80073D02 — package in use — Android Studio is currently running. Close it then retry. See package in use fix.
See also
- Android Studio on winget.tech → — full package details
- How to install Windows apps with winget → — beginner guide
- Winget commands cheatsheet → — complete reference
- Fresh Windows 11 setup → — full machine workflow