Clarification needed between NET TIME and W32TIME please.

I have been struggling with the difference between NET TIME and W32TIME. I found the following excellent blog:
http://blogs.msdn.com/b/w32time/archive/2009/08/07/net-time-and-w32time.aspx
I do, however, need some clarification that I'm hoping you guys can help with.  Any following conversation assumes a single domain with workstations.
Based on previous knowledge, I always assumed that when running NET TIME on a workstation, it was actually showing which computer on the network this workstation was syncing to.  However, it appears that it is actually just looking for the nearest domain
controller (if possible).  Is that correct?  If so, then NET TIME has no bearing on what the time is set to on the workstation, correct?
With that asked, I suppose I need to focus on W32TIME to configure time on workstations.  I typically prefer to point it to the NTP pool available as it has been reliable for me in the past.  If I need to focus on W32TIME, is it a preferred method
in domains to configure each and every workstation to point to a NTP internet source via GPO?  Alternatively, is there a way to use W32TIME to point to a server to get its time?  For example, point a domain server to an internet NTP source, then
configure all workstations to point to that server.  If that's possible, is it as simple as specifying the FQDN of the time server in my environment during W32TIME setup instead of an internet NTP server?
Thank you for any clarification, I'm hoping to clear up any confusion I have about time to never have to question it again.  I assist in managing many domains and this information will come in very handy.

Hello,
As far as i know net time functions correctly with windows equivalent to win XP.
I will recommend you to configure your domain members to synchronize with the DC's and those DC's the PDC which normally hold this role synchronize with the internet. This is for normal domain hierarchy(Nt5DS).
Some commands to be run to get information:w32tm /query /source or w32tm /query /configuration from the cmd line
http://technet.microsoft.com/en-us/library/cc773263(v=ws.10).aspx
http://support.microsoft.com/kb/816042
Configuration of PDC:
http://technet.microsoft.com/en-us/library/cc786897(v=ws.10).aspx
Domain members configuration:
http://technet.microsoft.com/en-us/library/cc758905(v=ws.10).aspx
But all these configurations can be made from the group policy.
Hope it helps
Fred

