You are here

.NET Support

6 posts / 0 new
Last post
xdhmoore
xdhmoore's picture
Offline
Last seen: 11 years 11 months ago
Joined: 2011-09-05 20:16
.NET Support

Any updates on (unofficial) .NET support? Windows 7 seems to be spreading somewhat, depending on where you are, I suppose. (I'm at a university.)

Another couple clarifying questions:
How does .NET differ from Java for portablizing applications? Aren't there a few portable apps like FirefoxPortable that have to use the host's JVM, or am I totally off? Is the only difference for these applications that the JVM is more widespread on XP than .NET? Does this mean that .NET applications could be supported officially when XP becomes less dominant?

Thanks for you guys' work. I love PortableApps.com.:)

John T. Haller
John T. Haller's picture
Online
Last seen: 15 min 11 sec ago
AdminDeveloperModeratorTranslator
Joined: 2005-11-28 22:21
Policy

Our policy reads: *.NET Apps: PortableApps.com does not yet list .NET apps in our directory. .NET-based apps will not work on most public PCs (net cafe, hotel business center, library, etc) as these PCs generally run Windows XP and do not have .NET installed. Unlike Java, .NET can not be legally portablized. So, .NET apps won't work unless the PC has the proper .NET library, which you can't determine until you try to run the app. To avoid confusing most end-users, .NET apps will be listed in a special section of the PA.c Directory with an explanation of this issue shortly.

In short, Windows XP is still over 50% of all Windows installs. XP has no .NET installed by default and it can only be installed by an administrator. When you try and run a .NET app on Windows without .NET, it won't run. And you can't tell ahead of time if .NET will be available.

Unlike .NET, Java can be easily portablized legally (see jPortable in our directory) and is not tied to the operating system, meaning you can take a 32-bit JVM with you and it'll work on every version of Windows you come across with your portable Java apps.

Sometimes, the impossible can become possible, if you're awesome!

xdhmoore
xdhmoore's picture
Offline
Last seen: 11 years 11 months ago
Joined: 2011-09-05 20:16
I see.

Great. Thanks for the fast reply!
Thanks again for your outstanding work!

And after I had thought of it,
I said, "I will, then, be a toad."

Ken Herbert
Ken Herbert's picture
Offline
Last seen: 6 hours 56 min ago
DeveloperModerator
Joined: 2010-05-25 18:19
John, if by "ahead of time",

John, if by "ahead of time", you mean at the time of running the app (and not before you actually get to the computer), there are clearly defined ways in numerous languages to determine whether .NET is installed (and what version).

Basically any language that can access the registry can determine the installed versions of the .NET Framework, including NSIS. I posted something about it a while ago (but targeted it towards Chris since he has more to do with the Launcher) but forgot he was overseas at the time so it must have slipped by him.

Also, one of the projects I am working on is a small app written in C++ which will list the currently installed version of the framework, with future potential to take a command line argument for version and service pack, run silently, and return true/false. C++ is not one of my strengths, however, so work is progressing very slowly.

romel
Offline
Last seen: 1 week 2 days ago
Joined: 2011-09-16 10:11
Alternative

Can NSIS execute an external "command"?
with the REG utility (It exist in Windows XP, Vista, Windows 7). Can I execute it (REG query "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework"), then capture the ouput, proccess output and check if .NET Framework is installed?

Can MONO be "PORTABLE"?... but, the same problem exist - Compatibility with the MS .NET functions / assemblies versions required by the Software to be Portable. or EVEN WORST... how to publish MONO to the system to be able run .NET software.

RaggieSoft
Offline
Last seen: 9 years 2 months ago
Joined: 2008-05-31 17:38
NSIS seeing the .NET Framework

I haven't played with NSIS in general in a while (getting kind of bummed that 2.46 is the latest - but that's a different story), but I'm sure it's possible to, for example have a setting in an INI file like:

(in this example, let's say .NET Framework 4.0)


[dotNETFramework]
Required=true
Version=4
ServicePack=0

Yes, I know that .NET 4 doesn't have a Service Pack yet, so here's an example for 3.5 SP1:


[dotNETFramework]
Required=true
Version=35
ServicePack=1

Take those and use the standard Registry functions of NSIS and there you go: easy .NET checks using the app's launcher.

Feel free to take my idea and run with it Smile

Log in or register to post comments