Various programs use their own INI files, but they all serve the same purpose. CCleaner, for example, can use an INI file to store all its different options. This particular file is stored as the name ccleaner.ini under the CCleaner installation folder. A common INI file in Windows called desktop.ini is a ​hidden file that stores information about how folders and files should appear.

How to Open and Edit INI Files

It’s not a common practice for people to open or edit INI files, but they can be opened and changed with any text editor. Just double-clicking it will automatically open it in the Notepad application in Windows. See our Best Free Text Editors list for some alternative text editors that also edit INI files.

How an INI File Is Structured

INI files contain keys (also called properties) and some use optional sections to group keys together. A key should have a name and a value, separated by an equals sign, like this: INI files work differently across programs. Some are really tiny (a few kilobytes) with only one or two lines of information, and others can be extremely lengthy (several megabytes) with lots of customizable options. In this example, CCleaner defines the English language with the 1033 value. So, when the program opens, it reads the file to determine in which language to display the program text. Although it uses those numbers to indicate English, the program natively supports other languages, too, which means you can change it to 1034 to use Spanish instead, for example. The same can be said for all the other languages the software supports, but you have to look through its documentation to understand which numbers mean other languages. If this key existed under a section that includes other keys, it might look something like this:

More Information on INI Files

Some INI files may have a semicolon within the text. These just indicate a comment to describe something to the user if they’re looking through the file. Nothing following the comment is interpreted by the program that’s using it. Key names and sections are not case sensitive, at least in Windows. The same effect is produced in an INI file that uses uppercase letters as one that has lowercase letters. A common file called boot.ini in Windows XP details the specific location of the Windows XP installation. If problems occur with this file, see How to Repair or Replace Boot.ini in Windows XP. Although it’s safe to delete desktop.ini files, Windows recreates them and applies default values to them. So, if you’ve applied a custom icon to a folder, for example, and then delete the desktop.ini file, the folder reverts to its default icon. INI files were used a lot in early versions of Windows before Microsoft began encouraging the Windows Registry to store application settings. Now, even though many programs still use the INI format, XML serves the same purpose. If you’re getting “access denied” messages when trying to edit an INI file, it means you don’t have the proper administrative privileges to make changes to it. You can usually fix this by opening the text editor with admin rights (right-click it and choose to run it as administrator). Another option is to copy the file to your desktop, make changes there, and then paste that desktop file over the original. Some other initialization files you might come across that don’t use the INI file extension are CFG and CONF files. Some programs even stick with TXT.

How to Convert an INI File

There’s no real reason to convert an INI file to another file format. The program or operating system that’s using it will only recognize it under the specific name and file extension that it’s using. However, since INI files are just regular text files, you can use a program like Notepad++ to save it to another text-based format like HTM/HTML or TXT. ConvertSimple.com has an INI to XML converter if you want to make that conversion.