0

Using PowerShell I need to change multiple values within the following INI file.

From This:

File Name: C:\RDX\config.ini

key=AppLog value=C:\Software Config\AppLog.txt
key=ErrorLog value=C:\Software Config\ErrorLog.txt

To This:

File Name Path: C:\RDX\config.ini

key=AppLog value=D:\RDM\Controls\AppLog.txt
key=ErrorLog value=D:\RDM\Controls\ErrorLog.txt
brink668
  • 595
  • 3
  • 8
  • 13
  • 5
    It's not a standard INI file so you can simply replace the path in the entire file: [How can I replace every occurence of a String in a file with PowerShell?](https://stackoverflow.com/q/17144355) – wOxxOm Sep 23 '16 at 16:01
  • Thank you - that helped. – brink668 Sep 23 '16 at 19:56

0 Answers0