Becausse we have datalimits. I wished to have xrumer / hrefer running on more than one computer (not at the same time).
But the same version of hrefer for example. With this method, you can continue your building on a other computer.
Thougt I ask at alex how to do this. But he said it was impossible.
It is impossible...
But If you use some little, but simple trick, you can do the magic with a batch file.
The thing I do is to place two licences in my folder and copy the license depending on wich computer I am.
for example
computer_at_home.lic
computer_at_work.lic
Don't forget to rename your existing key.lic.
Becausse it will be overwritten !
This share is to gain some REP, and giving something back to the forum here. I can not share much at the moment. But it's a good start to someone who has the same problems that I have.
Hitting the thanks button will not harm you !
Use this script place the script in your hrefer folder and name it start.bat
You can easely tweak the script to use it for xrumer itself, or for other programs where the license is made with your computer name.
But the same version of hrefer for example. With this method, you can continue your building on a other computer.
Thougt I ask at alex how to do this. But he said it was impossible.
It is impossible...
But If you use some little, but simple trick, you can do the magic with a batch file.
The thing I do is to place two licences in my folder and copy the license depending on wich computer I am.
for example
computer_at_home.lic
computer_at_work.lic
Don't forget to rename your existing key.lic.
Becausse it will be overwritten !
This share is to gain some REP, and giving something back to the forum here. I can not share much at the moment. But it's a good start to someone who has the same problems that I have.
Hitting the thanks button will not harm you !
Use this script place the script in your hrefer folder and name it start.bat
You can easely tweak the script to use it for xrumer itself, or for other programs where the license is made with your computer name.
Code:
@ECHO off
cls
:start
ECHO Start up Hreferer from your USB Stick
ECHO .
ECHO .
ECHO 1. Startup from Home computer
ECHO 2. Startup from Computer at work
set choice=
set /p choice=Type the number to start up Hrefer.
if not '%choice%'=='' set choice=%choice:~0,1%
if '%choice%'=='1' goto choice1
if '%choice%'=='2' goto choice2
ECHO "%choice%" is not valid please try again
ECHO .
goto start
:choice1
COPY key_comp1.lic key.lic >nul
goto end
:choice2
COPY key_comp2.lic key.lic >nul
goto end
:end
ECHO .
echo Your license is copyed. Now starting up hreferer
echo Hit a key to start the program
ECHO .
pause
start hrefer.exe
exit