vote up 6 vote down star
2

Where do I find a definitive guide as to where, when I am installing a new application into Windows, the application exe's, database tables, configuration files should go?

Also guidelines to which registry keys should be used for persisting user and application data.

Best regards,

Simon

flag

80% accept rate

3 Answers

vote up 4 vote down check

http://msdn.microsoft.com/en-us/library/ms995853.aspx

link|flag
For the click-averse: the above link is MSDN's "Application Specification for Microsoft Windows 2000 for Desktop Applications" – Piskvor Jun 4 at 12:46
vote up -2 vote down

you could go install the application using defacto standards: use program files folder when installing new applications to windows machine. there are many system environment variable you can access, it's easiest maybe to see them in DOS.

start cmd and type set, this will list important system variables, ie:

ProgramFiles=C:\Program Files
SystemDrive=C:
SystemRoot=C:\Windows
USERPROFILE=C:\Users\YourName

So install into %ProgramFiles% and then install configuration information somewhere under %UserProfile%

Alternatively you could get a tool doing it for you, like MSI Studio for packaging and delivering your application.

There probably exist many guides explaining how to do this in different ways, as for any definitive guide, I'll keep an eye on this thread as well.

For when and why to store data in windows registry you might want to take a look here: http://stackoverflow.com/questions/268424/when-and-why-should-you-store-data-in-the-windows-registry

link|flag
1  
SHGetKnownFolderPath is the proper way to get this information. – mj2008 Jun 4 at 12:44
Yes, looks like a way to get the same information (its a shell function) if you are programing it. What the OP is asking is a book describing best practices. – Makach Jun 4 at 12:54
vote up 2 vote down

Check out Microsoft's suggestions: Windows File System Namespace Usage Guidelines seems to be what you want. (the file name is slightly misleading - the downloadable PDF file shows these guidelines both for Windows Vista and Windows XP)

To find and query those programatically, see the MSDN Known Folders topic; also see the list of common Known Folder constants. Simplest example for SHGetKnownFolderPath and the Startup folder:

SHGetKnownFolderPath(
    FOLDERID_Startup,
    0,
    NULL,
    path_will_be_here_when_function_returns
)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.