I currently work for a School district and we are trying to create a C# exe for our toolkit. We are new to C# and are learning it but want to use it due to its flexibility. The C# toolkit will be used to automatically set up new or reimaged computers with settings, programs, Regedit changes, and preferences we have chosen.
We have a working version we hard coded in powershell that we are transferring over to c#.
The question we currently have is how we could use a settings/config file such as an ini or xml to pull generic information from and populate our functions and variables. This would be so we could create general config files we could select and run. For Example:
[Server]
IP=172.1.0.10
Port=9999
PathToCSV=\\c:\Files.csv
[Client]
RestartComputerAfterScript=1
Install.Browser.Firefox=1
Install.Browser.Chrome=1
Install.Java=0
Install.PrinterLogic=1
SysConfig.TempLoc=d:\TEMP
This ini file would be selected from our C# GUI and populate that:
- The computer would restart after script was run using value 1
- Firefox would be installed using value 1
- Java would not be installed using value 0 etc.
We eventually will also try to pass in other variables like registry paths and values, etc.
Does anyone have a suggestion on how we could use an INI or have a better suggestion for creating build config files?
Resources I have looked into: INI: https://www.codeproject.com/Articles/1966/An-INI-file-handling-class-using-C
If you're open to other file formats, I would use JSON, because of its simplicity and ease of use.
Using the wonderful library Newtonsoft.Json:
Modal Classes:
config.json:
Read the file from disk:
Save a config file: