CryptSync icon indicating copy to clipboard operation
CryptSync copied to clipboard

Feature Request: Provide as a Zip file or Portable Application

Open mva1985 opened this issue 7 years ago • 10 comments

Instead of installing to my system it would be nice to just be able to unzip and go

mva1985 avatar Nov 29 '18 21:11 mva1985

@PortableApps has GrepWin in their suite.

Could you work with them to offer BowPad and CryptSync?

RoyiAvital avatar Jan 04 '19 13:01 RoyiAvital

This is a must for me. At work I don't have admin privileges but still want to decrypt a Dropbox folder

KuleRucket avatar Jun 04 '19 08:06 KuleRucket

I'm guessing that this is never going to get implemented. If anyone knows a good alternative that is portable, please message me.

KuleRucket avatar Dec 05 '19 11:12 KuleRucket

@luketucker I have used this to successfully extract many different programs from their install files... you may want to give it a try to do it with CryptSync

https://github.com/Bioruebe/UniExtract2

mva1985 avatar Dec 05 '19 22:12 mva1985

You can extract the executables from the .msi installer simply using 7-Zip. And they should work without admin privileges.

However, it won't be truly portable, because CryptSync saves config info (including passwords) in the registry.

cfbao avatar Dec 06 '19 02:12 cfbao

@cfbao , Could it be configured to use the local folder instead of the registry for Passwords? Could it work in a mode it doesn't save password but ask them per session?

RoyiAvital avatar Dec 06 '19 04:12 RoyiAvital

@RoyiAvital If by "configure" you mean without changing the current source code/executables, then no.

cfbao avatar Dec 06 '19 05:12 cfbao

Well, extracting from the msi file and running with /tray option works pretty well. There are some niggles but it's good enough. Thanks.

KuleRucket avatar Dec 06 '19 07:12 KuleRucket

...just extract (or install) the msi anywhere (like a test-VM), then a) create a file "_RunMe.bat" in the CryptSync folder b) put

  • CryptSync.exe
  • gpg.exe
  • iconv.dll
  • _RunMe.bat in a *.zip and you're good to go.

Run _RunMe.bat to start CryptSync. You'll have to manually configure CryptSync each run (not even importing a saved config (*.reg) does work, see #35 )

Unfortunately CryptSync stores its config in the registry, so you need to clean up after you're done (which is why you start CryptSync using _RunMe.bat).

HTH!

_RunMe.bat:

@echo off
CryptSync.exe
echo.
echo.
echo.
echo Press CTRL-C (break) to keep CryptSyncs config
echo.
echo or 
echo.
pause
reg delete HKCU\Software\CryptSync /f

ghrasc avatar Sep 22 '21 11:09 ghrasc

FWIW: Dunno about its practical use for a portable solution (make sure to encrypt the *.bin files when using that method!) but have a look at https://github.com/stefankueng/CryptSync/issues/35#issuecomment-925509019 for my solution to save/restore CryptSyncs config. Takes me ~1 minute to restore my config that way.

P.S. Make sure to delete the config after finising ;)

ghrasc avatar Sep 23 '21 05:09 ghrasc