Deletes a value from a standard format .ini file.
| IniDelete, Filename, Section [, Key] | 
Parameters
| Filename | The name of the .ini file, which is assumed to be in %A_WorkingDir% if an absolute path isn't specified. | 
| Section | The section name in the .ini file, which is the heading phrase that appears in square brackets (do not include the brackets in this parameter). | 
| Key | The key name in the in the .ini file. If omitted, the entire Section will be deleted. | 
ErrorLevel
ErrorLevel is set to 1 if there was a problem or 0 otherwise. However, if the script is of type .aut (AutoIt v2), ErrorLevel is not changed (for compatibility reasons).
Remarks
A standard ini file looks like:
[SectionName]
Key=Value
Related
Example
 IniDelete, C:\Temp\myfile.ini, section2, 
  key