Es1javax.mail.NoSuchProviderException: No provider for pop3 ?

What is wrong with this code?Do i need to specify a Provider? Where and when?
String host = ...;
String username = ...;
String password = ...;
// Create empty properties
Properties props = new Properties();
// Get session
Session ses = Session.getDefaultInstance(props, null);
// Get the store
Store store = ses.getStore("pop3");
store.connect(host, username, password);
// Get folder
Folder folder = store.getFolder("INBOX");
folder.open(Folder.READ_ONLY);
// Get directory
Message message[] = folder.getMessages();
for (int i=0, n=message.length; i<n; i++) {
System.out.println(i + ": " + message.getFrom()[0]
+ "\t" + message[i].getSubject());
// Close connection
folder.close(false);
store.close();
Thank you all
Dena

[denapuerta],
The exception that you are getting may mean that the java runtime environment that you are running your class file code on does not seem to have the JavaMail .jar files installed correctly. The JavaMail API packages are optional packages and must be downloaded and added to the J2SE runtime environment before such an application can run successfully.
From the exception message, looks like either the pop3.jar file or the mailapi.jar (which contains all the JavaMail API and provider library files) is missing from the CLASSPATH of the JRE or not installed onto the <JRE install directory>/jre/lib/ext directory.
What is wrong with this code?Do i need to specify a
Provider? Where and when?I assume you obtained the code from the jGuru tutorial on JavaMail (which is a good tutorial to start off with). I have tested the code before and it works perfectly fine.
String host = ...;
String username = ...;
String password = ...;
// Create empty properties
Properties props = new Properties();
// Get session
Session ses = Session.getDefaultInstance(props, null);
// Get the store
Store store = ses.getStore("pop3");
store.connect(host, username, password);
// Get folder
Folder folder = store.getFolder("INBOX");
folder.open(Folder.READ_ONLY);
// Get directory
Message message[] = folder.getMessages();
for (int i=0, n=message.length; i<n; i++) {
System.out.println(i + ": " +
+ message.getFrom()[0]
+ "\t" + message[i].getSubject());
// Close connection
folder.close(false);
store.close();
Thank you all
Dena
You might also want to check the username/password and hostname string entries to see if you are really connecting to the POP3 mail server correctly.
HTH.
Allen Lai
Developer Technical Support
SUN Microsystems
http://www.sun.com/developers/support/

Similar Messages

  • Javax.mail.NoSuchProviderException: No provider for Address type: rfc822

    Use JavaMail 1.2 send Mail Errors:
    "javax.mail.NoSuchProviderException: No provider for Address type: rfc822"
    Why?
    Can you supply a stmp server name?
    Thanks.

    [skyask],
    Honestly, I am not very sure where the JVM is located for the WebLogic 5.1 application server. You probably need to contact your local BEA rep office for support.
    The jar file for the JavaMail API is either mail.jar (contains the API libraries) or mailapi.jar (contains the API libraries and all the providers), so I guess if you search the WebLogic directories, you might be able to locate it.
    It also depends on the OS platform that you are working on and the WebLogic installation documentation may give a clue or two where the .jar files for optional Java packages are found.
    HTH.
    Allen Lai
    Developer Technical Support
    SUN Microsystems
    http://www.sun.com/developers/support/

  • Javax.mail.NoSuchProviderException: No provider for SMTP

    whats the meaning of the following exception javax.mail.NoSuchProviderException: No provider for SMTP
    can any one help.
    thanks and regards.

    This exception is thrown when Session attempts to instantiate a Provider (e.g. (com.sun.mail.smtp.SMTPTransport)) that doesn't exist.
    Check if the smtp.jar is in the classpath.

  • Javax.mail.NoSuchProviderException: No provider for ifs1

    Similar to the question found in William Troper's thread run on
    November 1. We had mail code working fine, changed some
    variables to incorporate a migratable build and have now lost
    our mail functionality.
    We have followed William's advice by renaming all of Sun's Mail
    classes in the ~\9ifs\settings\META-INF directory and still no
    joy.
    Does anyone have any ideas of what is causing a "No provider for
    ifs1" error message?
    Cheers,
    Susan

    Hi Scott,
    These (among other) items are in my CLASSPATH (printed out at
    runtime)
    /projects/intranet/lib/mail.jar:/app/oracle/product/9.0.1S/9ifs/s
    ettings/META-INF:
    Here is my stack. Also, the code is EXACLTY the same between
    what was working and what is now not. Thanks for looking in to
    this:
    javax.mail.NoSuchProviderException: No provider for ifs1
         at javax.mail.Session.getProvider(Session.java:249)
         at javax.mail.Session.getTransport(Session.java:442)
         at javax.mail.Session.getTransport(Session.java:423)
         at com.mim.intranet.utils.MessageFactory.sendMesg
    (MessageFactory.java:130)
         at
    com.mim.intranet.unittest.utils.MessagingUT.testValidMesg
    (MessagingUT.java:56)
         at java.lang.reflect.Method.invoke(Native Method)
         at junit.framework.TestCase.runTest(TestCase.java:166)
         at junit.framework.TestCase.runBare(TestCase.java:140)
         at junit.framework.TestResult$1.protect
    (TestResult.java:106)
         at junit.framework.TestResult.runProtected
    (TestResult.java:124)
         at junit.framework.TestResult.run(TestResult.java:109)
         at junit.framework.TestCase.run(TestCase.java:131)
         at junit.framework.TestSuite.runTest(TestSuite.java:173)
         at junit.framework.TestSuite.run(TestSuite.java:168)
         at junit.framework.TestSuite.runTest(TestSuite.java:173)
         at junit.framework.TestSuite.run(TestSuite.java:168)
         at junit.textui.TestRunner.doRun(TestRunner.java:74)
         at junit.textui.TestRunner.run(TestRunner.java:200)
         at com.mim.intranet.unittest.AllTests.main
    (AllTests.java:40)
    4887 [main] WARN com.mim.intranet.unittest.utils.MessagingUT -
    Sending Exception
    F
    Time: 4.898
    There was 1 failure:
    1) testValidMesg(com.mim.intranet.unittest.utils.MessagingUT)
    junit.framework.AssertionFailedError: Failed sending message :
    com.mim.intranet.exception.IntranetException: Failed sending
    message encountered unexpected exception
    Wrapped Exception is : javax.mail.NoSuchProviderException: No
    provider for ifs1
         at
    com.mim.intranet.unittest.utils.MessagingUT.testValidMesg
    (MessagingUT.java:63)
         at com.mim.intranet.unittest.AllTests.main
    (AllTests.java:40)
    FAILURES!!!
    Tests run: 1, Failures: 1, Errors: 0
    com.mim.intranet.exception.IntranetException: Failed sending
    message encountered unexpected exception
    Wrapped Exception is : javax.mail.NoSuchProviderException: No
    provider for ifs1
         at com.mim.intranet.utils.MessageFactory.sendMesg
    (MessageFactory.java:187)
         at
    com.mim.intranet.unittest.utils.MessagingUT.testValidMesg
    (MessagingUT.java:56)
         at java.lang.reflect.Method.invoke(Native Method)
         at junit.framework.TestCase.runTest(TestCase.java:166)
         at junit.framework.TestCase.runBare(TestCase.java:140)
         at junit.framework.TestResult$1.protect
    (TestResult.java:106)
         at junit.framework.TestResult.runProtected
    (TestResult.java:124)
         at junit.framework.TestResult.run(TestResult.java:109)
         at junit.framework.TestCase.run(TestCase.java:131)
         at junit.framework.TestSuite.runTest(TestSuite.java:173)
         at junit.framework.TestSuite.run(TestSuite.java:168)
         at junit.framework.TestSuite.runTest(TestSuite.java:173)
         at junit.framework.TestSuite.run(TestSuite.java:168)
         at junit.textui.TestRunner.doRun(TestRunner.java:74)
         at junit.textui.TestRunner.run(TestRunner.java:200)
         at com.mim.intranet.unittest.AllTests.main
    (AllTests.java:40)
    -----------------------------------------------------------------

  • Javax.mail.NoSuchProviderException: No provider for imap

    Dear All,
    Currently i am running weblogic 5.1 for my javamail Application/WebMail. I have copied mail.jar, activation.jar,pop3.jar,imap.jarmailapi.jar in weblogic\jre1_2\jre\lib\ext folder. I get "javax.mail.NoSuchProviderException: No provider " exception when i run jsp page.
    Balaji

    It looks like weblogic 5.1 (atleast the mail.jar) doesn't contain the pop3.jar, I guess. Check whether you can include pop3.jar in ur classpath..
    -Narasimha

  • NoSuchProviderException: No provider for Address type: rfc822

    this is the stack : No provider for Address type: rfc822
    javax.mail.NoSuchProviderException: No provider for Address type: rfc822
         at javax.mail.Session.getTransport(Session.java:475)
         at javax.mail.Transport.send0(Transport.java:154)
         at javax.mail.Transport.send(Transport.java:80)
    I know what it means....but why it happens?
    please help!!!!!!!!!!!!

    [joyrex75],
    I suspect that the CLASSPATH settings on the machine that you are using is pointing only to the mail.jar file. If you are setting up the Java runtime environment that includes only the mail.jar file, your runtime environment will not have the mail providers such as the POP3, IMAP or SMTP .jar files.
    Point your CLASSPATH to the mailapi.jar file which contains the JavaMail APIs and all the mail protocol providers that SUN supports i.e. POP3, IMAP and SMTP. Try to execute the java command on your JavaMail application and see if throws out the Exception again.
    HTH.
    Allen Lai
    Developer Technical Support
    SUN Microsystems
    http://www.sun.com/developers/support/

  • I keep getting a message Cannot Get Mail No password provided for "MobileMe"

    I have upgraded to 4S and the phone is functioning properly but I keep getting some error messages.  In Mail, I keep getting the prompt - Cannot Get Mail  No password provided for "MobileMe". Please go to Mail Account Settings and enter a password.
    When I click Settings, I have already removed the "MobileMe" account from my phone & am receiving the MobileMe mail through the iCloud account that is set up.  And that iCloud account is functioning properly. 
    So the Mail is attempting to pull mail from an account I deleted off my iPhone & then when I try to follow the prompts to fix the problem & enter a password, it's no longer there.

    Hello Laurel,
    Thank you for the details of the issue you are experiencing with your email account on your iPhone.  I recommend the following article to troubleshoot the issue you described:
    iOS: Troubleshooting Mail
    http://support.apple.com/kb/ts3899
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Exception in thread "main" javax.mail.NoSuchProviderException: invalid prov

    HI,
    I am trying to read mails from my inbox i amgetting the ErrorC:\javamail>java
    Readmail
    Exception in thread "main" javax.mail.NoSuchProviderException: No provider for IMAP
            at javax.mail.Session.getProvider(Session.java:455)
            at javax.mail.Session.getStore(Session.java:530)
            at javax.mail.Session.getStore(Session.java:510)
            at Readmail.main(Readmail.java:24)My Code is    {
    String host = "hostname";
    String username = "user";
    String password = "password";
    // Create empty properties
    Properties props = new Properties();
    // Get session
    Session session = Session.getDefaultInstance(props,null);
    // Get the store
    Store store = session.getStore("IMAP");
    store.connect(host, username, password);
    // Get folder
    Folder folder = store.getFolder("Inbox");
    folder.open(Folder.READ_ONLY);
    // Get directory
    Message message[] = folder.getMessages();
    for (int i=0, n=message.length; i<n; i++)
       System.out.println(i + ": " + message.getFrom()[0]
    + "\t" + message[i].getSubject());
    // Close connection
    folder.close(false);
    store.close();
    I have also tried POP3 and MIME and SMTP
    Can anyone help me Thanks

    hi bshannon,
    I am getting the same error for others but for pop3 the error is as below
    Exception in thread "main" javax.mail.MessagingException: Connect failed;
      nested exception is:
            java.net.ConnectException: Connection refused: connect
            at com.sun.mail.pop3.POP3Store.protocolConnect(POP3Store.java:148)
            at javax.mail.Service.connect(Service.java:275)
            at javax.mail.Service.connect(Service.java:156)
            at Readmail.main(Readmail.java:25)
    Caused by: java.net.ConnectException: Connection refused: connect
            at java.net.PlainSocketImpl.socketConnect(Native Method)
            at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:305)
            at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:171)
            at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:158)
            at java.net.Socket.connect(Socket.java:452)
            at java.net.Socket.connect(Socket.java:402)
            at com.sun.mail.util.SocketFetcher.createSocket(SocketFetcher.java:232)
            at com.sun.mail.util.SocketFetcher.getSocket(SocketFetcher.java:189)
            at com.sun.mail.pop3.Protocol.<init>(Protocol.java:81)
            at com.sun.mail.pop3.POP3Store.getPort(POP3Store.java:201)
            at com.sun.mail.pop3.POP3Store.protocolConnect(POP3Store.java:144)
            ... 3 more

  • Javax.mail.NoSuchProviderException

    Hi!
    I have written a java program for sending mail. I 'm getting these error msgs when i run the program. I have used Netbeans 5.5 ,so I have JavaMail jar files and Java Activation Jar file associated with my web application already. can u please help me?
    here is the error msg
    Messaging Exception Occured:-->javax.mail.NoSuchProviderException: No provider for smtp.gmail.com javax.mail.NoSuchProviderException: No provider for smtp.gmail.com at javax.mail.Session.getProvider(Session.java:455) at javax.mail.Session.getTransport(Session.java:650) at javax.mail.Session.getTransport(Session.java:631) at Mailtest.MailClient.send(MailClient.java:92) at Mailtest.MailClient.doGet(MailClient.java:51) at javax.servlet.http.HttpServlet.service(HttpServlet.java:707) at javax.servlet.http.HttpServlet.service(HttpServlet.java:820) at org.apache.catalina.core.ApplicationFilterChain.servletService(ApplicationFilterChain.java:397) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:278) at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:536) at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:240) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:179) at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566) at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:73) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:182) at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566) at com.sun.enterprise.web.VirtualServerPipeline.invoke(VirtualServerPipeline.java:120) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:939) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:137) at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:536) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:939) at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:239) at com.sun.enterprise.web.connector.grizzly.ProcessorTask.invokeAdapter(ProcessorTask.java:667) at com.sun.enterprise.web.connector.grizzly.ProcessorTask.processNonBlocked(ProcessorTask.java:574) at com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:844) at com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTask(ReadTask.java:287) at com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.java:212) at com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:252) at com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:75)
    And here goes my code
    package Mailtest;
    import java.io.*;
    import java.net.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.IOException;
    import java.io.PrintWriter;
    import java.util.Properties;
    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.servlet.ServletException;
    import javax.mail.Authenticator;
    import javax.mail.PasswordAuthentication;
    import javax.mail.NoSuchProviderException;
    * @author mitalib
    * @version
    public class MailClient extends HttpServlet {
    /** Processes requests for both HTTP <code>GET</code> and <code>POST</code> methods.
    * @param request servlet request
    * @param response servlet response
    public void doGet(HttpServletRequest request, HttpServletResponse response)
    throws IOException, ServletException
    response.setContentType("text/html");
    PrintWriter out = response.getWriter();
    out.println("<html>");
    out.println("<head>");
    out.println("<title>First Servlet</title>");
    out.println("</head>");
    out.println("<body bgcolor=\"white\">");
    out.println("<h1>Hello welcome to Mailing Service </h1>");
    out.println("<h2>Sending mail </h2>");
    try
    send("[email protected]", "[email protected]", "First Program ", "First Mail send by Servlet");
    out.println("\nMail send successfully-----");
    catch(AddressException ae)
    out.println("Address Exception Occured-->"+ae.getMessage());
    ae.printStackTrace(out);
    catch(MessagingException me)
    out.println("Messaging Exception Occured:-->"+me);
    me.printStackTrace(out);
    out.println("</body>");
    out.println("</html>");
    public void send(String s, String s1, String s3, String s4)
    throws AddressException, MessagingException
    String strHost = "smtp.gmail.com";
    Transport trans = null;
    int intPort =465;
              Address recp[];
              Address from = new InternetAddress(s);
              recp = new InternetAddress[1];
              recp[0] = new InternetAddress(s1);
              //recp[1] = new InternetAddress(s2);
    Properties prop = new Properties();
         prop.put("mail.transport.protocol","smtp");
    prop.put("mail.smtp.host", strHost);
    prop.put("mail.smtp.port", ""+intPort);
    prop.put("mail.smtps.auth ","true ");
    prop.put("mail.smtp.starttls.enpable","true");
    SMTPAuthenticator auth = new SMTPAuthenticator("[email protected]", "XXXXXXXXXX");
    Session session = Session.getDefaultInstance(prop, auth);
    session.setDebug(true);
              trans = session.getTransport(strHost);
              trans.connect(strHost,"[email protected]","xxxxxxxxxx");
              MimeMessage msg = new MimeMessage(session);
    msg.setFrom(from);
    msg.addRecipient(Message.RecipientType.TO, recp[0]);
    msg.setSubject(s3);
    msg.setText(s4);
              trans.sendMessage(msg,recp);
    class SMTPAuthenticator extends Authenticator
    public SMTPAuthenticator(String s, String s1)
    user = s;
    password = s1;
    public PasswordAuthentication getPasswordAuthentication()
    return new PasswordAuthentication(user, password);
    private String user;
    private String password;
    Please Help.
    Thanks in advance

    String strHost = "smtp.gmail.com";...
              trans = session.getTransport(strHost);You figured out that the above line is the line that caused the
    problem, right?
    And then after reading the javadocs that say:
    Get a Transport object that implements the specified protocol.
    You just couldn't figure out why "smtp.gmail.com" was not a valid
    protocol, right?
    The protocol name is "smtp". "smtp.gmail.com" is a host name.

  • Error javax.mail.NoSuchProviderException: pop3

    When my application runs within JBuilder everything works fine. But with a native executable I get the following error: javax.mail.NoSuchProviderException: pop3.
    The Dependencies property for JavaMail=Include Dependencies. When set to Include All the native executable not even starts.
    What is wrong here?
    Greetings,
    Hans

    I had some difficulty looking for a solution to this problem.
    All solutions 'beat about the same bush' but I couldnt get any of them to work.
    My advice is dont give up- the problem will eventually be resolved.
    How I resolved it was to assume, ( rightly) that when working inside JBuilder, it is not using the machine classpath to find library files such as mail.jar, but looking at its own library of jar files to find mail.jar.
    I tracked down the JBuilder mail.jar in the /lib dir and copied out all classes beginning with POP... also all non Class files eg proviider and map files , the mailcap file and all files beginning with SUN, and also the Manifest file and placed them in a separate folder on the hard drive.
    I then made an application jar definition from my JBuilder application but told it NOT to make a manifest file.I then right clicked on the build file, and selected properties/content and added in all files from the directory that I previously made containing the files mentioned above.
    To the Manifest file in that directory I also added the mine Main Class: to tell it where my main class was.
    I then re-built the executable jar file.
    It worked. Just when I was down to pulling out the last tuft of hair.
    Message was edited by:
    1straybullet

  • Best E-Mail Provider For iPhone

    What is the best email provider for iPhone. I have used hotmail for a long time, but I know that's not a good one to use with the iPhone, so I'm looking to start a new email account. Is there one email provider that I should clearly go with?

    The free Yahoo account provided for iPhone customers, which can be accessed as a standard IMAP or Push-IMAP account - with account settings available on the iPhone to switch between the two protocols, cannot be accessed with an email client on your computer - such as with Outlook or Outlook Express.
    You can access a Gmail account as an IMAP account with an email client on your computer as well as with the iPhone's Mail client - keeping the account's server stored mailboxes synchronized between the email client used on your computer to access the account and with the iPhone's Mail client.
    A Push-IMAP account provides for not having to check the account's incoming mail server for new messages but IMO, not worth having if I can't access the account with an email client on my computer also.

  • RecordsManagement: Error in service provider for DOMEA: SAP-Office Mails

    Hi all,
    I am trying to use the default service provider for Domea:SAP office mails( RMPS_LINK_SP_MAIL).
    but i am getting an error " Standard activity not defined "  Message no. SRM_ORGANIZER106.
    can anyone please help me in this regard...
    Also the scenario i am working for is:   some particular mails coming to my out look inbox needs to be attached to the record. how to achieve this scenario....  will the above service provider helps me. or is there any other way to achieve this. I am using SAP Records Management not PSRM.
    Thanks & Regards
    kavitha.

    Hi all,
    I am trying to use the default service provider for Domea:SAP office mails( RMPS_LINK_SP_MAIL).
    but i am getting an error " Standard activity not defined "  Message no. SRM_ORGANIZER106.
    can anyone please help me in this regard...
    Also the scenario i am working for is:   some particular mails coming to my out look inbox needs to be attached to the record. how to achieve this scenario....  will the above service provider helps me. or is there any other way to achieve this. I am using SAP Records Management not PSRM.
    Thanks & Regards
    kavitha.

  • Cannot get mail using iCloud.  Says no password provided for iCloud, to go to Mail Account Settings and enter a password, even though I've already done this.  Very odd.

    Cannot get mail using iCloud.  Says no password provided for iCloud, to go to Mail Account Settings and enter a password, even though I've already done this.  Very odd.  Am I doing something wrong?

    I doubt you are doing anything wrong. First day glitches 
    Reset the device.
    Hold the On/Off Sleep/Wake button and the Home button down at the same time for at least ten seconds, until the Apple logo appears.
    Make sure you have Mail selected here >  http://www.apple.com/icloud/setup/

  • So can I use our local internet provider for the e-mail account, or do I have to use Apple?

    So can I use our local internet provider for the e-mail account, or do I have to use Apple?

    Yes, you can use the Mail app on the iPod for your internet mail provider.  Go to your provider's mail support website to find out how to set up the account on the iPod.  They probably will not have instructions for an iPod but the one for the iPhone should do.

  • IMAP/POP3 provider for JMS

    I've searched through the net, but yet unsuccessfully. The question was: is there any IMAP/POP3 provider for JMS available? Or there are only MOM-oriented solutions?
    Thanks in advance!

    Check out SwiftMQ. It provides a JavaMail bridge for in/outbound bridges JMS/JavaMail and vice versa:
    http://www.swiftmq.com/products/extension/javamail/index.html
    -- Andreas

Maybe you are looking for

  • Dump RAISE_EXCEPTION PARTNER_NOT_VALID

    Hi, Got a dump in production system.Dont know the cause.Please help in finding solution What happened?     The current ABAP/4 program encountered an unexpected     situation. What can you do?     Note down which actions and inputs caused the error.  

  • Help Upgrading OS's on a Mac...

    I have no idea what I am doing right now but what I do know is that my BBStorm, which is running .75, is so slow its beginning to severly agitate to poo out of me.  Can anyone here point me in the direction of instructions to download a new OS on my

  • New Convert to Mac.  Did Time Machine wipe out my external hard drive?

    I recently purchased a MacBook Pro. I have all of my files and pictures from my PC on my external hard drive. When I connected it to the USB port, Time Machine came up. I don't remember what I selected, but now when I plug in the drive, "time machine

  • How do I make a backup of photo albums on an external  hard drive?

    I have many photos in albums but don't understand how to copy them on an external harddrive. Once done I want to store the as backup on another laptop or keep them on the harddrive so I can restore them anywhere if needed.

  • Change Material Qty in previous year

    Hi All, Is it possible to change the material quantity in previous year. My scenario is- In year 2005-06  - Closing stock of materal is A = 150 Kg B = 200 Kg C = 50 Kg Total = 400Kg Same as Opening stock for the year 2006-07 But i want to change the