Regarding Log4.xml to add timestamp in log file

Dear Sir,
Could you guide me how to append the timestamp got appeared in log file which has been generated from Log4j.xml?? This is my Log4j.xml.
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE log4j:configuration SYSTEM "log4j.dtd"> <log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/"> <!-- Order of child elements is appender*, logger*, root?. --> <!-- Appenders control how logging is output. --> <appender name="CM" class="org.apache.log4j.FileAppender"> <param name="File" value="Master.log"/> <param name="Threshold" value="DEBUG"/> <param name="Append" value="true"/> <param name="MaxFileSize" value="1MB"/> <param name="MaxBackupIndex" value="1"/> <layout class="org.apache.log4j.PatternLayout"> <!-- {fully-qualified-class-name}:{method-name}:{line-number} - {message}{newline} --> <param name="ConversionPattern" value="%C:%M:%L - %m%n"/> </layout> </appender> <appender name="stdout" class="org.apache.log4j.ConsoleAppender"> <param name="Threshold" value="INFO"/> <layout class="org.apache.log4j.PatternLayout"> <param name="ConversionPattern" value="%C:%M:%L - %m%n"/> </layout> </appender> <!-- Logger hierarchy example: root - com - com.ociweb - com.ociweb.demo - com.ociweb.demo.LogJDemo --> <!-- Setting additivity to false prevents ancestor categories for being used in addition to this one. --> <logger name="com.tf" additivity="true"> <priority value="DEBUG"/> <appender-ref ref="CM"/> </logger> <!-- Levels from lowest to highest are trace, debug, info, warn, error, fatal & off. --> <!-- The root category is used for all loggers unless a more specific logger matches. --> <root> <appender-ref ref="stdout"/> </root> </log4j:configuration> It would be great, if you could give the solution for this. There is no probs in getting timestamp from the folowing properties file Log4j.properties: # # Configure the logger to output info level messages into a rolling log file. # log4j.rootLogger=DEBUG, R log4j.appender.R=org.apache.log4j.DailyRollingFileAppender log4j.appender.R.DatePattern='.'yyyy-MM-dd # # Edit the next line to point to your logs directory. # The last part of the name is the log file name. # log4j.appender.R.File=c:/temp/log/${log.file} log4j.appender.R.layout=org.apache.log4j.PatternLayout # # Print the date in ISO 8601 format # log4j.appender.R.layout.ConversionPattern=%d %-5p %c %L - %m%n but i need it from Log4j.xml
thanks in advance mani

Dear Sir,
Could you guide me how to append the timestamp got appeared in log file which has been generated from Log4j.xml?? This is my Log4j.xml.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
<log4j:configuration
  xmlns:log4j="http://jakarta.apache.org/log4j/">
  <!-- Order of child elements is appender*, logger*, root?. -->
  <!-- Appenders control how logging is output. -->
  <appender name="CM" class="org.apache.log4j.FileAppender">
     <param name="File" value="customer_master.log"/>
     <param name="Threshold" value="DEBUG"/>
     <param name="Append" value="true"/>
     <param name="MaxFileSize" value="1MB"/>
     <param name="MaxBackupIndex" value="1"/>
    <layout class="org.apache.log4j.PatternLayout">
      <!-- {fully-qualified-class-name}:{method-name}:{line-number}
            - {message}{newline} -->
      <param name="ConversionPattern" value="%C:%M:%L - %m%n"/>
    </layout>     
  </appender>
  <appender name="stdout" class="org.apache.log4j.ConsoleAppender">
    <param name="Threshold" value="INFO"/>
    <layout class="org.apache.log4j.PatternLayout">
      <param name="ConversionPattern" value="%C:%M:%L - %m%n"/>
    </layout>
  </appender>
  <!-- Logger hierarchy example:
       root - com - com.ociweb - com.ociweb.demo - com.ociweb.demo.LogJDemo
  -->
  <!-- Setting additivity to false prevents ancestor categories
       for being used in addition to this one. -->
  <logger name="com.tf" additivity="true">
    <priority value="DEBUG"/>
    <appender-ref ref="CM"/>
  </logger>
  <!-- Levels from lowest to highest are
       trace, debug, info, warn, error, fatal & off. -->
  <!-- The root category is used for all loggers
       unless a more specific logger matches. -->
  <root>
    <appender-ref ref="stdout"/>
  </root>
