How can I configure Messenger to record my conversations, record them and send them to a location I can read and save when you use Messenger on other computers than mine?

How can I configure Messenger to record my conversations, record them and send them to a location I can read and save when you use Messenger on other computers than mine?

original title: Live Messenger

Hi Nicoliani,

To start saving your Conversations in Windows Live Messenger

1. connect to your window Live Messenger and click on 'Tools' or click on your display name.

2. scroll down to "Options", a window should appear. When he does very well and click on "Messages".

3. locate "historical Message". After that, check the box that says, "automatically keep a history of my conversations.

4. below that you will see "save my conversations in this folder."

5. to side of her you will see change, make sure that it is a file that you can access and watch later.

6. If you are on a network, you can save it in a directory which you have access, or you can save it to a location and later mailed to yourself and access it later.

Where chats are saved is given below.

1. to access the Conversations go to the start bar and click My Documents. Then click on "my received files."

2. There should be a folder with your name on it. Click the folder, then you will be in another folder called history. Continue

3. by clicking on the folder, now you should see all your saved conversations.

Hope this information is useful.

Amrita M

Microsoft Answers Support Engineer
Visit our Microsoft answers feedback Forum and let us know what you think.

Tags: Windows

Similar Questions

  • How can I submit photographs when you use imessages

    Just bought a MacBook Pro of the retina and I try to send pictures and graphics in imessages. How can I submit photographs when you use imessages.

    On Mac in Photos app, select picture, and then click

    (top right)

    Select Messages, then select the recipient, and the text you want included.

  • For some odd reason, I can't go back when you use Google.

    For some odd reason, I can't go back when you use Google. Someone at - it a solution for this you problem.

    Original title: Backspace on Google

    You have the same problem with Internet Explorer. Check if you are facing similar problems on the Internet Explorer browser.

    If the problem is specific to Google Chrome browser, I suggest that post you the question on Google Chrome support forums to get help.

    https://support.Google.com/chrome/?hl=en#topic=3227046

  • How can I make a visible folder for users of other computers

    I made a folder I want to keep some incoming e-mails, but it is not visible to the other users who can access the primary e-mail account. In addition, if changes are made to emails in the first account by a user, it does not affect other views of computer stations. by example, if I delete or move a file, it is only deleted or moved at my station. How can I get all the changes to be visible and synchronized, since we are all synchronized to RECEIVE e-mail to the primary e-mail address.

    Rita

    There must be a folder on the mail server and all associated items must have their set email client for IMAP for this account. Your email provider must support the IMAP protocol also.

  • How can I show STROKE when I use the type tool in photoshop?

    OK so I like using fonts assign right so when im using Illustrator I can use forehand so that the lines look bigger and what not letters. If im trying to figure on photoshop and have failed to do. So please if you can help please help.

    Hi shirazs,.

    • Tablecloth right the text layer
    • Select the merge options
    • Select Stroke and adjust the size and position

    You can see How to add features to the text in Photoshop: 6 steps (with pictures)

    Let us know if this helps

    Concerning

    Assani

  • How can I stop audio when you return to slide

    On one of my slides, I have a smart form with click box crept on.  When learners click on the action is: access to another slide.  On the other blade is a close button that navigates back to the last slide visited. When they go back, it restarts the audio.  How can I stop the audio when they return?

    You don't need to click on a smart shape box, it's much better to make a button to the form: http://blog.lilybiri.com/why-i-like-shape-buttons-captivate-6

    Click box has by default a point of suspension at the end of his chronology. If you don't, take a look at accordion Options, where you can uncheck the break.

    A default form button is no break, but you can add a suspension point to the Timing of the shape button accordion.

    A click box, a button, a button of form are intended to trigger an action, they have a break or not. When this action is simple (on the accordion of Actions), and the user clicks top, action will be executed (as something) AND head out of reading, it will continue until the end of the slide, and then go to the next slide. If the action is "Go to the next slide", the images after the suspension point of the form/button/click on the button box will be passed, has not visited.

    Be careful with the navigation to the last visited slide, that you don't get in a loop.

  • can I set benchmarks when you use Windows Live Movie Maker?

    Between mic input and my sound card got cracked or damaged somehow through much use over 3 years ago. I have a Compaq C700CTO w. prcessors (Pentium) of intel 2 x 1.73 GHz, 2 GB of RAM. The card is a Conexant High Definition SmartAudio 221. I applied a touch of glue to audio for headphones/output to stabilize because I use constantly for recording sound and it worked fine. Due to the problem with the audio/mic input (the microphone gives a record crackling whenever the amplitude is close to max), I am recording the sound of my videos with a Sandisk mp3 player and I want to sync the audio with the video file. Adobe Audition allows me to edit the audio to make it to the starting point after that I cut the sounds of preparation, but I can't figure out how to set a landmark in Live Movie Maker program without calling the start or endpoint. Is there another way to set a landmark in Live Movie Maker? I can probably use hearing to edit video too but have not always taken the habit to use it for something other than the audio editing and mixing if registered clips separately. Thank you from any point of view on Movie Maker.       DL

    You cannot set benchmarks in WLMM.

    Audition is an audio editing application, so won't edit video.

    If you use a Clap to give you a strong a few applause you will find it easy to synchronize the separate audio and video using this noise, then cut an equal amount to get rid of it in your final cut.

  • You can add a formula when you use spreadsheetAddRows()?

    I created a spreadsheet with two sheets object. I have added content to each sheet by using spreadsheetAddRows(), but it is possible to inject a formula to hyperlink for each record returned by the query that I spent in spreadsheetAddRows()?

    Form a contains a list of numbers of "subject". My goal is to make these numbers link to coresponding 'details' on the second sheet. Thanks for the pointers that you people can offer. Here is my code so far:

              //     Set path for file
              theDir = GetDirectoryFromPath(GetCurrentTemplatePath());
              theFile = theDir & "RPC_Reports\#ReportName.ReportFileName#.xlsx";
              
              //     Create an empty spreadsheet object that will contain two sheets
              sheet = spreadsheetNew("Topic Ranking", "true");
              
              
              /////// Sheet One ///////
                                  
              //     Populate first sheet with query data
              spreadsheetAddRows(sheet, qrytopicList, 3);
              
              
              //     Formulate hyperlinks to sheet two
              for(i=1; i <= qrytopicList.recordCount; i++) {
                  
                  spreadsheetSetCellFormula(sheet, 'HYPERLINK("##Topic Details!A1", "#qrytopicList.topicID#")', #i#,1);
                 }
    
                        
              /////// Sheet Two ///////
              
              //     Creat a second sheet for this object
              spreadsheetCreateSheet(sheet, "Details");
              
              //     Set sheet two (Topic Details) as active
              spreadsheetSetActiveSheet(sheet, "Details");
                                            
              //     Populate second sheet with query data
              spreadsheetAddRows(sheet, qrytopicDetails);
                                  
              //     Set active sheet to the first sheet before writting to disk
              spreadsheetSetActiveSheet(sheet, "Topic Ranking");
              
              //     Write spreadsheet to disk
              spreadsheetWrite(sheet, theFile, true);
         
    

    is it possible to inject a formula to hyperlink for each record returned by the query

    Yes, If you know what line number designated in the second worksheet.

    > spreadsheetCreateSheet (sheet, "Détails");

    spreadsheetSetCellFormula (leaf, ' hyperlink ("##Topic the details!") ") ((A1', ' #qrytopicList.topicID # ')', #i #, 1);

    Just be sure that your query and cell references are correct

    (a) the name of the worksheet in the hypertext link does not match the actual name in your code:

    name b) IIRC, the sheet must be in single quotes when it contains spaces

    IE = LIEN_HYPERTEXTE ("#" Details section"!) A1 ',' text the

    Link")

    (c) If you use a for loop, remember the line number of query. Otherwise, you use the first line again and again.

  • How to escape the quotes and commas when you use the command of the coil

    I am creating a file .cvs with data in my database. I call the function of coil and below select stmt

    ' Select ' ' ' | ID | '","' || name | '","' || Description | '","'

    I want everything to be separated by quotes and commas. Description data can have quotes and commas so how I get away from them in my queue code so that when I use SQL Loader data will get entries in the database correctly.

    Thank you!

    Hello

    If the field is closed, so there is nothing else you need to do for the column separator (en).

    To use the character encompassing ("") in the field, double it, the same way you use two single quotation marks to signify a single_quote into a SQL string literal:
    {code}
    ' SELECT ' ' ' | ID
    ||     '","'     || name
    ||     '","'     || REPLACE (description
    , '"'
    , '""'
    )
    ||     '"'
    FROM table_x;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
    
  • How can we change administrator when you buy a used Macbook?

    She works on a Macbook OS X Yosemite and the previous owner's name keeps popping up in the Apple ID screen when it tries to update its software and she knows of course its password, so she can't update software.  She has updated the system preferences and signed in iCloud with its own identifier Apple; It is connected with its own iTunes Apple ID, but field-identifying the previous owner Apple when she tries to update the software and what it can not change it... any suggestions on how to solve this problem?

    She must remove and re-download these applications and clear the internal drive and install a fresh OS.

    (144101)

  • How can I create a photo book using Photos app on an iPad mini?

    I know how to create a photo book using Photos on a MacBook Pro app.

    I want to know if a photo book can be created using the Photos app on my iPad mini. If so, how?

    Hello imawa,.

    Thank you for using communities of Apple Support.

    Yes, you can certainly create a photo book on your iPad mini. Take a look at the following article to learn how to create a photo book.

    iPhoto for iOS (iPad): create a photo book

    See you soon.

  • How can we change the text and fonts when you use the feature "painting".

    I use the "feature of the paint to the text of the announcement for the pictures, but I can't understand how to change the size of the text or characters.» The 'help' in the painting says that you can do both, but they don't say HOW! Help?

    Hi PTWG,.

    If your using Vista or XP while in the painting after that you drag the text window will come the possibility to change the font and size. If you do not see this option click on view and be sure there is a check box in the text toolbar.

    Does this solve your problem?

  • Change in TableCell, how can I call commitEdit when you exit the cell?

    Hello

    Maybe you can help me solve my problem posted here:
    http://StackOverflow.com/questions/7868188/JavaFX-2-save-edit-in-TableCell

    Thank you

    Edited by: OansZwoa the 24.10.2011 02:23

    I have posted a response to your question on stackoverflow, but included here for convenience (I think most of the users of JavaFX using the Oracle forums vs StackOverflow for the moment)

    private void createTextField() {
            textField = new TextField(getItem());
            textField.setMinWidth(this.getWidth() - this.getGraphicTextGap() * 2);
    
            // Detect a change in focus on the text field.. If we lose the focus we take appropriate action
            textField.focusedProperty().addListener(new ChangeListener() {
                public void changed(ObservableValue observable, Boolean oldValue, Boolean newValue) {
                    if(!newValue.booleanValue())
                        commitEdit(textField.getText());
                }
            } );
            textField.setOnKeyReleased(new EventHandler() {
                @Override public void handle(KeyEvent t) {
                    if (t.getCode() == KeyCode.ENTER) {
                        commitEdit(textField.getText());
                    } else if (t.getCode() == KeyCode.ESCAPE) {
                        cancelEdit();
                    }
                }
            });
        }
    

    I managed to find and implement an alternative to the edition by using binding cell - and it seems to eliminate all additional trapping event and the substitution of methods. It may have some side effects - but is less code to worry. I'll post when I had the chance

  • How can I get the grid to appear when you use the cropping tool... mine is grayed out

    My crop tool will not display the grid and he is grey.  What I'm doing.

    Hi ECastrillojr

    If please Set overlay tool forever or press 'H'

    ~ Assani

  • How to prevent a specific page to view the suggested sites and top when you open a new tab?

    I like the feature of FF that displays top and suggested sites when opening a new tab. I use my laptop for work, for recreation. But as I share the office with co-workers, I don't want to have all the sites that I visit that are listed. No matter how many times I remove a specific site from the results, it keeps popping up.

    I'm sure that the addition of an option to prevent some sites never show it, would benefit a lot of users of FF, who share the same problem. I don't know that I'm one of many with the same problem.

    You can change the order of the boxes on the subject: newtab page and drag an item on a tile that is different to pin in this position or you can remove a Web site by clicking on the close X to block this URL.
    You can drag a bookmark item or the history of the sidebar and drop it into a tile on the subject: newtab page pin this point and have your own favorite sites.

    Changes manually on the subject: newtab page are stored in the preferences you can find on the about: config page.

    • Browser.newtabpage.pinned stores the Web site you pinned to a tile.
    • Browser.newtabpage.blocked stores the Web site that you've deleted by clicking on the X button in a tile.

    If you do not keep the changes after a reboot or have problems with preferences, see:

Maybe you are looking for