Skip to content

Instantly share code, notes, and snippets.

@janikvonrotz
Last active August 29, 2015 14:01
Show Gist options
  • Save janikvonrotz/d9db78bf1aa2af59712e to your computer and use it in GitHub Desktop.
Save janikvonrotz/d9db78bf1aa2af59712e to your computer and use it in GitHub Desktop.
Change data path for crypto wallets #PowerShell #Cryptocurrenc
New-Hardlink -LiteralPath (Get-Path "%APPDATA%\Litecoin\wallet.dat") -TargetPath "H:\SkyDrive\Shared\Data\Litecoin\wallet.dat"
New-Hardlink -LiteralPath (Get-Path "%APPDATA%\PPcoin\wallet.dat") -TargetPath "H:\SkyDrive\Shared\Data\PPcoin\wallet.dat"
New-Hardlink -LiteralPath (Get-Path "%APPDATA%\Bitcoin\wallet.dat") -TargetPath "H:\SkyDrive\Shared\Data\Bitcoin\wallet.dat"
Remove-Item -Path (Get-Path "%APPDATA%\Dogecoin\wallet.dat")
New-Hardlink -LiteralPath (Get-Path "%APPDATA%\Dogecoin\wallet.dat") -TargetPath "C:\OneDrive\Shared\Data\Dogecoin Core\wallet.dat"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment