MathGroup Archive 2013

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: RV: Version 9 Trial contaminates Version 8 running paid version

  • To: mathgroup at smc.vnet.net
  • Subject: [mg131812] Re: RV: Version 9 Trial contaminates Version 8 running paid version
  • From: John Fultz <jfultz at wolfram.com>
  • Date: Wed, 9 Oct 2013 22:09:27 -0400 (EDT)
  • Delivered-to: l-mathgroup@mail-archive0.wolfram.com
  • Delivered-to: l-mathgroup@wolfram.com
  • Delivered-to: mathgroup-outx@smc.vnet.net
  • Delivered-to: mathgroup-newsendx@smc.vnet.net
  • References: <20131009061119.40E2A6A11@smc.vnet.net>

The problem is that Mathematica 8 is picking up Mathematica 9's 
activation information preferentially.  If you did nothing, after the 
trial period expired, Mathematica 8 would revert to its normal behavior 
(because the Mathematica 9 activation entry would be no good, so it 
would just skip it).  But I'm guessing you don't want to wait 25 days 
for that to happen.

Take a look at the output of this:

FilePrint[$PasswordFile]

In all likelihood, you'll see two entries (or maybe more, but the first 
two are probably the ones that matter); the first one will have an 
activation key corresponding to your trial version, and the second with 
an activation key corresponding to your version 8.

You could simply flip them around with any text editor.  Or with 
Mathematica.  This code should do the trick (the complexity in the code 
is to preserve the position of some comment metadata that might be in 
your password file).

lines = Import[$PasswordFile, "Lines"];
lines = Split[lines,
   SameQ @@ StringMatchQ[{##}, StartOfString ~~ "%" ~~ __] &];
lines = Flatten[Reverse /@ lines];
Export[$PasswordFile, lines, "Lines"];

Sincerely,

John Fultz
jfultz at wolfram.com
User Interface Group
Wolfram Research, Inc.



On Oct 9, 2013, at 1:11 AM, "E. Martin-Serrano" <eMartinSerrano at telefonica.net> wrote:

> Hi,
>
> Now, I have realized that the notebooks created and running  under the V8
> paid version also display the legend Wolfram Mathematica -  PRODUCT
> TRIAL .
>
> So it is not only the Welcome Screen what has been contaminated by the
> trial V9 version.
>
> De: E. Martin-Serrano [mailto:eMartinSerrano at telefonica.net]
> Enviado el: martes, 8 de octubre de 2013 13:42
> Para: mathgroup at smc.vnet.net
> Asunto: Version 9 Trial contaminates Version 8 running paid version
>
> Hi,
>
> Last week, I downloaded and installed V9 Trial, which I have already
> uninstalled after only three days.
>
> It seems that, somehow, V9 was, conflicting with V8, which is the version I
> am currently running. I uninstalled the Trial V9 to check whether I could
> find the conflicting points with the idea of reinstalling V9 again to
> continue the V9 trial.
>
> However, to my surprise, after the V9 trial uninstallation,  the former V8
> version Welcome screen is warning that my V8 paid Mathematica is =a trial
> product and that there are 26 days left for it.
>
> I have used the Windows uninstall tool to get rid of Mathematica V9 Trial
> and probably there are some leftovers still working in the original V8
> system (a clear indication of that V9 is interfering with the paid V8 even
> after the trial V9  has been uninstalled). Besides, after finishing the
> uninstallation, Windows8  warned it could not uninstall the whole
> Mathematica V9 trial stuff so that I ought to move manually the trial V9
> kernel to the  recycle bin.
>
> I hope someone could provide some clue about what is going on before the my
> current 26 days v8 trial period is over
>
> Regards
>
> E. Martin-Serrano
> __________________________________________
>
> This e-mail and the documents attached are confidential and intended solely
> for the addressee; it may also be privileged. If you receive this e-mail in
> error, please notify the sender immediately and destroy it. As its integrity
> cannot be secured on the Internet, no sender's liability can be triggered
> for the message content. Although the sender endeavors to maintain a
> computer virus-free network,  he/she does not warrant that this transmission
> is virus-free and  will not be liable for any damages resulting from any
> virus transmitted.
>



  • Prev by Date: How can we plot the world tube of a complex wave function?
  • Next by Date: Re: Version 9 Trial contaminates Version 8 running paid
  • Previous by thread: RV: Version 9 Trial contaminates Version 8 running paid version
  • Next by thread: Re: RV: Version 9 Trial contaminates Version 8 running paid version