To install click the Add extension button. That's it.

The source code for the WIKI 2 extension is being checked by specialists of the Mozilla Foundation, Google, and Apple. You could also do it yourself at any point in time.

4,5
Kelly Slayton
Congratulations on this excellent venture… what a great idea!
Alexander Grigorievskiy
I use WIKI 2 every day and almost forgot how the original Wikipedia looks like.
Live Statistics
English Articles
Improved in 24 Hours
Added in 24 Hours
Languages
Recent
Show all languages
What we do. Every page goes through several hundred of perfecting techniques; in live mode. Quite the same Wikipedia. Just better.
.
Leo
Newton
Brights
Milds

From Wikipedia, the free encyclopedia

Setup Information file
Filename extension
.inf
Internet media type
text/plain
Type of formatConfiguration file
Precompiled Setup Information file
Filename extension
.pnf
Internet media type
application/octet-stream
Type of formatConfiguration file

INF file (setup Information file) is INI plain-text file used by Microsoft Windows-based operating systems for the installation of software and drivers.[1] INF files are most commonly used for installing device drivers for hardware components.[2] Windows includes the IExpress tool for the creation of INF-based installations. INF files form part of the Windows Setup API and of its successor, Windows Installer.

The \windows\inf directory contains several such .inf files.[3]

Precompiled setup Information file (*.pnf) is a binary representation of an INF file compiled by the operating system.

YouTube Encyclopedic

  • 1/3
    Views:
    49 360
    976
    11 772
  • Make undeletable autorun file in USB stick
  • [Solved] How to Fix .inf file for Brother printer unknown needed
  • nvidia INF modding - quick guide (x64)

Transcription

Structure

The structure of an INF file is very similar to that of an INI file; it contains various sections that specify the files to be copied, changes to the registry, etc. All INF files contain a [Version] section with a Signature key–value pair specifying the version of Windows that the INF file is meant for. The signature is commonly $CHICAGO$ (for Windows 9x) or $WINDOWS NT$ (for Windows NT/2K/XP). Most of the remaining sections are user-defined and contain information specific to the component being installed. An example of an INF file might have something like this:

[autorun]
open=example.exe

What this would do is open the example.exe file automatically whenever the media containing the file (in its root directory) is connected to the computer. This can be dangerous, as there is no way to tell whether such a file exists before inserting the media. Since Windows XP, however, this feature has been replaced with a menu forcing the user to choose which action to take.

INF Files can sometimes be dangerous on Windows 2000 as they may allow viruses to autorun without prompting.[citation needed] They are blocked on Windows 7, but can be worked around. [4]

[autorun]
open=example.bat
icon=cd.ico

icon=*.ico command replaces any old or default drive icon with the specified one. [autorun] can be replaced by [AutoRun] or [Autorun].

Registry values

The INF file may specify values for Windows Registry entries. Drivers providers and users may for instance use this feature to override display Extended Display Identification Data (EDID) metadata for displays that have corrupted ROM memory.[5]

See also

References

  1. ^ tedhudek. "Overview of INF Files - Windows drivers". learn.microsoft.com. Retrieved 2022-11-29.
  2. ^ lorihollasch. "Creating an INF file for a file system driver - Windows drivers". learn.microsoft.com. Retrieved 2022-11-29.
  3. ^ Norton, Peter; Mueller, John Paul (28 October 1997). Peter Norton's Complete Guide to Windows XP. Pearson Education (published 1997). ISBN 9780132715386. Retrieved 2014-08-31. Look in the \WINDOWS\INF directory, and you'll see a set of INF files.
  4. ^ "How To Auto-Launch Apps With A USB Stick [Windows]". 22 September 2011.
  5. ^ lorihollasch. "Manufacturer override of monitor EDIDs - Windows drivers". learn.microsoft.com. Retrieved 2022-11-29.

External links

This page was last edited on 17 February 2024, at 14:32
Basis of this page is in Wikipedia. Text is available under the CC BY-SA 3.0 Unported License. Non-text media are available under their specified licenses. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc. WIKI 2 is an independent company and has no affiliation with Wikimedia Foundation.