PDA

View Full Version : SV: 10309 install buglet



NewsArchive
08-27-2013, 02:10 AM
Mirrored from the SoftVelocity Clarion 9 Newsgroup (Thread started: 08/10/2013)

Apparently the prerequisite is not being checked before having to be
installed since it's already there and multiple starts of the install,
even after it's been run<g>, still requests it.

Lee White

NewsArchive
08-27-2013, 02:10 AM
> Apparently the prerequisite is not being checked before having to be
> installed since it's already there and multiple starts of the install,
> even after it's been run<g>, still requests it.
>
Lee,

Just installed the update and didn't see that.

All went smoothly but, then, it is Friday night.

Bob

NewsArchive
08-27-2013, 02:10 AM
Hi Bob,

I wonder if Lee was thinking of the ClaRunExtSetup.exe program rather
than the Clarion install itself?

As a side note that's the second time I've tried to 'close' his
screendump using the buttons, they just draw me in like a moth to a
flame :-)

Graham

NewsArchive
08-27-2013, 02:11 AM
Graham,

> I wonder if Lee was thinking of the ClaRunExtSetup.exe program rather
> than the Clarion install itself?

Nope, just the install.

I did uninstall the previous build but I had that C++ RT before that.

> As a side note that's the second time I've tried to 'close' his
> screendump using the buttons, they just draw me in like a moth to a
> flame :-)

Happy to help whenever possible!<g>

--
Lee White

RPM Report Viewer.: http://www.cwaddons.com/products/rpm/
RPM Review........: http://www.clarionmag.com/cmag/v11/v11n06rpm.html
Report Faxing.....: http://www.cwaddons.com/products/afe/
---Enroll Today---: http://CWaddons.com

Creative Reporting: http://www.CreativeReporting.com

Product Release & Update Notices
http://twitter.com/DeveloperPLUS

Windows 8 brings us "The Oval, Bumper Car, Roller Coaster of Wait!"

NewsArchive
08-27-2013, 02:12 AM
Lee,

One other thing I noticed: on my test VM using XP SP3, the Microsoft
..NET Framework 2.0 SP1 is never installed using the new ClaRunExtSetup
included in Clarion 9.0.10309. I saw the same behavior in my own
SetupBuilder 8.0 test installer I was testing the other day.

Turns out the current SB 8.0 rt_dotnetframework2_x86.sbi script has a
specific check if running XP for SP2 (probably because the Microsoft
System Requirements states it is specific to XP SP2), so it doesn't try
to install it if running XP SP3.

! If XP, SP2 is required
If %WINVER% Equals "$WIN_XP$" Then
If %SERVICEPACKNUMBER% Does Not Equal "2" Then
Set Variable %DOTNET2_INSTALLIT% to "-1000"
End
End


So SV might want to look at that for the next iteration of their
ClaRunExtSetup. I changed own rt_dotnetframework2_x86.sbi script to:

! If XP, SP2 or greater is required
If %WINVER% Equals "$WIN_XP$" Then
If %SERVICEPACKNUMBER% Less Than "2" Then
Set Variable %DOTNET2_INSTALLIT% to "-1000"
End
End

Though I'm not sure how that would behave if no service pack was
installed--maybe it returns 0 for that case, but I don't have a vm setup
to test for that. Of course if you are running XP with no service packs
then there are probably bigger issues to deal with :-)

