Hi, It' s possible of course and i have to search a lot to find how to do. First you could have : dispatch.skipStep("languagesupport") line in your installclasses/myserver_installation.py file.Like this you're going to bypass the graphical language support screen during installation. Then go in language.py and modify as you want the lines like this : --- language.py 2004-06-08 20:52:15.000000000 +0200 +++ language.py.modif 2005-07-13 19:27:24.233931800 +0200 @@ -190,8 +190,10 @@ def __init__ (self): self.info = {} self.info["SUPPORTED"] = None - self.supported = [] - self.default = None + #self.supported = [] + self.supported = ['English (USA)'] + #self.default = None + self.default = 'English (USA)' self.allSupportedLangs = [] self.langInfoByName = {} Hope this could help you Vincent