Jump to content

.NET Framework 1.1 Service Pack


Recommended Posts


OK I checked the file in the folder after the update and it show ok 2032

BUt when you open the Net Configuration 1.1 and go about it shows version 1.1.4322.573 LOL who the heck did there beta testing.. This should have been updated to... All this stuff is confusing to Newbie,, I don't know all the options yet,,

The files underneath may have got changed but not the about page,, BOO HO...

Has anyone got this thing to work using the SVCPACK.inf

I swap out the old and put the new SFX file in place of like what you all talked about in this thread but it didn't install anything...

[SetupHotfixesToRun]
KB831240.exe /qb
DOTNETFW.exe
QCHAIN.exe

It did load and work in the svcpack.inf when I did the updates separate,,,

Can you use the Start /wait in a SFX file

I try changing the line to run

Start /wait netfx.msi /qb

I tried the netfx.msi /qb already

should I have just left it plain

netfx.msi

??????????????????????????????

I used this so far
;The comment below contains SFX script commands

Path=%temp%
SavePath
Setup=netfx.msi /qb
Silent=1
Overwrite=1

Mac!

Link to comment
Share on other sites

Ok Thanks All!

For putting up with my newbie guestions :whistle:

I got it worked out now.. :thumbup

I see where and why it was confusing the bee gees out of me...

I did get it to load in the SVCPACK.INF used this below for the SFX and named it netfx.exe LOL I did try the start /wait and it kicked it out...

I like the /qb!- cause it gives some feedback but doesn't show the cancel button..

;The comment below contains SFX script commands

Path=C:\installnetfx
SavePath
Setup=netfx.msi /qb!-
Silent=1
Overwrite=1

So I'm off to the next adventure.. But to bed for me first... I said that a few post ago.. LOL by the time I get done playing I will be well rounded cause what really confuses the issue it seems like every silent install that I have done has been different some how and will not work like the last few,,

Whoo Hoo! Next time I'll Know better

Mac!

Link to comment
Share on other sites

@shef Sale

Your batch command is executing the extraction. Once that is finished. It will continue with the next line in the batch file, even though .Net still has to install.

I'm using Autoit scripts to monitor the install with the /qb switch used in .Net archive. My script will not proceed until .Net window has closed.

Controlling with a Batchfile? Not sure.

Here is my Autoit exe. Put it in the some folder as setup.exe (.Net archive). And run aDotnet.exe from your batchfile. aDotnet will run setup.exe. Batch will not continue until aDotnet.exe has finished.

Ensure your archive has this in it's comments:

;The comment below contains SFX script commands

Setup=Netfx.msi /qb /norestart

TempMode

Silent=2

Overwrite=1

Good luck.  :D    P.S. it will delete ASPUSER as well in the script.

Thank you VERY much for the effort, but I have doubious results

First I tried starting aDotnet.exe in folder with setup.exe (=netfxsp1.exe) manually on a clean install without NET and it installed like a charm.

Then I put it in the start.cmd (modified .NET line), installed everything from the scratch but nothing :(

It started the script (cursor on the left upper corner), it extracted the RAR SFX (dialog with the progress), started the NET install (MS dialog), wrote "Cleaning up" on the end, and executed the start.cmd till the end, but after all .NET wasn't installed. :wacko:

Well.. after all I can install it manually on the end. :D

Link to comment
Share on other sites

I am having a few dramas with this seem to install fine on my test machine by calling it directly from the sfx.exe

ECHO.

ECHO Installing Net framework 1.1 updated...

start /wait %systemdrive%\install\Applications\net\setup.exe /qb

but would not install on my main machine basically flashed the first box & closed the cmd window. Tried the autoit.exe posted but seems to loop & does not install.

Link to comment
Share on other sites

Did you have a progress dialog when detnet start to install. If you use /qb switch in winrar, then aDotnet.exe should control the install via the handle of the window. When window closes then aDotnet will clean up, as in removing aspnet user.

Works fine here. Sorry if I could not help.

:unsure:

Link to comment
Share on other sites

I am having a few dramas with this seem to install fine on my test machine by calling it directly from the sfx.exe

ECHO.

ECHO Installing Net framework 1.1 updated...

start /wait %systemdrive%\install\Applications\net\setup.exe /qb

but would not install on my main machine basically flashed the first box & closed the cmd window. Tried the autoit.exe posted but seems to loop & does not install.

@MAVERICKS CHOICE

Hopefully your command is:

ECHO.

ECHO Installing Net framework 1.1 updated...

start /wait %systemdrive%\install\Applications\net\aDotnet.exe

Not the one that you posted?

aDotnet will run setup.exe contained in the same dir.

aDotnet needs the progress dialogs. ok.

Switches below should be inside winrar sfx

;The comment below contains SFX script commands

Setup=Netfx.msi /qb /norestart

TempMode

Silent=2

Overwrite=1

Link to comment
Share on other sites

Did it show the progress dialog titled "dotnet framework 1.1" ?

It works here from a batch file.

First time (starting directly) there was 2 dialogs, yep.

On the second time (unattended, batch file) there was just one.

[All after the RAR uncompress dialog]

Batch file is like in my previous post.

One thing maybe (?).

I use

EncryptedAdminPassword=Yes

option in my WINNT.SIF, and use renamnig admin account also.

But that shouldn't (?) be problem, because Adobe Reader and ffdshow install without the problem.

Well, for now i'm gonna do this without dotnet automatic install :D

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...