Similar Messages

  • Relation between RFC time and Roll wait time

    Hello
    What is the relation between RFC time and Roll wait time?
    In a diagram from E2E100 training I took recently the relationship is made out to be:
    RFC+CPIC = some processing time + Roll wait time
    Something like this
    Processing----
    Roll wait-------
    Roll in
    RFC+CPIC----
    In the diagram I saw it shows that roll out occurs during processing.
    Assumming that the user context rolls out and then rolls in again, wouldn't "Wait" time occur when the request comes back and the dispatcher has to assign the request to a work process?
    Is this wait time calculated as "Wait" time or is it calculated as "Roll wait" time?
    I was forced to think about this because of a STAD record I have with high Roll wait time, but with low RFC time as well as zero GUI time. If "Wait" time when the request comes back from RFC is included in "Roll wait" then it might explain what i'm seeing.
    Kind regards,
    Peter

    Hello Santosh,
    Thank you for your reply.
    I would like to know how time spend in the dispatcher by a request coming back from an RFC is calculated.
    When the RFC is made the user context is rolled out of the work process so the work process becomes free. When the RFC comes back it has to be assigned to a new work process. This means that a bit of time would need to be spent in the dispatcher. Would this time be measured as "wait" time or is it part of "Roll wait time?
    From the definition you gave of "Roll wait time", "it is the time dedicated by the R/3 system to waiting for the return value of an RFC call plus the CPIC time required to create the connection for that RFC to an outside system", one would think that the time spent in the dispatcher by a returning RFC would be measured as "wait time" the same as when the dialog request first comes in from the front end. I've never seen a diagram that explained this satisfactorily.
    Kind regards,
    Peter

  • I lost my ipad and i need the serial number and IMEI , please help me how?

    i lost my ipad and i need the serial number and IMEI , please help me how?

    If you have registered your device, you can go to https://supportprofile.apple.com/ and log into your apple id.  Your devices appear there with serial numbers.
    Additionally, your serial number is included on the original receipt when purchased at any Apple Online or Apple Retail store, or any Authorized Apple Reseller.

  • Getting difference between GMT time and Local time

    Folks,
    I am trying to get difference between gmt time and local time for Korea time zone.
    which should be 9 hours.
    Instead of 9, I am getting 15 hours diff.
    What am I doing wrong?
    Here's what I did to test it:
    First I set the system (Windows XP) time zone to Soul (Korea GMT+9hours) time zone.
    Then I ran the following program, and I got 15 hour diff, not 9.
    Thank you in advance!
    import java.util.*;
    public class Using_GregorianCalendar
         public static void main(String args[])
              Using_GregorianCalendar ugc = new Using_GregorianCalendar();
              ugc.getTimeDiff();
         public void getTimeDiff()
              Calendar cal = new GregorianCalendar(TimeZone.getTimeZone("GMT"));
              Calendar cal1 = new GregorianCalendar(cal.get(Calendar.YEAR),
                                           cal.get(Calendar.MONTH),
                                           cal.get(Calendar.DATE),
                                           cal.get(Calendar.HOUR_OF_DAY),
                                           cal.get(Calendar.MINUTE),
                                                      cal.get(Calendar.SECOND));
            int gmtHour          =  cal.get(Calendar.HOUR); //(Calendar.HOUR_OF_DAY);
            int gmtHourOfDay =  cal.get(Calendar.HOUR_OF_DAY);
            int gmtMonth        =  cal.get(Calendar.MONTH);
            int gmtYear          =  cal.get(Calendar.YEAR);
            int gmtMinute       =  cal.get(Calendar.MINUTE);
            int gmtSecond     =   cal.get(Calendar.SECOND);
            int gmtDate         = cal.get(Calendar.DATE);
            Calendar localCal  = Calendar.getInstance();
            int localHourOfDay = localCal.get(Calendar.HOUR_OF_DAY);
            int timeDiff = (localHourOfDay - gmtHourOfDay);
              //Korea time is GMT + 9 hours so I should get a difference of 9
              //why am I getting difference of 15?
                 System.out.println("************** in getTimeDiff() **********************");
              System.out.println("gmtDate: "+gmtDate);
              System.out.println("gmtHour: "+gmtHour);
              System.out.println("gmtHourOfDay: "+gmtHourOfDay);
              System.out.println("localHourOfDay: "+localHourOfDay);
              System.out.println("timeDiff: "+timeDiff);
              System.out.println("**********************************************************");
         }//getTimeDiff()
    }//class Using_GregorianCalendar
    /*              here's the output of this program:
         ************** in getTimeInGMT() **********************
         gmtDate: 14
         gmtHour: 6
         gmtHourOfDay: 18
         localHourOfDay: 3
         timeDiff: -15
    */

    DrClap wrote:
    sabre150 wrote:
    Nearly correct since the Daylight saving may or may not be in effect which does depend on the date...I would simplify that to this:
    TimeZone korea = TimeZone.getTimeZone("Asia/Seoul");
    long delta = korea.getOffset(new Date().getTime());
    System.out.println(delta / (1000.0 * 60 * 60));That's assuming that the OP really meant UTC when he/she said "GMT". Most people don't realize there's a distinction and that Java's timezones are all based relative to UTC.I suspect you are right in assuming that the OP want UTC and not GMT. I figured it was better to illustrate that the method can be used for getting the time difference between any two TimeZones.

  • Can you please differentiate between compile time and runtime?

    hi,
    I heard many of them speaking about complie time and runtime. I sometimes feel they talk about it but they themselves don't know about it.
    Please help me out.
    Thanks in anticipation
    Regards
    Deepa Datar

    Just remember, runtime means you are running the program. Compile time means your are in the process of building the program ("javac bla.java").

  • Need BR's Functiona and Cmds--- please help me

    Hi All,
    I need all the functions and cmds that are used in BR's and calc scripts in Essbase and Planning...
    I'm attending interviews so I need them very very very urgently
    if you have doc for the sam eit would be a grt help for me... for version 11.1.2
    Please this is very urgent for me...
    Vijay

    If you extract the files and then open index.html it will open the document catalog
    Go to the essbase section - Technical Reference - this will contain calc script commands and functions.
    Go to the Financial PM application section - Hyperion Business Rules - Administrators guide will contain further information about Business Rules
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Conversion between local time and UTC: Anomaly at Daylight saving time edge

    Hi all,
    I want to convert back and forth between local time including all peculiarities like DST etc. This is the core of my code:
        Date d=new Date(toEpoch());
        Calendar cal=Calendar.getInstance(tz);
        cal.setTime(d);
        int offs=(cal.get( Calendar.ZONE_OFFSET )+cal.get( Calendar.DST_OFFSET ));
        System.out.println("zone_offset: "+cal.get( Calendar.ZONE_OFFSET )+", dst_offset: "+cal.get( Calendar.DST_OFFSET )+", offset: "+offs);
        Calendar cal2=Calendar.getInstance(TimeZone.getTimeZone("Etc/UTC"));
        System.out.println(cal2.getTimeZone().getID());
        cal2.setTime(d);
        cal2.add(Calendar.MILLISECOND,-offs);
        d=cal2.getTime();Looks (and, actually, is) rather complicated. I take two different calendar objects to be absolutely sure that no accidental DST conversion hits me on the UTC side.
    The general case works as expected:
    Date (fourteen digits, 'x'=Exit): 20050909190000
    Entered date: Fr, 9.9.2005, 19:00
    zone_offset: 3600000, dst_offset: 3600000, offset: 7200000
    Etc/UTC
    Date in UTC:  Fr, 9.9.2005, 17:00I live in timezone Europe/Berlin, so during DST we have GMT+2. Let's see what's happening on christmas (non-DST):
    Date (fourteen digits, 'x'=Exit): 20051224180000
    Entered date: Sa, 24.12.2005, 18:00
    zone_offset: 3600000, dst_offset: 0, offset: 3600000
    Etc/UTC
    Date in UTC:  Sa, 24.12.2005, 17:00As expected!
    Now, we enter the dark zone of DST: Each year DST is turned on and off and it seems as if this leads to problems in both cases. Let's start with the next event of this case: At Oct., 30th, 2005, DST is turned off between 2:00 and 3:00 at night. So, we have once 2:30 with DST and (one hour later) 2:30 again without DST. Java, however, garbles things completely (I'm leaving the unneeded lines of my debug output out now):
    Entered date: So, 30.10.2005, 01:59
    zone_offset: 3600000, dst_offset: 3600000, offset: 7200000
    Date in UTC:  Sa, 29.10.2005, 23:59
    Entered date: So, 30.10.2005, 02:00
    zone_offset: 3600000, dst_offset: 0, offset: 3600000
    Date in UTC:  So, 30.10.2005, 02:00
    Entered date: So, 30.10.2005, 02:30
    zone_offset: 3600000, dst_offset: 0, offset: 3600000
    Date in UTC:  So, 30.10.2005, 02:30
    Entered date: So, 30.10.2005, 02:59
    zone_offset: 3600000, dst_offset: 0, offset: 3600000
    Date in UTC:  So, 30.10.2005, 02:59
    Entered date: So, 30.10.2005, 03:00
    zone_offset: 3600000, dst_offset: 0, offset: 3600000
    Date in UTC:  So, 30.10.2005, 02:00So, directly before the DST change, offset is computed correctly. From 3:00 onward, also. But in between, Calendar does neither take an offset of two hours (what would be somehow correct) nor one hour (also somehow correct). Even though it predicts to take the one-hour zone offset into consideration, "GMT" time is actually the same as local time.
    Things become even wireder at the other edge of the DST time range: This year, DST began on March, 27th, 2005: Let's see what is happening:
    Entered date: So, 27.3.2005, 01:59
    zone_offset: 3600000, dst_offset: 0, offset: 3600000
    Date in UTC:  So, 27.3.2005, 00:59
    Entered date: So, 27.3.2005, 02:00
    zone_offset: 3600000, dst_offset: 3600000, offset: 7200000
    Date in UTC:  So, 27.3.2005, 00:00
    Entered date: So, 27.3.2005, 02:30
    zone_offset: 3600000, dst_offset: 3600000, offset: 7200000
    Date in UTC:  So, 27.3.2005, 00:30
    Entered date: So, 27.3.2005, 02:59
    zone_offset: 3600000, dst_offset: 3600000, offset: 7200000
    Date in UTC:  So, 27.3.2005, 00:59
    Entered date: So, 27.3.2005, 03:00
    zone_offset: 3600000, dst_offset: 3600000, offset: 7200000
    Date in UTC:  So, 27.3.2005, 00:00
    Entered date: So, 27.3.2005, 04:59
    zone_offset: 3600000, dst_offset: 3600000, offset: 7200000
    Date in UTC:  So, 27.3.2005, 01:59
    Entered date: So, 27.3.2005, 05:00
    zone_offset: 3600000, dst_offset: 3600000, offset: 7200000
    Date in UTC:  So, 27.3.2005, 03:00While at 1:59, everything is ok, 2:00 is handled as within DST. That's ok, as the hour between 2:00 and 3:00 did not exist in that night in our local time zone, but at 3:00 the system totally screws up things as it suddenly subtracts three hours (while pretending to use two hours). This goes on until 5:00 in the morning when time is shown correctly again.
    Can anyone help me? What am I doing wrong? How do I actually convert correctly between a DST-aware local time zone and GMT/UTC?
    Best regards,
    Dirk

    Well, I would not say I did "just about everything" wrong. Actually, Calendar is not GMT-only as it has time zone information and converts its internal time according to that information if I use the getTime() function (what I do).
    In my applications, I handle dates in my own data structures. My EDate object (which is part of the QJCC library hosted on SourceForge) stores years, months, days, minutes, hours, and seconds seperately. Using this class, I managed to get an actually working time zone conversion this way:
      public void toUTC(TimeZone tz) {
        Calendar cal=Calendar.getInstance(tz);
        cal.clear();
        cal.set(year,month-1,day,hour,minute,second);
        int offs=(cal.get( Calendar.ZONE_OFFSET )+cal.get( Calendar.DST_OFFSET ));
        //System.out.println("zone offset: "+cal.get( Calendar.ZONE_OFFSET )+", DST offset: "+cal.get( Calendar.DST_OFFSET ));
        second-=(offs/1000);
        normalize();
    normalize() does something similar to the lenient stuff in Calendar.
    I will now write the method for the other direction. The most interesting item will be the answer to the question:
    "Tell me the correct DST_OFFSET in TimeZone X when I have the actual point of time given in UTC."
    Perhaps someone can give me a hint?!?

  • Time difference between local time and server time

    Hi Guys,
    I am currently experiencing a time difference of 40 minutes between the local time and the current server time.
    The local time seems to be 40 minutes slower than my current time.
    Path for Local Time : CMC -> home -> servers -> input.file repository sever -> metrics tab.  (Under the category of Installed on machine peacok, there is a local time.
    Question is how can i sync the local time with my current server time?
    Let me know if more info is required.
    Rgds
    Collin

    Hi Collin,
    Under  CMC >Home >Input FRS , the local time shown is current time of BO Server.
    Since CMC is web-based, any date, time value will be coming from BO Server box.
    u2022     In case your system and BO server is in same time zone  then update the date-time of BO Server
    u2022     In case your system and BO server is in different time zone then check with IT team to figure out the BO Server will be maintained in which time zone.
    u2022     If current requirement is specific to some report then you can add 40 min in all date value in report to get the desired result.
    Thanks,
    Sushil

  • Walkman needs a sleep timer and a lock screen widget

    I really would recommend a sleep timer and a lock screen widget.

    The timer has been requested before. As for the lock screen widget it is there whenever you play music. 
    "I'd rather be hated for who I am, than loved for who I am not." Kurt Cobain (1967-1994)

  • Issue:Link  between Overt time and Payroll

    What is the linkup between the overtime&payroll?
    Regards,
    chikky.
    Please use proper Texts for the queries
    Edited by: Sikindar on Jul 19, 2011 4:29 PM

    Time and Payroll Gets integrated through Sub Schema XT00
    OT can be paid with the help of Time evaluation by Passing no of hours from TE to Payroll and valuating them in Payroll
    or else in case of No time Evaluation you can Process the overtime thorught IT2010 and process in the payroll
    so wht exactly are you looking at for

  • Differenct between Net Value and Document Value on a sales order

    Can someone please explain what is the difference between the Net Value that we see on the sales order (VA03) and the 'Document Value' thats checked against in Dynamic credit checking?
    Thanks

    In transaction FD32, you maintain credit limit for customer and assign risk category for the customer.
    In transaction OVA8, there are two main types of checks - Static or Dynamic.
    System checks the following for arriving at customers credit status-
    Static credit check - It compares the credit limit assigned to the customer to the total value of open sales orders, plus the total value of open deliveries not yet invoiced, plus the total value of open billing documents not yet passed on to accounting, plus the total value of billing documents that have been passed on to accounting, but which have not yet been paid by the customer.
    Dynamic credit check - It compares customeru2019s credit limit to the total of open sales orders not yet delivered, plus the total value of open deliveries not yet invoiced, plus the total value of open billing documents not yet passed onto accounting, plus the total value of billing documents that have been passed onto accounting, but which have not yet been paid by the customer. In addition you can use Horizon functionality also.
    You can perform additional checks in addition to dynamic or static credit check. One of them is document value check.
    If you check this box then a additional credit check is done when the maximum document value assigned is exceeded. This is useful if business requires that all sales orders above a certain limit are to be blocked.
    In your case, the document value is $0.00.
    So system is not doing any additional credit check.
    It would just do Dynamic or Static credit check with relevant assignment maintained in transaction FD32 for the said customer.

  • I lost all my data because i reset my mac and i need it back, i created a new account, and i need all my data and documents Please help.

    I Lost all my data because i forgot my password and reset my mac, and i need it all back Please help!!

    What do you mean by "reset my mac"?

  • How do I set up iPhoto '11 version 9.2.1 to send emails with medium/Large/actual size? I try sending photos to a publisher and iPhoto automatically shrinks them to about 40 kB.  Publisher needs between 0.5 and 7 MB.  My ISP has a limit of 12MB

    How can I get to email photos at higher resolution?
    My "iPhoto" or "Mail" automatically reduces photos to about 40 KB .
    My photos, taken with a  common Panasonic Lumix DMC-TZ20 include flora which I send to a publisher.
    I am fairly new to my MacBook (Mac S X Version 10.6.8).  I have been using it for a year.
    I found I could not successfully send Large or Full size photos.
    A few days ago I downloaded a new version of iPhoto (iPhoto '11 version 9.2.1).
    Again, although I get the option of choosing to send small/medium/large//full size photos, it actually only sends them as "Small" (ie about 40kb) which is useless to publish.  If I drag a picture onto the desktop (where my EXIF tells me it is full size) then attach it to an email by dragging, againg the sent email is at "small" size ~40KB).
    My ISP (Westnet) tells me that their maximum accepted size is 12 MB.
    I suspect that I have failed to set up iPhoto for this purpose.  (I am well into retirement but, although geriatric, did study University Physics about half a century ago)

    Also, just a note.   iMac PPC is about iMacs that were available up to early 2006.    iMac Intel is for iMacs that were made available early in to 2006 to present.  Forums for what you have in your profile include:
    https://discussions.apple.com/community/mac_os/mac_os_x_v10.6_snow_leopard
    https://discussions.apple.com/community/ilife/iphoto
    https://discussions.apple.com/community/notebooks/macbook
    Please consider posting and reviewing those locations in the future when you have a question that pertains to one of those products.  You'll much more likely get a resposne then.   This is a user to user forum, and you have to seek knowledge in the areas that are most likely to have the topic of your interest.

  • I have to wait for about 5 minutes between Loading time and Welcome screen

    it takes me quite a long time to wait i don't why. it worked normally before i installed a new type of Internet Explorer(7.0), after that i restarted my computer i have to wait about 5 minutes to see the Welcome screen. Can any one help me, thank you

    Hi,
    Check the installation and the system permission of your machine and check if the version is Beta 2 or Beta 3. What's for a Service Pack is on your Machine.
    By the installation from IE7 is a eventually possible a Installation from MS Defender. Check it.
    Make it a reinstallation from IE7 and make a new Installation.
    IE 7
    http://www.microsoft.com/windows/ie/downloads/default.mspx#ie7Downloads

  • Difference between Design Time and Runtime

    Hi all, very nice to be here sharing knowledge with each other.
    I wanna share my practical experince knowledge that is ,
    Almost all the properties that can be set at the Design time for any object can also be set at the Run-time using only
    GET_object_PROPERTY and SET_object_PROPERTY.
    In fact, I have posted the same info on some othr place, too.
    Thanx.

    Hi all, very nice to be here sharing knowledge with each other.
    I wanna share my practical experince knowledge that is ,
    Almost all the properties that can be set at the Design time for any object can also be set at the Run-time using only
    GET_object_PROPERTY and SET_object_PROPERTY.
    In fact, I have posted the same info on some othr place, too.
    Thanx.

Maybe you are looking for