Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations MikeeOK on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Citrix and change regional settings

Status
Not open for further replies.

millot3ban

IS-IT--Management
Sep 24, 2003
1
US
I installed Citrix Metaframe XPe and published some applications, one of the applications i can not access it form the client side, every time i try to access the application using ICA 7.0 client I get an error message "You have to change your regional setting to MM/dd/yyyy".
I already have the regional settings "MM/dd/yyyy" on both the server and the client machines. I even edited the registry on both server and desktop to reflect the requested format (HKCU-Control panel-International).

I am still getting the same error message.

any one can help.

Thanks
Millo
 
There are 2 dates in International settings.

I have a kix script in the office (at home at present that I will post up in the morning (scottish time).
 
$Inter = "HKEY_CURRENT_USER\Control Panel\International"

WriteValue("$inter", "iCountry", "44", "REG_SZ")
WriteValue("$inter", "iCurrDigits", "2", "REG_SZ")
WriteValue("$inter", "iCurrency", "0", "REG_SZ")
WriteValue("$inter", "iDate", "1", "REG_SZ")
WriteValue("$inter", "iDigits", "2", "REG_SZ")
WriteValue("$inter", "iLZero", "1", "REG_SZ")
WriteValue("$inter", "Measure", "0", "REG_SZ")
WriteValue("$inter", "iTime", "1", "REG_SZ")
WriteValue("$inter", "iTLZero", "1", "REG_SZ")
WriteValue("$inter", "Locale", "00000809", "REG_SZ")
WriteValue("$inter", "sCountry", "United Kingdom", "REG_SZ")
WriteValue("$inter", "sCurrency", "£", "REG_SZ")
WriteValue("$inter", "sDate", "/", "REG_SZ")
WriteValue("$inter", "sDecimal", ".", "REG_SZ")
WriteValue("$inter", "sLanguage", "ENG", "REG_SZ")
WriteValue("$inter", "sLongDate", "dd MMMM yyyy", "REG_SZ")
WriteValue("$inter", "sShortDate", "dd/MM/yyyy", "REG_SZ")
WriteValue("$inter", "sThousand", ",", "REG_SZ")
WriteValue("$inter", "sTime", ":", "REG_SZ")


Note the short and long date !!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top