</log4j:configuration>It would be great, if you could give the solution for this. There is no probs in getting timestamp from the folowing properties file Log4j.properties:
# Configure the logger to output info level messages into a rolling log file.
log4j.rootLogger=DEBUG, R
log4j.appender.R=org.apache.log4j.DailyRollingFileAppender
log4j.appender.R.DatePattern='.'yyyy-MM-dd
# Edit the next line to point to your logs directory.
# The last part of the name is the log file name.
log4j.appender.R.File=c:/temp/log/${log.file}
log4j.appender.R.layout=org.apache.log4j.PatternLayout
# Print the date in ISO 8601 format
log4j.appender.R.layout.ConversionPattern=%d %-5p %c %L - %m%nthanks in advance

Similar Messages

  • Add Timestamp to log out put

    Hello,
    I would like to add timestamp to sql output file but can't seem to find the solution on the web.
    Tried to use "set echo on", "set serveroutput on", "set time on" but it does not add timestamp to actual output
    as below example shows.
    set echo on
    set serveroutput on
    set time on
    set linesize 150
    spool dba_ts.log
    select tablespace_name, status, contents, logging
    from dba_tablespaces
    order by tablespace_name;
    spool off
    ========
    13:13:00 SQL>
    13:13:00 SQL> select tablespace_name, status, contents, logging
    13:13:00 2 from dba_tablespaces
    13:13:00 3 order by tablespace_name;
    TABLESPACE_NAME STATUS CONTENTS LOGGING
    AKD ONLINE PERMANENT LOGGING
    AKX ONLINE PERMANENT LOGGING
    APD ONLINE PERMANENT LOGGING
    I would like to see something similar to below where date/time is stamped to each line generated in log file.
    06-28-2009 02:07:32 - AKD ONLINE PERMANENT LOGGING
    06-28-2009 02:07:32 - AKX ONLINE PERMANENT LOGGING
    06-28-2009 02:07:32 - APD ONLINE PERMANENT LOGGING
    Thank you in advance.

    Hi,
    Welcome to the forum!
    The function SYSDATE will return the current date and time.
    Use TO_CHAR to format it the way you want, for example:
    SELECT  TO_CHAR (SYSDATE, 'MM-DD-YYYY HH24:MI:SS')  AS dt_tm
    ...The value returned by SYSDATE will not change within a query, even if the query takes several seconds or minutes to run.
    SET   TIME  ON(as you already have) will print the time (in HH24:MI:SS format) before each prompt.

  • How to append timestamp to log file in SQL*Plus ?

    Version: 11.2.0.3
    Platform : RHEL 5.8 (But I am looking for platform independant solution)
    I want to append the timestamp to spooled log file name in SQL*Plus.
    The spooled log filename should look like
    WMS_APP_23-March-2013.logI tried the following 3 methods found in the google. But none of them worked !
    I tried this
    col sysdt noprint new_value sysdt_var
    SELECT TO_CHAR(SYSDATE, 'yyyymmdd_hh24miss') sysdt FROM DUAL;
    spool run_filename_&sysdt_var.Logas suggested in
    http://power2build.wordpress.com/2011/03/11/sqlplus-spool-name-with-embedded-timestamp/
    and this
    spool filename with timestamp
    col sysdt noprint new_value sysdt
    SELECT TO_CHAR(SYSDATE, 'yyyymmdd_hh24miss') sysdt FROM DUAL;
    spool run_filename_&sysdt..Logas suggested in
    http://powerbuildev.wordpress.com/2011/03/11/sqlplus-spool-name-with-embedded-timestamp/
    and this
    column tm new_value file_time noprint
    select to_char(sysdate, 'YYYYMMDD') tm from dual ;
    prompt &file_time
    spool logfile_id&file_time..logas suggested in
    Creating a spool file with date/time appended to file name
    None of the above worked in RHEL or MS DOS. Any workaround ?

    I have tested your suggestions. But I still couldn't append the date to the logfile in RHEL or MS DOS SQL*Plus
    Here are the attempts I've made. I am posting how the logfile looked like after every test.
    #Attempt1 with two dots (&sysdate..log )
    set echo on
    set feedback on
    set define off
    set pages 999
    column dcol new_value SYSDATE noprint
    select to_char(sysdate,'YYYYMMDD') dcol from dual;
    spool testlog.&sysdate..log
    select 'hello' from dual;
    spool off;Log File Name -- > testlog.&sysdate..log
    #Attempt2 with single dot (&sysdate.log)
    set echo on
    set feedback on
    set define off
    set pages 999
    column dcol new_value SYSDATE noprint
    select to_char(sysdate,'YYYYMMDD') dcol from dual;
    spool testlog.&sysdate.log
    select 'hello' from dual;
    spool off;Log File Name ---> testlog.&sysdate.log
    #Attempt3. Replacing first dot with Hyphen (testlog- ) to check if the first dot was causing the issue
    set echo on
    set feedback on
    set define off
    set pages 999
    column dcol new_value SYSDATE noprint
    select to_char(sysdate,'YYYYMMDD') dcol from dual;
    spool testlog-&sysdate.log
    select 'hello' from dual;
    spool off;Log Filename: testlog-&sysdate.log
    #Attempt4: replacing SYSDATE with SDATE
    set echo on
    set feedback on
    set define off
    set pages 999
    column dcol new_value SDATE noprint
    select to_char(sysdate,'YYYYMMDD') dcol from dual;
    spool testlog1.&SDATE..log
    select 'hello' from dual;
    spool off;Log File Name -- > testlog1.&SDATE..log

  • How do I read or change TimeStamp in log files?

    We have deployed BIPublisher 10.1.3.4 EAR into OC4J container. I am seeing the following timestamp in BI log files..
    [010909_032352774][][STATEMENT] [org.quartz.jobStore.isClustered]=[false]
    [010909_032352774][][STATEMENT] [org.quartz.jobStore.misfireThreshold]=[60000]
    [010909_032352774][][STATEMENT] [org.quartz.threadPool.threadCount]=[10]
    [010909_032352774][][STATEMENT] [org.quartz.jobStore.driverDelegateClass]=[org.quartz.impl.jdbcjobstore.oracle.OracleDelegate]
    [010909_032352774][][STATEMENT] [org.quartz.dataSource.myDS.driver]=[oracle.jdbc.OracleDriver]
    [010909_032352774][][STATEMENT] [org.quartz.jobStore.dataSource]=[myDS]
    I can understand the first part 010909 as the date but I don't know how to read 032352774 value. Nothing is specified in the documentation. I am seeing this timestamp in the log file under OPMN Logs folder. I am not sure why Debug info goes here instead of application.log file.
    Your help is greatly appreciated..
    Thanks!
    Srini

    The timestamp more than likely comes from a Java class using a form of UTC timestamp format. Sometimes the UTC format, at the end SSS part is based on StDZ, or portion of a second and the timezone desigator. The timezone/timestamp format is embedded where BIP gets initialized. It is possible to de-code EAR/WAR/JAR files and find the date format method, but then you are altering source code and that has support implications. In the big scheme of things, no big deal.

  • Add Timestamp to Remote File Name in Output Tab

    Hi,
    Is it possible to add a timestamp to the Remote File Name in the Destination part of the Output tab?
    E.g. If I have an FTP as the desgination, can I have a file name as dailyReport20130227.pdf, where the date part is generated dynamically on every run?
    Thanks and Regards
    JB

    For everyone's reference, this is possible using the below delimiters.
    http://docs.oracle.com/cd/E15586_01/bi.1111/e18861/T539768T541118.htm
    Expression     Description
    %y     Displays the year in four digits: Example: 2011
    %m     Displays the month in two digits: 01-12 (where 01 = January)
    %d     Displays the date in two digits: 01-31
    %H     Displays the hour in two digits based on 24-hour day: 00-24
    %M     Displays the minute in two digits: 00 - 59
    %S     Displays the number of seconds in two digits: 00 - 59
    %l     Displays milliseconds in three digits: 000 - 999
    In this case, we just need to set up the file name as "+dailyReport%y%m%d.pdf+"

  • Not able to add new log file to the 11g database.

    Hi DBA's
    I am not able to add the log file i am getting error while adding the database.
    SQL> alter database add logfile group 3 ('/oracle/DEV/db/apps_st/data/log03a.dbf','/oracle/DEV/db/apps_st/data/log03a.dbf') size 50m reuse;
    alter database add logfile group 3 ('/oracle/DEV/db/apps_st/data/log03a.dbf','/oracle/DEV/db/apps_st/data/log03a.dbf') size 50m reuse
    ERROR at line 1:
    ORA-01505: error in adding log files
    ORA-01577: cannot add log file '/oracle/DEV/db/apps_st/data/log03a.dbf' - file
    already part of database
    SQL> select a.group#, member, a.status from v$log a, v$logfile b where a.group# = b.group# order by 1;
    GROUP# MEMBER STATUS
    1 /oracle/DEV/db/apps_st/data/log01a.dbf ACTIVE
    1 /oracle/DEV/db/apps_st/data/log01b.dbf ACTIVE
    2 /oracle/DEV/db/apps_st/data/log02a.dbf CURRENT
    2 /oracle/DEV/db/apps_st/data/log02b.dbf CURRENT
    Kindly help me to add the new log file to my database.
    Thanks,
    SG

    Hi Sawwan,
    V$LOGMEMBER was written in the document,
    I query the log members as bellow
    1)select a.group#, member, a.status from v$log a, v$logfile b where a.group# = b.group# order by 1;
    GROUP# MEMBER STATUS
    1 /oracle/DEV/db/apps_st/data/log01a.dbf INACTIVE
    1 /oracle/DEV/db/apps_st/data/log01b.dbf INACTIVE
    2 /oracle/DEV/db/apps_st/data/log02a.dbf CURRENT
    2 /oracle/DEV/db/apps_st/data/log02b.dbf CURRENT
    2)SQL> select group#,member,status from v$logfile;
    GROUP# MEMBER STATUS
    2 /oracle/DEV/db/apps_st/data/log02a.dbf
    2 /oracle/DEV/db/apps_st/data/log02b.dbf
    1 /oracle/DEV/db/apps_st/data/log01a.dbf
    1 /oracle/DEV/db/apps_st/data/log01b.dbf
    But i am littile bit confused that there is no group or datafile called " Group 3 and log03a.dbf" as per the above query, how can i drop tease group and datafile.
    and i crossverified in the data top the files are exist or not but those are not existing. but still i am getting the same error that i can't create that already exist.
    can issue the bellow queris to drop those group which i dont think so it will exist?
    SQL>alter database drop logfile group 3;
    Thanks in advance.
    Regards,
    SG

  • MR11 log file

    Hi,
    While run MR11 for GR/IR clearing account a log file is generated and document number is 5400000010. Where this log file is stored by default and how it should display ? Beside F.13 automatic clearing  clears those GR/IR records whose balance shows as 0. And difference amount is cleared through F-03 by choosing document number from GR and IR under same purchase order. In F.13(automatic clearing) does not clear those same GR value and IR value inspite of same PO number. These values are easily tracebale from normal balance viewing mode through FBL3N. Why these values are not cleared through F.13 ?
    Regards,
    Samrat

    Immediate AI:
    0. Check the log file auto growth setup too and check is this a practically a good one and disk has still space or not.
    1. If disk is full where you are keeping log file, then add a log file in database property page on another disk where you have planned to keep log files, in case you can't afford to get db down. Once you are done then you can plan to truncate data out of
    log file and remove that if it has come just first time issues. If this happens now and then check for capacity part.
    2. You can consider shrinking  the log files after no any other backup are going on or any maintenance job like rebuild\reorg indexes \update stats jobs are executing as this will be blocking it.
    If db size is small and copy files from prod to dr is not that latency prone, and shrink is not happening, then you can try changing recovery model and then do shrinking and reconfigure log-shipping after reverting recovery model.
    3. Even you can check if anyone mistakenly places some old files and forgot to remove them which is causing disk full issues. Also
    4. For permanent solution, do monitor the environment for capacity and allocate good space for log file disks. Also consider tweaking frequencies of the log backup from default that suits your environment.
    Santosh Singh

  • Delete concurrent manager log files

    hai,
    can i delete manually concurrent log files($APPLCSF) tell me the command .
    just last 3 days log files is enough . and then above log and out file .
    how can u remove these log and out files for specific reqiurment
    . in linux flatform
    regards
    dba

    what problem occur if i delete log files at os levelThere should be no issues, but as stated above this can be done by the concurrent request so why to bother yourself and do it manaully?
    If you delete log/out files manaully from the OS for some requests which have not been purged from the tables, then you will not be able to access the log/out file of that request from the application.

  • How to add a date suffix to the log file name

    In Windows, I want to run certain commands and save the output to a logfile every day. How to add a suffix to the log file name so I can distinguish which log file for which day?
    e.g. cmd >> logfile.date

    AZ wrote:
    In Windows, I want to run certain commands and save the output to a logfile every day. How to add a suffix to the log file name so I can distinguish which log file for which day?
    e.g. cmd >> logfile.datemy best friend name is "google", refer to this [url | http://stackoverflow.com/questions/203090/how-to-get-current-datetime-on-windows-command-line-in-a-suitable-format-for-usi]
    This is what i did
    1) created a dummy file in c drive
    2) copy pasted below lines, you can play around more with the format
    set _my_datetime=%date%_%time%
    set _my_datetime=%_my_datetime: =_%
    set _my_datetime=%_my_datetime::=%
    set _my_datetime=%_my_datetime:/=_%
    set _my_datetime=%_my_datetime:.=_%3) Rename the file from dos
    ren some.txt dummy_file_%_my_datetime%.txt4) Here goes the output
    C:\dir
    dummy_file_Mon_09_20_2010_161347_21.txt
    Most of the code i copied from above url, you can tweak a little bit based on ur requirement and format.
    Regards
    Learner                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How to add a log file to an MaxDB?

    I see that we have only one log file there. I want to add more. Please help either the syntax or the GUI menu path.  Thanks!

    Hi Linda,
    of course the topic is covered in the MaxDB documentation (e.g. here http://maxdb.sap.com/documentation/)
    [Adding Log Volumes|http://maxdb.sap.com/doc/7_7/0c/b9bc43f7b24eef9afff1968bf4fcdc/content.htm]
    However, you should be really sure that you actually need to add a volume to the log area.
    Usually this is not the case.
    Most often, people believe they should add a log volume when they should run a log backup.
    regards,
    Lars

  • Log file in xml format: bad idea?

    Hey
    Im trying to write a class that will let other classes keep a log on whatever they want to. Whoever wants to write a message to a log file will call a function there, with the specified log name and the message, and my class will write it in xml format into the file.
    Simple right? But here's the catch: in order to append a log into the file, I have to read it all first, then create the Element and add it to the root element. That meens that as the file grows, so will the time it takes to read it, and eventually log will take loads of time...
    All this would not have happen otherwise, with simple text files, as all I have to do is to open the file for appending, which wouldn't take that much time.
    So my questions are: Am I stupid to think this is possible with xml? Should I open the xml file as text file and then manipulate it? Are there any other possibilities?
    Thanks for your help - Uzi

    Writing logs in an xml file is a very good idea and will later on provide you with a lot of flexibility to perform queries and how u want to display it.
    Simple right? But here's the catch: in order to append
    a log into the file, I have to read it all first, then
    create the Element and add it to the root element.
    That meens that as the file grows, so will the time it
    takes to read it, and eventually log will take loads
    of time...Why do you want to read the whole file for writing new elements. You dont have to do that. I have a simple idea for your problem.
    e.g <logfile>
    <log>
    </log>
    </logfile>
    So now u want to add another log element. Use RandomAccessFile's length() method to find the size of the file.
    Find the size of </logfile> e.g if it is sizeOfString.
    Use RandonAccessFile's seek() method as follows
    .......seek(lengthOfFile - sizeOfString);
    This will move the pointer of the RandomAccessFile to this position. Next step is you can use writeBytes method to further write to this file.
    That will increase the speed and performance and would give u great end results of an xml file.

  • Add Timestamp

    Hi,
       In my scenario, I am sending XML file to mail using Receiver mail adapter.
    Now I want to add a timestamp to this file name. Can someone has any idea how to achieve this?
    Thanks
    bpr

    Hi,
    Check the Below Discussions
    Mail attachment with time stamp
    File Receiver Adapter - time stamp in front possible ?
    Cheers
    Agasthuri Doss

  • ADS MA : the XML exported file (export to log file) doesn't export Distinguished Name in the attribute member for a group

    Hello,
    I am facing a weird issue during the export of a group to a log file (xml).
    I have configured my ADLDS management agent such as the export run profile exports data into a XML Ffile:
    Everything is fine in the XML, I see my new accounts, the attributes updated for accounts but for an unknown reason the group which should contains accounts does
    not contain the DN values.
    It contains the tags <dn-value> and <dn> but <dn> is empty
    e.g:
    <delta operation="update" dn="CN=GroupX,OU=Users,DC=ZZZZ">
     <anchor encoding="base64">XDSQDQDQ</anchor>
     <dn-attr name="member" operation="add" multivalued="true">
      <dn-value>
       <dn/>
      </dn-value>
      <dn-value>
       <dn/>
      </dn-value>
     </dn-attr>
    During the export, FIM updates the attribute "member" of the group:
    Member attribute seems to be caught by FIM during synchro profile and export profil bt not translates correctly in the final xml file.
    Any ideas?
    Thanks for your reply.

    Thinking the same thing as David - sounds like a bug - but that's curious because I've never had a problem with the AD MA doing exactly the same thing, albeit with FIM R1 most recently.  What version of FIM are you using, and have you checked the
    release notes of any subsequent versions to see if any such issue is mentioned?
    Bob Bradley (FIMBob @
    TheFIMTeam.com) ... now using FIM Event Broker for just-in-time delivery of FIM 2010 policy via the sync engine, and continuous compliance for FIM

  • Print a custom Error message in the XML bursting program's log file...

    Hi,
    I having this requirement, where i need to print a custom error message in the xml bursting program's log file.
    Actually i am having a report where i create invoices and then those invoices are emailed to the respective customers, now say if a customer has three contacts and there is only two valid email id's so what happens is bursting will be successful for two contacts whereas the third contact dosen't get any emails. when this happens i need to log a message in the bursting programs log file stating a custom message.
    Two things i want to know..
    1- Whether is it possible to write into the xml bursting programs log file
    2- If yes, then how..
    note: it ll be greatly appreciated if the answer is elaborated.
    thanks,
    Ragul

    Hi,
    I having this requirement, where i need to print a custom error message in the xml bursting program's log file.
    Actually i am having a report where i create invoices and then those invoices are emailed to the respective customers, now say if a customer has three contacts and there is only two valid email id's so what happens is bursting will be successful for two contacts whereas the third contact dosen't get any emails. when this happens i need to log a message in the bursting programs log file stating a custom message.
    Two things i want to know..
    1- Whether is it possible to write into the xml bursting programs log file
    2- If yes, then how..
    note: it ll be greatly appreciated if the answer is elaborated.
    thanks,
    Ragul

  • How do I add a log file to posts? (NT)

    How do I add a log file to posts?
    Thanks,

    here is the output of copy/paste:
    I [17/Oct/2007:05:51:44 -0500] Configured for up to 100 clients.
    I [17/Oct/2007:05:51:44 -0500] Allowing up to 100 client connections per host.
    I [17/Oct/2007:05:51:44 -0500] Using policy "default" as the default!
    I [17/Oct/2007:05:51:44 -0500] Full reload is required.
    I [17/Oct/2007:05:51:45 -0500] Loaded MIME database from '/etc/cups': 35 types, 40 filters...
    I [17/Oct/2007:05:51:46 -0500] Loading job cache file "/var/cache/cups/job.cache"...
    I [17/Oct/2007:05:51:46 -0500] Full reload complete.
    I [17/Oct/2007:05:51:46 -0500] Listening to :::631 on fd 2...
    I [17/Oct/2007:05:51:46 -0500] Listening to 0.0.0.0:631 on fd 3...
    I [17/Oct/2007:05:51:46 -0500] Listening to /var/run/cups/cups.sock on fd 4...
    (The strikethrough is one of the many bugs in the Forum software...)
    Use Console Utility to show you the log files, if that is what you need to know.

Maybe you are looking for

  • IPod touch: need to restore to previous update so it will work again on mac computer

    iPod touch: - my iPod has always been used with my desktop iMac computer, which has iTunes version 9 currently installed. It is updated to it's latest possible update, so I am assuming it is not compatible with the latest, iTunes 10. While working on

  • How to add attachments to appointment?

    appointment.Attachments.AddFileAttachment(file.Name, stream); //appointment.Attachments[0].IsInline = true; disabled in Outlook 2007 appointment.Save(WellKnownFolderName.Calendar, SendInvitationsMode.SendToAllAndSaveCopy); The recipient can't see the

  • Installing the Classic enviorment from retail OS 9 CD

    Can anyone tell me how exactly I install the classic enviorment after I have installed OS 10.3?

  • Nano wont update, wont play video

    I just bought my two little sisters both ipod nano's and when i try to add video it wont go on the ipod, and it keeps telling me to update the ipod software but when i do, it downloads and freezes and says intunes network is unavailable. I've tried t

  • Can't Send or receive e-mails from Windows Live Ma...

    Hi, I've been successfully getting mail though my BT Internet account and Windows Live Mail up until a few days ago when WLM just stopped working and I get the following error message. "Unable to send or receive messages for the Btinternet xxxxxxxx a