473,395 Members | 1,452 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Best way to download my application

What is the best way to download the application ?

Zip ? Cab ?

What is the solution to make a .exe and after dw it automaticly extract
and install the application ?

Dec 1 '05 #1
14 1261
ucas.

Zip ? Cab ?
Zip
What is the solution to make a .exe and after dw it automaticly extract
and install the application ?


Assuming that you mean with dw, downloading.
If it is right than this should be impossible, I don't like to download a
file and than get a program that formats my complete disk. (And therefore
all those security updates are there)

Just my thought,

Cor
Dec 1 '05 #2

Well here it comes again the solution for a lot of problems develop a Smart
client

http://msdn.microsoft.com/smartclien...n/default.aspx
Assuming that you mean with dw, downloading.
If it is right than this should be impossible, I don't like to download a
file and than get a program that formats my complete disk. (And therefore
all those security updates are there)
well with a smart client it is possible ,,,( ever heard of no touch
deployment ?? ) the formating thingy can only after the administrator
granted the apropriate rights to the application

regards

Michel Posseth [MCP]

"Cor Ligthert [MVP]" <no************@planet.nl> schreef in bericht
news:Oc**************@TK2MSFTNGP15.phx.gbl... ucas.

Zip ? Cab ?

Zip
What is the solution to make a .exe and after dw it automaticly extract
and install the application ?


Assuming that you mean with dw, downloading.
If it is right than this should be impossible, I don't like to download a
file and than get a program that formats my complete disk. (And therefore
all those security updates are there)

Just my thought,

Cor

Dec 1 '05 #3
Michel,

well with a smart client it is possible ,,,( ever heard of no touch
deployment ?? ) the formating thingy can only after the administrator
granted the apropriate rights to the application

After that I had sent my message I was thinking about that.

However, than I thought it is not really downloading it is more a controled
update process and did not add that.

Cor
Dec 1 '05 #4

Not in my opinion ...

When i click a link and the program is beeing installed on my computer i do
not call that a controled update process do you ? ( where is the update
from what ? , imho it is a new install )

However smart clients also have the possibility to check during startup if
there is a newer version availlable and download and install this in the
background so next time you start it is the new version serving you maybe
you are mistaken with that ??
regards

Michel Posseth
"Cor Ligthert [MVP]" <no************@planet.nl> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
Michel,

well with a smart client it is possible ,,,( ever heard of no touch
deployment ?? ) the formating thingy can only after the administrator
granted the apropriate rights to the application

After that I had sent my message I was thinking about that.

However, than I thought it is not really downloading it is more a
controled update process and did not add that.

Cor

Dec 2 '05 #5
Michael,

I am in doubt (not important), however of course is your addition a good one
for the OP

:-)

Cor
Dec 2 '05 #6
I don't know if you understand what i need....

i explain :

I have setup.exe and dotNet.fx...
so i need to zip them in one file...

With Winzip i make an .EXE

But i would like that when they click unzip... it's unzip... and just
start setup.exe

I don't know how to do that...

Dec 2 '05 #7
"ucasesoftware" <uc***********@hotmail.fr> schrieb:
What is the best way to download the application ?

Zip ? Cab ?

What is the solution to make a .exe and after dw it automaticly extract
and install the application ?


MSI ;-).

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>
Dec 2 '05 #8
ucasesoftware wrote:
I don't know if you understand what i need....

i explain :

I have setup.exe and dotNet.fx...
so i need to zip them in one file...

With Winzip i make an .EXE

But i would like that when they click unzip... it's unzip... and just
start setup.exe

I don't know how to do that...


You need InnoSetup
http://www.jrsoftware.org/

A powerfull free installer.
--
Rinze van Huizen
C-Services Holland b.v
Dec 2 '05 #9
download winrar and create a self extractor , one of the propertys is run
application after extraction

so it extracts and then executes the application that you want

regards

Michel Posseth

"ucasesoftware" <uc***********@hotmail.fr> wrote in message
news:11*********************@g49g2000cwa.googlegro ups.com...
I don't know if you understand what i need....

i explain :

I have setup.exe and dotNet.fx...
so i need to zip them in one file...

With Winzip i make an .EXE

But i would like that when they click unzip... it's unzip... and just
start setup.exe

I don't know how to do that...

Dec 2 '05 #10

or use the standard installer that comes with visual studio ,,, you can also
create a web setup with that ( web bootstrap )

"C-Services Holland b.v." <cs*@REMOVEcsh4u.nl> wrote in message
news:Zp********************@zeelandnet.nl...
ucasesoftware wrote:
I don't know if you understand what i need....

i explain :

I have setup.exe and dotNet.fx...
so i need to zip them in one file...

With Winzip i make an .EXE

But i would like that when they click unzip... it's unzip... and just
start setup.exe

I don't know how to do that...


You need InnoSetup
http://www.jrsoftware.org/

A powerfull free installer.
--
Rinze van Huizen
C-Services Holland b.v

Dec 2 '05 #11
thx a lot...

Winrar is perfect for me....

cya

Dec 3 '05 #12
sorry but i could insert in msi dotnet.exe, mcda ?

Dec 4 '05 #13
"ucasesoftware" <uc***********@hotmail.fr> schrieb:
sorry but i could insert in msi dotnet.exe, mcda ?


Nope. You could provide them as separate download packages.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>
Dec 4 '05 #14
Does that let you install the .NET environment (dotnetfx.exe) when it's
not yet installed. I think not, hence you need a different installer ;)

m.posseth wrote:
or use the standard installer that comes with visual studio ,,, you can also
create a web setup with that ( web bootstrap )

"C-Services Holland b.v." <cs*@REMOVEcsh4u.nl> wrote in message
news:Zp********************@zeelandnet.nl...
ucasesoftware wrote:

I don't know if you understand what i need....

i explain :

I have setup.exe and dotNet.fx...
so i need to zip them in one file...

With Winzip i make an .EXE

But i would like that when they click unzip... it's unzip... and just
start setup.exe

I don't know how to do that...


You need InnoSetup
http://www.jrsoftware.org/

A powerfull free installer.
--
Rinze van Huizen
C-Services Holland b.v



--
Rinze van Huizen
C-Services Holland b.v
Dec 5 '05 #15

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

136
by: Matt Kruse | last post by:
http://www.JavascriptToolbox.com/bestpractices/ I started writing this up as a guide for some people who were looking for general tips on how to do things the 'right way' with Javascript. Their...
4
by: ian.johns | last post by:
We have an application where a manufacturing company has a dedicated PC to help manufacture our product. This PC needs to: 1/ download information from our web site application; 2/ pass that...
3
by: samadams_2006 | last post by:
Hello, There seem to be so many places out there to host asp.net Web Applications I figured I had better put an article on this forum to get some advice. Basically I have an asp.net Web...
1
by: | last post by:
I've built an application that scrapes JPG images of webpages and PDF instances of those webpages automatically from an RSS feed. References to the scraped resources are persisted to our database....
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.