INI File What It Is How to Open One
INI File (What It Is & How to Open One) GA S REGULAR Menu Lifewire Tech for Humans Newsletter! Search Close GO Software & Apps > File Types 74 74 people found this article helpful
[Options] RunICS=0 Brandover=0 Language=1033 SkipUAC=1 This particular example is in the INI file that CCleaner uses. You can change this file yourself to add more options to the program because it refers to this file to determine what should be erased from the computer. This particular program is popular enough that there's a tool you can download called CCEnhancer that keeps the INI file updated with lots of different options that don't come built-in by default.
What Is an INI File?
Why software programs use INI files, and how to view one
By Tim Fisher Tim Fisher Senior Vice President & Group General Manager, Tech & Sustainability Emporia State University Tim Fisher has more than 30 years' of professional technology experience. He's been writing about tech for more than two decades and serves as the VP and General Manager of Lifewire. lifewire's editorial guidelines Updated on February 3, 2022 Tweet Share Email Tweet Share EmailIn This Article
Expand Jump to a Section How to Open and Edit INI Files How the INI File is Structured More Information on INI Files How to Convert an INI File Frequently Asked Questions A file with the INI file extension is an initialization file for Windows or MS-DOS. They are plain text files that contain settings that dictate how something else—usually a program—should operate. 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. Notepad viewing ccleaner.ini. See our Best Free Text Editors list for some alternative text editors that also edit INI files. Many files share some of the same file extension letters, but that doesn't mean they're related or that they can be used by the same software. Source code files used by C++ compilers (.INL), and Inform 7 source code files (.NI), are two examples.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: Language=1033 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:[Options] RunICS=0 Brandover=0 Language=1033 SkipUAC=1 This particular example is in the INI file that CCleaner uses. You can change this file yourself to add more options to the program because it refers to this file to determine what should be erased from the computer. This particular program is popular enough that there's a tool you can download called CCEnhancer that keeps the INI file updated with lots of different options that don't come built-in by default.