Bottom line is users with XP SP3 won't be able to use the ClaRunExtSetup
shipped with Clarion 9.0.10309 to get the Microsoft .NET Framework 2.0
SP1 installed. (But they can download it directly from

http://www.microsoft.com/en-us/download/details.aspx?id=16614 )

And at least in my little 512MB RAM XP SP3 virtual machine, the install
of Microsoft .NET Framework 2.0 SP1 takes just under 8 minutes, so be
patient.


....jack

--
********************************************
Who: L Jack Wilson
Where: ljwilson@dNiOgSiPtAaMlav.com
How: Remove Capital Letters from above for a valid email address
Why: Standard Disclaimer fits nicely here.

NewsArchive
08-27-2013, 02:12 AM
Jack,

> And at least in my little 512MB RAM XP SP3 virtual machine, the install
> of Microsoft .NET Framework 2.0 SP1 takes just under 8 minutes, so be
> patient.

In my case this is on Win7/64 and the core C9 install prerequisite
already exists but it still wants to install it over and over again!

--
Lee White

RPM Report Viewer.: http://www.cwaddons.com/products/rpm/
RPM Review........: http://www.clarionmag.com/cmag/v11/v11n06rpm.html
Report Faxing.....: http://www.cwaddons.com/products/afe/
---Enroll Today---: http://CWaddons.com

Creative Reporting: http://www.CreativeReporting.com

Product Release & Update Notices
http://twitter.com/DeveloperPLUS

Windows 8 brings us "The Oval, Bumper Car, Roller Coaster of Wait!"

NewsArchive
08-27-2013, 02:13 AM
Lee,

I think I know what is causing this (seems to be related to a recent OS
update). The x86 MS runtime (running in 32-bit mode) installed on a x64
system write to different registry branches (32-/64-bit) now.

I have to change some things in the SetupBuilder 8.1 runtime and update the
redistributable packages to handle this new scenario. Not easy to handle...

Can I send some small test apps (compiled with SB8.1) later this week?

--
Friedrich Linder
Lindersoft
www.lindersoft.com
+1.954.252.3910

--Helping You Build Better Installations
--SetupBuilder "point. click. ship"
--Create Windows 8 ready installations in minutes
--Official Comodo Code Signing and SSL Certificate Partner

NewsArchive
08-27-2013, 02:13 AM
Feel free to send them to me, Friedrich. BTW, just like Lee, I get
the redundant request to install the runtimes. I'm running Windows
7/64.

Mike Hanson
www.boxsoft.net

NewsArchive
08-27-2013, 02:14 AM
Mike,

> Feel free to send them to me, Friedrich. BTW, just like Lee, I get
> the redundant request to install the runtimes. I'm running Windows
> 7/64.

HEY! Back off, this is MY bug! <g>

Lee White

NewsArchive
08-27-2013, 02:14 AM
So fix it already, will ya?

--

Russ Eggen
RADFusion International, LLC

NewsArchive
08-27-2013, 02:15 AM
>Mike,
>
>> Feel free to send them to me, Friedrich. BTW, just like Lee, I get
>> the redundant request to install the runtimes. I'm running Windows
>> 7/64.
>
>HEY! Back off, this is MY bug! <g>

I'm going to make pasta tonight with some gently fried veg, garlic and
olive oil. <wink>

Mike Hanson
www.boxsoft.net

NewsArchive
08-27-2013, 02:15 AM
Mike,

> I'm going to make pasta tonight with some gently fried veg, garlic and
> olive oil. <wink>

You folks up there are strange.... fried olive oil! What's next?!<g>

Lee White

NewsArchive
08-27-2013, 02:15 AM
I think they make that at Popeyes

Jeff Slarve
www.jssoftware.com
www.twitter.com/jslarve
I'll search help files & Google for you.

NewsArchive
08-27-2013, 02:16 AM
Jeff,

> I think they make that at Popeyes

Wonder how many will get that one?!<g>

Lee White

NewsArchive
08-27-2013, 02:16 AM
Hi Lee,

I did, I did!!

Gregory Bailey

NewsArchive
08-27-2013, 02:17 AM
Oy



Steve Parker
------------------------
www.par2.com
-----------------------
"The difficult we do immediately, the impossible takes a bit longer;
miracles, by appointment only."

NewsArchive
08-27-2013, 02:18 AM
Here she is.

http://www.youtube.com/watch?v=WM7rB_ecU4E

Jeff Slarve
www.jssoftware.com
www.twitter.com/jslarve
I'll search help files & Google for you.

NewsArchive
08-27-2013, 02:19 AM
>I think they make that at Popeyes

Q: Which part of Popeye never gets rusty?





A: The part he dips in Olive Oil.

John Griffiths

NewsArchive
08-27-2013, 02:19 AM
Friedrich,

> Can I send some small test apps (compiled with SB8.1) later this week?

Sure.

--
Lee White

RPM Report Viewer.: http://www.cwaddons.com/products/rpm/
RPM Review........: http://www.clarionmag.com/cmag/v11/v11n06rpm.html
Report Faxing.....: http://www.cwaddons.com/products/afe/
---Enroll Today---: http://CWaddons.com

Creative Reporting: http://www.CreativeReporting.com

Product Release & Update Notices
http://twitter.com/DeveloperPLUS

Windows 8 brings us "The Oval, Bumper Car, Roller Coaster of Wait!"

NewsArchive
08-27-2013, 02:20 AM
>Oyl
>
>
>
>Steve Parker
>------------------------
>www.par2.com
>-----------------------
>"The difficult we do immediately, the impossible takes a bit longer;
>miracles, by appointment only."
>
>
>"Lee White (Lodestar Software)" wrote in message
>news:u8pn19to7j04ggqq5ftdh70ljnputnq2ge@cwaddons.c om...
>
>Jeff,
>
>> I think they make that at Popeyes
>
>Wonder how many will get that one?!<g>
>

Jeff Slarve
www.jssoftware.com
www.twitter.com/jslarve
I'll search help files & Google for you.

NewsArchive
08-27-2013, 07:03 AM
Vey

--

Russ Eggen
RADFusion International, LLC

NewsArchive
08-27-2013, 10:43 AM
> Feel free to send them to me, Friedrich. BTW, just like Lee, I get
> the redundant request to install the runtimes. I'm running Windows
> 7/64.

Thank you, Mike! I'll send a test application soon (the app will not make
any system modification!). The changes in the OS and the MS redistributable
unpacking method are very tricky. But I think that I have a working
solution now.

Friedrich

NewsArchive
08-27-2013, 10:43 AM
BTW, quick background information. Microsoft changed "the rules" in the
redistributables and that's why this problem comes up (at the moment for
some users only, but in the near future for all). It depends on the OS
patch level (installed updates and components). What a nightmare. We have
to revamp the SetupBuilder MS redistributable model (will be part of SB
8.1).

Friedrich

--
Friedrich Linder
Lindersoft
www.lindersoft.com
+1.954.252.3910

--Helping You Build Better Installations
--SetupBuilder "point. click. ship"
--Create Windows 8 ready installations in minutes
--Official Comodo Code Signing and SSL Certificate Partner

NewsArchive
08-27-2013, 10:44 AM
>> Can I send some small test apps (compiled with SB8.1) later this week?
>
> Sure.

Perfect, thanks Lee!

Friedrich

NewsArchive
08-28-2013, 11:08 AM
I feel your pain. It's like having the rug pulled out from beneath
you.

Mike Hanson
www.boxsoft.net

NewsArchive
08-28-2013, 11:08 AM
> I feel your pain. It's like having the rug pulled out from beneath
> you.

YES!!!!

Friedrich