How to auto configure locale settings on factory imaged machines using gateway variable (cs.ini)??

Pertanyaan How to auto configure locale settings on factory imaged machines using gateway variable (cs.ini)??

  • Monday, December 03, 2012 3:55 PM
     
     

    In my organisation we are using gateway dependancy for setting certain locale settings. Every site has it's own specific settings.

    For daily deployments this works fine. However, on computers that are pre-installed in the factory (Dell) these settings have to be set afterwards. We use a different task sequence to finish the Post OS deployment. (joining domain etc etc). Preferably no user interaction is required when connecting a factory machine.

    QUESTION: Is there a way to auto apply these locale settings in the Post OS task sequence depending on the gateway? Thank you for thinking along...

    ========================

    [Settings]
    Priority=Default,DefaultGateway
    Properties=MyCustomProperty

    x.x.x.x=NL

    [NL]
    KeyboardLocale=
    SystemLocale=
    UserLocale=
    TimeZoneName=

All Replies

  • Monday, December 03, 2012 5:00 PM
     
     

    Rather than having "x.x.x.x=NL" and then [NL], try just having [x.x.x.x] as the section header.

    for example

    [Settings]
    Priority=Default,DefaultGateway
    Properties=MyCustomProperty

    [10.10.10.1]
    KeyboardLocale=
    SystemLocale=
    UserLocale=
    TimeZoneName=

  • Monday, December 03, 2012 5:02 PM
     
     

    Alternatively

    [Settings]
    Priority=Default,DefaultGateway
    Properties=MyCustomProperty

    [DefaultGateway]

    x.x.x.x=NL

    [NL]

    KeyboardLocale=
    SystemLocale=
    UserLocale=
    TimeZoneName=

    which is very similar to what you had originally, just with the [DefaultGateway] header added