I think that to reset the game we should ship, with installers (only, since only there we know the exact setup), a POSIX and a Windows batch script which is accessible from the window managers' menu. Once run, these would prompt the user, then delete either all of $UserDataRoot, or, alternatively, both glestuser.ini and glestuserkeys.ini (which one is the better option?).
Am I correct in assuming that "$userDataRoot" is the MegaGlest user folder containing the INI files along with downloaded mods? If so, I think that it'd be better to delete just the INI files, if that alone is enough to solve the problem. That way there's no need to redownload mods (or back them up before running a script).
Also, here's a batch script for deleting just the two INI files:
cd %APPDATA%/megaglest/
DEL /P *.ini
Should work for all versions of Windows NT. Note, however, that the windows command line is a bit buggy about drives. The CD command to change folders disregards the drive. As a result, if you're running the command line on drive F and want to change folders to appdata (which will be in drive C always, unless you manually moved it and make a symbolic link; Windows isn't very friendly with multiple drives), the cd command will fail since you're changing to a different drive. The only way to change drives is to manually type the drive letter followed by a colon (and interestingly, a prior cd command will be applied after changing drives). As far as I can tell, there's no way to derive the drive letter from the path of %appdata%. What does all this mean? The batch script must be on the same drive as appdata to work. So ideally, it would be in appdata and linked to (and if it's in appdata, only the second line is necessary).
Also, the /P flag after the DEL command will prompt the user Y/N to delete.
Oh, and we should also note that the folder containing the user data can be moved. Not sure how to deal with that, but presumably anyone with the experience to move the folder would be able to delete two files easily.