Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Syntax

$cs.Ini_WriteEntry(string filepath, string section, string variable, string value)

Parameters

filepath

Path to ini file

section

...

Variable under section to create or write to

value

Value to write

Example

Code Block
languagepowershell
$inifile="$env:ProgramFiles\QGIS $global:productversion\apps\qgis-ltr\resources\qgis_global_settings.ini"
$cs.Ini_WriteEntry($inifile, "qgis", "checkVersion", "false")

...