How to Determine Minimum Requirements

B

Bob Waite

I have produced a small exe (1.6mb) which doesnt have any file access and
doesnt have very heavy memory requirements. It was created in Visual Studio
2005.

How would I go about calculating the minimum windows version and hardware
configuration (processor speed, ram size, disk size) ?
 
S

sstory

Your minimum requirements would HAVE to be at least the minimum requirements
for .NET. Those are on the box if you still have you 2005 box.

You should be able to search MSDN (msdn.microsoft.com) to find application
requirements for dotnet applications. Your requirements would be at least
those, if it doesn't do anything taxing on the system, that would probably
be just fine.
 
K

kimiraikkonen

I have produced a small exe (1.6mb) which doesnt have any file access and
doesnt have very heavy memory requirements. It was created in Visual Studio
2005.

How would I go about calculating the minimum windows version and hardware
configuration (processor speed, ram size, disk size) ?

The most required hardware is free memory for .net IMHO, and don't
trust your app's total size, and note that an app which is smaller
than 50kb can cost tens of megabytes from memory. A good example for
this is webbrowser control which has a flash component inside.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top