Install Husk.
Husk ships as a single portable zip. There is no installer to run, nothing to grant administrator rights to, and nothing permanent gets written outside the folder you extract.
Requirements
- Windows 10 (21H1 or newer) or Windows 11.
- WebView2 Runtime. Bundled with Windows 11 and with recent Windows 10. If yours is older, install the Evergreen Runtime from Microsoft.
- ~10 MB of disk space.
1 · Download
Grab the latest portable build:
- husk.run/dl/portable — redirects to the zip on the current GitHub Release.
- Or browse all releases at github.com/runhusk/husk/releases.
2 · Verify the SHA-256
Privacy tool — verify the binary. Open PowerShell in the folder where you downloaded the zip, then:
Get-FileHash .\Husk-Portable-0.1.0.zip -Algorithm SHA256 Compare the output to the SHA-256 listed on the Download page and the GitHub Release page. The two should match. If they don't:
If you'd rather inspect just the executable, the zip also
publishes a husk.exe hash separately. Same flow,
same comparison.
3 · Extract and run
- Right-click the zip → Extract All...
-
Open the extracted folder. You should see two files:
husk.exeandhusk.portable. - Double-click
husk.exe.
On first launch you'll see the default profile. Press
Ctrl + T for a new tab, or click the avatar in
the top-left to create an encrypted profile.
What ends up on disk
The husk.portable marker beside husk.exe
tells Husk to run in portable mode. Every byte
of state — profiles, history, bookmarks, vault, the WebView2
cache — lives in a HuskData/ folder next to the
binary. Nothing is written to %APPDATA%, nothing
to the registry, no Start menu entry.
YourFolder/
├── husk.exe
├── husk.portable ← marker (empty file, 0 bytes)
└── HuskData/ ← created on first run
├── default/ ← the unencrypted default profile
├── profiles/ ← encrypted profile blobs
├── webview2/ ← WebView2 user-data cache
└── settings.json Non-portable mode
If you delete the husk.portable marker, Husk
switches to writing in %APPDATA%\Husk\ instead.
Same binary, different storage root. Useful if you want
Husk's data to follow your Windows user account rather than
a specific folder.
Pinning to taskbar
There is no installer and no Start menu entry — by design. If you want one-click relaunch:
- Launch
husk.exe. - Right-click the Husk icon in the taskbar → Pin to taskbar.
That pin is the one breadcrumb Husk leaves on the host machine — and it's the one you explicitly asked for.
Updating
Updates are manual on v0.1: download the new zip, extract it
over the existing folder (or anywhere else), keep the same
HuskData/ if you want your profiles to follow.
Auto-update is targeted for v0.2 and will be opt-in.