How to change WB language via WB scripting?

Rohith Patchigolla
Rohith Patchigolla Member, Moderator, Employee Posts: 206
100 Comments 25 Answers Second Anniversary 25 Likes
✭✭✭✭

I want to change the WB language settings from German to English via Script.

Answers

  • Rohith Patchigolla
    Rohith Patchigolla Member, Moderator, Employee Posts: 206
    100 Comments 25 Answers Second Anniversary 25 Likes
    ✭✭✭✭

    Simply run the below script in WB scripting console to modify the Language setting to English.

    SetPreferenceValue("Language",'en-us')

    For German, one could use,

    SetPreferenceValue("Language",'de' )