[OT] XXCopy problem
Moderators: Hacker, petermad, Stefan2, white
[OT] XXCopy problem
This software (Freeware) expires between 60 days & 1 year after installation (this way author forces XXCopy users to upgrade to last released version from time to time).
I want to install it on several friends of mine computers (newbies), to automate their backups using batch files. I'd like to avoid anytype of problem on their computers (like a XXCopy message saying that has expired).
Is there anytype of trick to avoid XXCopy expiration ?, thanks.
When i say Freeware i mean Freeware.Horst.Epp wrote: Use the real freeware version
What i'm trying to avoid are XXCopy warn messages, that newbies that don't speak english will not understand. I know Robocopy very well but all my Batch files use XXCopy. Bye.Kan Yabumoto (XXCopy Author) wrote :
If you use the freeware version, it has a mechanism to warn
the user that a new version may be available at our web site
(I believe it should happen only once in 60 days if I remember
correctly).
The motivation for this is not to harass the user but our desire to discourage users from staying with a very old version .
We constantly update XXCOPY versions so that bugs are fixed and the behaviors adjusted to the more common Windows environments (which constantly evolve).
Translate (wild)
2sas2000
Hello !
• I don't use that soft, but I get your point alright.
• Since the programme is not localizable - it seems, according to that you tell - personally I would attempt to translate it, at least this annoying and incomprehensible message for your friends, if possible and in a “wild” way…
KR
Claude
Clo

• I don't use that soft, but I get your point alright.
• Since the programme is not localizable - it seems, according to that you tell - personally I would attempt to translate it, at least this annoying and incomprehensible message for your friends, if possible and in a “wild” way…


Claude
Clo
#31505 Traducteur Français de T•C French translator Aide en Français Tutoriels Français English Tutorials
Re: Translate (wild)
Hi CloClo wrote: if possible and in a “wild” way…![]()

- majkinetor !
- Power Member
- Posts: 1580
- Joined: 2006-01-18, 07:56 UTC
- Contact:
I also switched to Robocopy.
There are some nice GUIs for it.
http://www.sh-soft.com/front_content.php?idcatart=156
http://www.wintotal.de/softw/index.php?rb=43&id=2339
Stitscher
There are some nice GUIs for it.
http://www.sh-soft.com/front_content.php?idcatart=156
http://www.wintotal.de/softw/index.php?rb=43&id=2339
Stitscher
- majkinetor !
- Power Member
- Posts: 1580
- Joined: 2006-01-18, 07:56 UTC
- Contact:
@icfu
I want to desable all messages not related to acctual operation I want to do, like reminders, tips, credits and whatever it has....
I also would like to desable first time message witch types slowely over console simulating typewritter effect, as I want to use XXCopy as portabile console tool, and the last thing I want is to see this on every computer I run it.
I want to desable all messages not related to acctual operation I want to do, like reminders, tips, credits and whatever it has....
I also would like to desable first time message witch types slowely over console simulating typewritter effect, as I want to use XXCopy as portabile console tool, and the last thing I want is to see this on every computer I run it.
Habemus majkam!
That's the terrible one..., it starts to appear between 60 days & 1 year after installation (each time that you run XXCopy) and simulates twice a slow typewritter effect.majkinetor ! wrote: I also would like to desable first time message witch types slowely over console simulating typewritter effect
================================================
You have been using the XXCOPY Freeware Version for more than X days.
Since XXCOPY is a constantly evolving product, you should check the
XXCOPY home page every now and then and download the latest version.
http://www.xxcopy.com
You may use the XXCOPY Freeware for your personal use, free of charge,
1. if you install the XXCOPY program on a computer that is your own
personal property and you are the primary user of the computer,
2. if you transfer files between networked computers using XXCOPY,
all of the computers are also your own personal property.
If your usage of XXCOPY does not qualify for the Freeware license,
please acquire a valid license for the use of the XXCOPY product.
================================================
================================================
You have been using the XXCOPY Freeware Version for more than X days.
Since XXCOPY is a constantly evolving product, you should check the
XXCOPY home page every now and then and download the latest version.
http://www.xxcopy.com
You may use the XXCOPY Freeware for your personal use, free of charge,
1. if you install the XXCOPY program on a computer that is your own
personal property and you are the primary user of the computer,
2. if you transfer files between networked computers using XXCOPY,
all of the computers are also your own personal property.
If your usage of XXCOPY does not qualify for the Freeware license,
please acquire a valid license for the use of the XXCOPY product.
================================================
And if you use Batch files that run XXCopy 40 or 50 times...



IMHO the best solution could be to be able to change XXCopy installation date value, so that the trick could be used on future versions.
You might want to poke around in
Code: Select all
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\vwintab.exe.
- majkinetor !
- Power Member
- Posts: 1580
- Joined: 2006-01-18, 07:56 UTC
- Contact:
?You might want to poke around in
2sas
The best would be to contatct the authors and suggest removal of such annoying messages, or quit using it. There is always solution to crack the damn thing though...
It is not so good solution as date is important part of all operations in OS. But sometimes you have to do it this way. Sometimes it is enough to just change the system date, but sometimes it requires detecting the installation cookie witch recorded the date. In first case, I use this batch script (I can not test now if XXCOPY fall into this category as I deleted damn thing as soon as I saw typewritting)IMHO the best solution could be to be able to change XXCopy installation date value, so that the trick could be used on future versions.
Code: Select all
;GuiBox /H0 - hide console window
setlocal ENABLEEXTENSIONS
::******************************************************************
:: PURPOSE: Change date, run application, return date.
::
:: ARGS: %1 date; %2 application path;
::
::
:: NOTE: For evaluation programs.
:: EXAMPLE: SetDate 24.04.2005 "c:\program files\evapp.exe"
::
::
:: Created by Miodrag M Milic on Win XP SP1 [05]
::******************************************************************
set APP=%2
set NEWDATE=%1
set OLDDATE=%DATE:~4%
date %NEWDATE%
%APP%
date %OLDDATE%
exit
Habemus majkam!
- majkinetor !
- Power Member
- Posts: 1580
- Joined: 2006-01-18, 07:56 UTC
- Contact: