How to do Regional Setting Configuration in RDP session ( Eg Date Format, Currency, Decimal Seperator etc)

Hi All,
I am new to Windows Server 2008 R2 administration.
I would like to know is there a way to  do Regional Setting Configuration in RDP session. i.e Date Format, Currency, Decimal Separator etc are based on users local machine.
Eg If a user from UK logs in he should see date format as DD/MM/YY and if user from US logs in he should date format as MM/DD/YY.
We are currently using citrix and we are managing this using logon script that runs based on citrix published application name.
Is there any way we can achieve the same in RDP ?
Thanks in Advance.
Thanks & Regards,
Nithin Kumar

Hi Nithin,
Do you need any other assistance?
Thanks.
Dharmesh Solanki
TechNet Community Support

Similar Messages

  • How do I get Contacts to display yyyy-mm-dd date format?

    How do I get Contacts to display yyyy-mm-dd date format?

    This works in Microsoft Outlook, but not sure if it works in Apple Contacts.
    In System Preferences > Date & Time select Open Language & Region.
    Click on Advanced
    Under the Dates tab you can customize settings.
    You might need to restart your Mac after making the settings.

  • How to change regional setting in group policy?

    Hi guys,
    I have some problem with updating regional setting via group policy.
    On the windows server 2008 r2.  
    User Configuration\Preferences\Control Panel Settings\Regional option.
    On the Regional option, I clicked add and i set the short date formal dd-MMM-yy. But after clicking apply and ok again if i right click the same regional setting , the short date used to change to M/d/yyyy again to the default. 
    Therefore please anyone who has the solution for this issue , please help me..

    Hi,
    >>But after clicking apply and ok again if i right click the same regional setting , the short date used to change to M/d/yyyy again to the default. 
    What's the color of the underline of the setting? If it's Red, to enable the setting configured, you need to press F6 to make the underline turn
    Green.
    Regarding this point, the following article can be referred to for more information.
    Enable and Disable Settings in a Preference Item
    http://technet.microsoft.com/en-us/library/cc754299.aspx
    Best regards,
    Frank Shen
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • How to fomat a number cell to show up in Date format in FR in 11.1.1.3

    I developed a Financial Report using Essbase connection (Cannot create as Planning connection due to some restraints).
    I have a date type field in the report.The cell is displaying 20120123 which is fine since I am using the Essbase connection. But I would like it to be in a Date format (1/23/12) .
    Does anyone know as to how can I do this or its even possible ?
    Thanks in advance

    Hi,
    Have you tried the Date Function
    for example
    if the date is April 24:
    <<Date("dd-M-yy")>> displays 24-4-02
    <<Date("dd-MM-yy”)>> displays 24-04-02
    <<Date("dd-MMM-yy")>> displays 24-Apr-02
    <<Date("dd-MMMM-yy")>> displays 24-April-02

  • Bought  2012 I Mac already set up how do I access set up assistance to transfer my data from old PC david

    Hope someone can help I bought the iMac almost new and now want to transfer by date from my old PC

    Here's information on the Migration Assistant workflow for transferring data from a PC:
    http://support.apple.com/kb/HT4796
    Matt

  • JDeveloper Team: How Do I minimize the number of Oracle Sessions using Data Tags?

    I am trying to create a stateful application thru my JSP pages. Everytime there is a reference to the application module using the data tag, it looks like it creates a new Oracle Session. But thats not what I want to do.
    I have a module in which my first JSP page allows viewing of the data and in subsequent pages I allow insert, update, delete, commit etc.
    My Questions:
    1) The problem that I am encountering is that every new page that I go to creates a new Oracle session even though I specify the "Stateful" release mode.
    How do I avoid this?
    It looks like , if one browser user can potentially create 10-20 oracle sessions thru one module, imagine what the impact will be when we have hundreds of users.
    2) The sample JSP pages I saw has the username and password hard coded in it every time. Why? For a stateful application can I not specify the username and password just once and have the other JSP pages use the same userid and password.
    What are the pros and cons? I thought if I don't use the username and password in all the JSP pages then it probably will not create additional Oracle sessions but that is not true!!
    3) If it creates several Oracle sessions , will it not cause locking problems? If so, How do I minimize locking problems in a stateful application.
    JDeveloper Team Please advise!!
    AM I missing something? I would appreciate if someone can help me out!
    null

    Thanks a lot for the information. That thread was indeed very helpful. But it still didn't answer all my questions:
    1) In the thread you mentioned, it mostly talks about Web beans. In a jsp page (using Web bean) we need to first invoke setReleaseApplicationResources(true) and then invoke releaseApplicationResources().
    Does this apply to data tags? I mean I have a tag <jbo:ReleasePageResources releasemode="Stateful" />. Is this enough to release the application module back to the pool or do I have to have something equivalent of setReleaseApplicationResources(true)?
    2. In a stateful application, the state of an application is maintained between requests via a browser cookie. For each browser, you can have one state per application module class. I was attempting to run "several browser sessions from the same machine" and the end result was that I got errors and unpredictable results ie it returned me far fewer rows then I saw originally. Should I be actually be running the browser session from different machines?
    3. In JDeveloper Documentation (section About Application Module pooling) there is a note section : "If the application module is not recycled the data stays the same. However if the application module was recycled and then activated through a failover, the activation logic re-executes the view objects, so it may bring in more or less rows then originally seen by the clients due to any database updates that have occured."
    This is exactly what is happening to me? How do I get rid of this problem? I want to be able to see all the original rows + any new rows That have been committed. Please advise!
    4. Are the JDBC connections tied to application module instances? Is it one JDBC connection per application module instance? So, in a stateful JSP, if I end up using a different application I also get a different JDBC connection. IS this true?
    5. Does the no of application module instances depend on the no of available JDBC connections? Because it looks like if you set the max no of connections to "5" and set the max no of application module instances to "10", It will be able to instantiate only "5" application module instances due to the limitation set by connection pool.
    6. At times I get errors which indicates that the row in view object does not exist. Is this something familiar? Or is it the same problem that John discussed in his thread.
    Thanks in advance!

  • How is it possible to extend pattern chars valid for Date formatting?

    Hi
    I need to represent Calendar.DAY_OF_MONTH and Calendar.MONTH date fields in one symbol (1,2,3,..,9,A,B,C,D..) and keep working standard patterns
    SimpleDateFormart doesn't give such possibility.
    In a result i want to have something like that:
    ExtDateFormat edf = new ExtDateFormat("yyyy/B/C"); // where B - is month in (1,2,3,..,9,A,B,C), C - is day in (1,2,3,..,9,A,B,C..)
    System.out.println(edf.format(Calendar.getInstance().getTime())); // prints something like "2008/03/D"

    You can extend the wireless range of the AirPort with a D-Link or the other way around ... BUT only if the connection between them is wired. This would be the basis of a roaming network. If you must have them interconnected by wireless, then it will NOT work.

  • DateFormat from regional setting

    Hi,
    I have requirement to display the date in the format what is selected in the system's regional setting.
    I am able pick the format with the help of code written below
    ((SimpleDateFormat)DateFormat.getInstance(DateFormat.Short, Locale.getDefault)).toPattern();
    This is returning me the format in case of US ----> "MM/dd/yy"(Displaying 12/17/07), but systems regional setting shrt date displaying in the format ---> "MM/dd/yyyy".(Displaying 12/17/2007)
    Can anyone give me the idea how I can get the same format.
    Thanks in advance ,
    Rohit

    jcswing wrote:
    Hi,
    I have requirement to display the date in the format what is selected in the system's regional setting.Then you are going to have to write some Windows-specific JNI code to get that information from the registry. It's possible you might find that code on the Internet somewhere, but it isn't part of the standard Java API.

  • HP T410 zero configuration thin client autostart rdp session

    Hello,
    I have several T410 zero config clients. I am able to sucessfully configure teh RDP session. I would like the thin client to automatically launch the configured rdp session. So that when starting up the client or rebooting. The end user would not have to press the connect button for the session to connect. I have looked at the HP device manager console options and searched the thin client setup and have not found a option to have the rdp session automatically launch

    Joe, welcome to the forum.
    I believe that you will receive more responses to your questions if you start a thread here.  They are the members who know more about your situation.
    Please click the "Thumbs up + button" if I have helped you and click "Accept as Solution" if your problem is solved.
    Signature:
    HP TouchPad - 1.2 GHz; 1 GB memory; 32 GB storage; WebOS/CyanogenMod 11(Kit Kat)
    HP 10 Plus; Android-Kit Kat; 1.0 GHz Allwinner A31 ARM Cortex A7 Quad Core Processor ; 2GB RAM Memory Long: 2 GB DDR3L SDRAM (1600MHz); 16GB disable eMMC 16GB v4.51
    HP Omen; i7-4710QH; 8 GB memory; 256 GB San Disk SSD; Win 8.1
    HP Photosmart 7520 AIO
    ++++++++++++++++++
    **Click the Thumbs Up+ to say 'Thanks' and the 'Accept as Solution' if I have solved your problem.**
    Intelligence is God given; Wisdom is the sum of our mistakes!
    I am not an HP employee.

  • How to convert COLUMN_WID to date format mm/dd/yyy

    Hi Experts,
    How do I convert the COLUMN_WID (ex. 20121120) to date format mm/dd/yyy (ex. 11/20/2012) using the RPD in BMM Layer?
    Hope that I convey my questions clearly.
    Thanks,

    Hi,
    By Analysis:Go to edit analysis -->date(YYYYMMDD) column properties--->select Data format tab -->
    enable Override Default Data Format check box and select date format as "Custom" then
    Custom Date Formate mm/dd/yyy then test it
    Also you can do it via evaluate function (analysis/RPD)
    Thanks
    Deva

  • How to set "Configuration Variant" for a sales order item using function

    Hello All,
    I use function module 'SD_SALES_DOCU_MAINTAIN'  to create Customer Indep. Requirements but how to set "Configuration Variant" for a sales order item.
    Is their any idea or sample code?

    Hi Zhijun zhang,
    <u>http://help.sap.com/saphelp_nw2004s/helpdata/en/c0/98038ce58611d194cc00a0c94260a5/content.htm</u>
    <u>http://help.sap.com/saphelp_nw04/helpdata/en/c0/980374e58611d194cc00a0c94260a5/content.htm</u>
    A variant is simply an SAP report where the parameters for running the report have been set by the user and then saved with unique name. This allows future retrieval and execution of the report faster without reentering the parameters. As a convention the variant name should start with with the digits 50 so searchs for LHU variants is easier and quicker.
    The first link will guide you by screen shot wise.
    Award points if it adds information.
    Thanks
    Mohan

  • Satellite L310-D4011: How to reset the DVD Region setting to 0?

    Dear All,
    I have a Satellite L310 D4011 machine which I recently purchased in which I installed a DVD player software.
    I run WinXP. A friend of mine played a music video from UK (Mccartney Live in Red Square) in the DVD player and the original region setting which was at 0 with 5 changes remaining, has gone to 4 changes remaining and the region is now set at 2. I am in India where the region for DVD is 5. If I change to 5, I lose another change option.
    I do not want to let my DVD ROM get stuck at 0 options left and in some other region.
    Can anyone give me an advice to reset the region back to Zero with five options remaining - the way it was when I bought the laptop?
    I shall be extremely grateful. Will the vendor from whom I purchased the laptop be able to set it back to factory setting?
    Best wishes

    Hello
    In my opinion Toshiba has nothing to do with it. To protect movie industry and their interests all notebook manufacturers offer optical disc drives where you can watch movies with different country code but 5 times only. The last chosen region code will be set as default. So if you have 4 more codes there is no reason for panic. Just continue to watch movies from your favourite region area.
    I am 100% sure that Toshiba service or vendor where you purchased your notebook will say that they have nothing to do with it. In drive properties you have clear statement how it works.
    Anyway you can try to contact them and ask for help.

  • How to change a setting in the Java Control Panel with command line

    Hi,
    I am trying to figure out how to change a setting in the Java Control Panel with command line or with a script. I want to enable "Use SSL 2.0 compatible ClientHello format"
    I can't seem to find any documentation on how to change settings in the Java Control Panel via the command line
    Edited by: 897133 on Nov 14, 2011 7:15 AM

    OK figured it out. This is for the next person seeking the same solution.
    When you click on the Java Control Panel (found in the Control panel) in any version of Windows, it first looks for a System Wide Java Configuration (found here: C:\Windows\Sun\Java\Deployment). At this point you must be wondering why you don't have this folder (C:\Windows\Sun\Java\Deployment) or why its empty. Well, for an enterprise environment, you have to create it and place something in it - it doesn't exist by default. So you'll need a script (I used Autoit) to create the directory structure and place the the two files into it. The two files are "deployment.properties" and "deployment.config".
    Example: When you click on the Java Control Panel it first checks to see if this directory exists (C:\Windows\Sun\Java\Deployment) and then checks if there is a "deployment.config". If there is one it opens it and reads it. If it doesn't exist, Java creates user settings found here C:\Users\USERNAME\AppData\LocalLow\Sun\Java\Deployment on Windows 7.
    __deployment.config__
    It should look like this inside:
    *#deployment.config*
    *#Mon Nov 14 13:06:38 AST 2011*
    *# The First line below specifies if this config is mandatory which is simple enough*
    *# The second line just tells Java where to the properties of your Java Configuration*
    *# NOTE: These java settings will be applied to each user file and will overwrite existing ones*
    deployment.system.config.mandatory=True
    deployment.system.config=file\:C\:/WINDOWS/Sun/Java/Deployment/deployment.properties
    If you look in C:\Users\USERNAME\AppData\LocalLow\Sun\Java\Deployment on Windows 7 for example you will find "deployment.properties". You can use this as your default example and add your settings to it.
    How?
    Easy. If you want to add *"Use SSL 2.0 compatible ClientHello format"*
    Add this line:
    deployment.security.SSLv2Hello=true
    Maybe you want to disable Java update (which is a big problem for enterprises)
    Add these lines:
    deployment.javaws.autodownload=NEVER
    deployment.javaws.autodownload.locked=
    Below is a basic AutoIt script you could use (It compiles the files into the executable. When you compile the script the two Java files must be in the directory you specify in the FileInstall line, which can be anything you choose. It will also create your directory structure):
    #NoTrayIcon
    #RequireAdmin
    #Region ;**** Directives created by AutoIt3Wrapper_GUI ****
    #AutoIt3Wrapper_UseX64=n
    #EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
    Func _JavaConfig()
         $ConfigFile_1 = @TempDir & "\deployment.properties"
         $ConfigFile_2 = @TempDir & "\deployment.config"
         FileInstall ("D:\My Documents\Autoit\Java config\deployment.properties", $ConfigFile_1)
    FileInstall ("D:\My Documents\Autoit\Java config\deployment.config", $ConfigFile_2)
         FileCopy($ConfigFile_1, @WindowsDir & "\Sun\Java\Deployment\", 9)
         FileCopy($ConfigFile_2, @WindowsDir & "\Sun\Java\Deployment\", 9)
         Sleep(10000)
         FileDelete(@TempDir & "\deployment.properties")
         FileDelete(@TempDir & "\deployment.config")
    EndFunc
    _JavaConfig()
    Now if you have SCUP and have setup Self Cert for your organization, you just need to create a SCUP update for JRE.
    Edited by: 897133 on Nov 16, 2011 4:53 AM

  • Universe Internationalize - Date Format based on System Regional Setting.

    Hi,
    We have set of universe for our product. I have created Deski and webi reports with date objects using those universes. I ran those report in the Systems which are Austrialia,Canadian and US Locale Settings. Both Deski & Webi report displays the DATE in US format in all the Boxes eventhough regional settings are configured to Aus & Canada.
    Can you pls help me how to make the universe internationalised. Specifically Date Formats? Currently we are focusing only for English speaking countries.
    Thanks,
    Venkateswaran.P

    Hi,
    Have you configured the locale settings In Infoview under 'Preferences' correctly?
    Have a look at the following settings:
    - Preferred Viewing Locale
    - Make sure you check the box for 'Use my preferred locale to format the data'
    Let us know if this works for you
    Regards
    Rim

  • How do I create a session with the datasource set in code not sessions.xml

    I want to create a session where I specify the J2EE datasource name dynamically in code. Normally, I would hard-code a J2EE datasource name in sessions.xml e.g.
    <login>
    <datasource>jdbc/MyApplicationDS</datasource>
    <platform-class>oracle.toplink.platform.database.oracle.Oracle10Platform</platform-class>
    <uses-external-connection-pool>true</uses-external-connection-pool>
    <uses-external-transaction-controller>true</uses-external-transaction-controller>
    </login>
    However, we don't want to use a hard-coded string "jdbc/MyApplicationDS". We want to be able to set this at runtime.
    I found this in the App Developer's Guide:
    Configuring an External Connection Pool in Java
    To configure the use of an external connection pool in Java:
    1. Configure the DataSource on the server.
    2. Configure the Login to specify a DataSource and the use of an external connection pool:
    login.setConnector(
    new JNDIConnector(new InitialContext(), "jdbc/MyApplicationDS"));
    login.setUsesExternalConnectionPooling(true);
    and this:
    Configuring Sessions with the sessions.xml File
    OracleAS TopLink provides two ways to preconfigure your sessions: you can export and compile Java source code from the OracleAS TopLink Mapping Workbench, or use the OracleAS TopLink Sessions Editor to build a session configuration file, the sessions.xml file.
    It seems like I should export and compile Java code that calls login.setConnector(), but I can't find out any information on how to do this. I looked at the MW user guide and I didn't see anything on this.
    I also found this by searching this discussion forum:
    To create a server session completely from code given a project you can use,
    project.getLogin().setConnector(new JNDIConnector(new InitialContext(), "your-datasource-url"));
    project.getLogin().setUserName("");
    project.getLogin().setPassword("");
    Server server = project.createServerSession();
    server.login();
    However, I don't know how to get the project.
    Thanks,
    Vicki

    If you are using a sessions.xml file, you can get your project from your session. Ensure that when you access your session from the SessionManager, that you do not have it login.
    Session session = SessionManager.getManager().getSession("my-session", false);
    session.getProject().setConnector(...);
    session.login();
    If not using a sessions.xml, you can either read your Project from the XMLProjectReader, or instantiate your Project class directly.

Maybe you are looking for