Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

One-liner install for sendme with PowerShell #84

Open
neuralpain opened this issue Mar 14, 2025 · 0 comments
Open

One-liner install for sendme with PowerShell #84

neuralpain opened this issue Mar 14, 2025 · 0 comments

Comments

@neuralpain
Copy link

This is a one-liner command I created to install sendme on Windows when I found out Windows was marked as unsupported in the official sendme.sh install script. Just thought I'd share for those who may be interested.

iwr -Uri ($(irm -Uri "https://api.github.com/repos/n0-computer/sendme/releases/latest").assets | where {$_.name -like "*windows-x86_64*"} | Select-Object -ExpandProperty browser_download_url) -OutFile "$env:TEMP\sendme.zip"; Expand-Archive -Path "$env:TEMP\sendme.zip" -DestinationPath "C:\Windows\" -Force

Generally, the install path would be set to C:\Windows\ by default (since it's already on PATH) so that you would be able to access sendme from the command-line. Alternatively, users can create a different folder, for example: C:\path\to\sendme\ and add that to their system's PATH variable to access sendme from the command-line.

If this is useful, maybe it can be added to the documentation in some way.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Status: No status
Development

No branches or pull requests

1 participant