The recipient of an e-mail message recorded for FolderLink to make it work?

Firefox should send me an Excel file via FolderLink.
If I do this, the recipient will be able to open the Excel file, regardless of access to its e-mail program

Link of the file isn't the file join messages. It uploads the file to a server and puts a link to that file in the body of the message.

Just, the recipient clicks on the link and gets the file from the server.

https://support.Mozilla.org/en-us/KB/FileLink-large-attachments

Tags: Thunderbird

Similar Questions

  • I want to change the layout of my e-mail messages so that the message is on the side of the headers not below them

    I want to change the layout of my e-mail messages so that the message is on the side of the headers not below them. I just downloaded mozilla thunderbird on my new laptop computer to I can not get the layout that I'd rather go back. Help, please. Thanks June

    Maybe try Vertical page layout view in the menu bar.

    No menu bar? Press the ALT key.

  • I bought Adobe Acrobat Pro 9.  I used it on my computer for years with no problems.  Today he gave me the following message: "license for this product has stopped working.  You cannot use this product at this time.  You need to fix the

    I bought Adobe Acrobat Pro 9.  I used it on my computer for years with no problems.  Today he gave me the following message: "license for this product has stopped working.  You cannot use this product at this time.  You must repair the problem by uninstalling and then reinstalling this product or contact your COMPUTER administrator or Adobe customer support for assistance. (0)"I then uninstalled and reinstalled using the license key of my package, and I just get the same message.  I contacted customer service and they told me that they are unable to support me and directed me to the forum.  Please help as soon as POSSIBLE.

    Error: "License has stopped working". Windows

  • Mac user. CS4 still active (not disabled) on my macbook pro DIED. Time Machine installed CS4 on my new macbook pro. Error message, "licensing for this product has stopped working". How can I disable my old macbook pro and activ DEAD CS4

    Mac user. CS4 still active (not disabled) on my macbook pro DIED. Time Machine installed CS4 on my new macbook pro. Error message, "licensing for this product has stopped working".

    How can I disable my old macbook DEAD pro CS4 and activate CS4 on my new mackbook pro?

    Hi Christophe,

    Please visit: https://helpx.adobe.com/x-productkb/policy-pricing/activate-deactivate-products.html

    Contact technical support for assistance:

    https://helpx.Adobe.com/in/contact.html?step=CCSN_adobe-ID-signing-in_stillNeedHelp

    I hope this helps.

    Concerning

    Megha Rawat

  • CS4 for Mac gives me this message: "license for this product has stopped working. 150:30 error code. Subsequently no longer works. How to operate?

    CS4 for Mac gives me this message: "license for this product has stopped working. 150:30 error code. Subsequently no longer works. How to operate?

    Please see this link for solutions to this message:

    Error "Licensing has stopped working". Mac OS

    Kind regards

    Guinot

  • get the unwanted letters instead of the picture in an e-mail message.

    Hi all


    I try to send a mail via gmail.com that I am able to send mail, but when I try
    Send an attachment so I get strange text instead of the picture
    his photo not showing but it is different in shape text appears in my Inbox.
    Here is the result.
    also get this error but I am able to send e-mail.
    ERROR at line 1:
    ORA-20000: Failed to send mail due to the
    following error: ORA-29277: invalid SMTP operation
    ORA-06512: at "MAIL.MAHI", line 159
    ORA-06512: at line 2
    ===============================================
    --BACKUP.SECBOUNDContent-
    Type: application/octet-streamContent-Disposition:
     attachment; filename="g.gif"Content-Transfer-Encoding: base64 
    Qk2O5QgAAAAAADYAAAAoAAAAwgIAABMBAAABABgAAAAA
    AFjlCAAAAAAAAAAAAAAAAAAAAAAAhNWuhNWuhNWuhNWu
    hNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuh
    NWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNW
    uhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhN
    WuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuh
    NWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWu
    hNWuhNWuhNWuhNWuhNWuhNWuhNWuhN
    WuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuh
    NWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNW
    uhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhN
    WuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhN
    and here the link that I followed to use with my codes...
    Re: Sending a message UTL_SMTP collateral issue unique jpg
    create or replace package body Mahi
           is
              -- Write a MIME header
              procedure write_mime_header (
                  p_conn in out nocopy utl_smtp.connection
               , p_name in varchar2
                , p_value in varchar2
              )
               is
              begin
                utl_smtp.write_data ( p_conn
                                     , p_name || ': ' || p_value || utl_tcp.crlf
                 );
             end;
             procedure mail (
                p_sender in varchar2
              , p_recipient in varchar2
               , p_subject in varchar2
               , p_message in varchar2
              )
              is
                l_conn           utl_smtp.connection;
                nls_charset    varchar2(255);
               v_src_loc  BFILE := BFILENAME('BACKUP', 'Logon.jpg');
               --v_src_loc BLOB;
          l_buffer   RAW(54);
          l_amount   BINARY_INTEGER := 54;
          l_pos      INTEGER := 1;
          l_blob     BLOB := EMPTY_BLOB;
          l_blob_len INTEGER;
         v_amount   INTEGER;
                  v_fname VARCHAR2(50);
    
         CURSOR img_cur IS SELECT photo_name,photo
      FROM temp_photo;
     
    
        --crlf  varchar2(2) := chr(10)||chr(13);
    
    PROCEDURE send_header(pi_name IN VARCHAR2, pi_header IN VARCHAR2) AS
       BEGIN
          UTL_SMTP.WRITE_DATA(l_conn,
                              pi_name || ': ' || pi_header || UTL_TCP.CRLF);
       END;
    
             begin
                -- get characterset
                select value
                into   nls_charset
                from   nls_database_parameters
                where  parameter = 'NLS_CHARACTERSET';
                /*
                select 
                photo into v_src_loc from
                temp_photo
                where id=1;
                */
                DBMS_LOB.OPEN(v_src_loc, DBMS_LOB.LOB_READONLY); --Read the file
         DBMS_LOB.CREATETEMPORARY(l_blob, TRUE); --Create temporary LOB to store the file.
         v_amount := DBMS_LOB.GETLENGTH(v_src_loc); --Amount to store.
         DBMS_LOB.LOADFROMFILE(l_blob, v_src_loc, v_amount); -- Loading from file into temporary LOB
         --DBMS_LOB.COPY(l_blob, v_src_loc, v_amount);
         l_blob_len := DBMS_LOB.getlength(l_blob);
     
               -- establish connection and autheticate
               l_conn   := utl_smtp.open_connection (g_smtp_host, g_smtp_port);
                utl_smtp.ehlo(l_conn, g_smtp_domain);
                 utl_smtp.command(l_conn, 'auth login');
                 utl_smtp.command(l_conn,utl_encode.text_encode('[email protected]', nls_charset, 1));
                utl_smtp.command(l_conn, utl_encode.text_encode('xxxxx', nls_charset, 1));
                 -- set from/recipient
                  utl_smtp.command(l_conn, 'MAIL FROM: <'||p_sender||'>');
                 utl_smtp.command(l_conn, 'RCPT TO: <'||p_recipient||'>');
                -- write mime headers
                 utl_smtp.open_data (l_conn);
                 write_mime_header (l_conn, 'From', p_sender);
                write_mime_header (l_conn, 'To', p_recipient);
                write_mime_header (l_conn, 'Subject', p_subject);
                 write_mime_header (l_conn, 'Content-Type', 'text/plain; charset=us-ascii');
                 write_mime_header (l_conn, 'X-Mailer', g_mailer_id);
                 utl_smtp.write_data (l_conn, UTL_TCP.CRLF);
                 UTL_SMTP.WRITE_DATA(l_conn,
                             'MIME-Version: 1.0' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(l_conn,
                             'Content-Type: multipart/mixed; ' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(l_conn,
                             ' boundary= "' || 'BACKUP.SECBOUND' || '"' ||
                             UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(l_conn, UTL_TCP.CRLF);
       
     
                 -- write message body
                utl_smtp.write_data (l_conn, p_message);
                OPEN img_cur;
      LOOP
      FETCH img_cur INTO v_fname,l_blob;
    end loop;
    close img_cur;
                
                UTL_SMTP.WRITE_DATA(l_conn,
                             '--' || 'BACKUP.SECBOUND' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(l_conn,
                             'Content-Type: text/plain;' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(l_conn,
                             ' charset=US-ASCII' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(l_conn, UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(l_conn,  p_message || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(l_conn, UTL_TCP.CRLF);
         
         UTL_SMTP.WRITE_DATA(l_conn,
                             '--' || 'BACKUP.SECBOUND' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(l_conn,
                             'Content-Type: application/octet-stream' ||
                             UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(l_conn,
                             'Content-Disposition: attachment; ' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(l_conn,
                             ' filename="' || 'gpg.jpg' || '"' || --My filename
                             UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(l_conn,
                             'Content-Transfer-Encoding: base64' || UTL_TCP.CRLF);
        UTL_SMTP.WRITE_DATA(l_conn, UTL_TCP.CRLF);
      /* Writing the BLOL in chunks */
        WHILE l_pos < l_blob_len LOOP
          DBMS_LOB.READ(l_blob, l_amount, l_pos, l_buffer);
          UTL_SMTP.write_raw_data(l_conn,
                                  UTL_ENCODE.BASE64_ENCODE(l_buffer));
          UTL_SMTP.WRITE_DATA(l_conn, UTL_TCP.CRLF);
           l_buffer := NULL;
           l_pos    := l_pos + l_amount;
         END LOOP;
         UTL_SMTP.WRITE_DATA(l_conn, UTL_TCP.CRLF);
       
        -- Close Email
        UTL_SMTP.WRITE_DATA(l_conn,
                             '--' || 'BACKUP.SECBOUND' || '--' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(l_conn,
                             UTL_TCP.CRLF || '.' || UTL_TCP.CRLF);
                             UTL_SMTP.CLOSE_DATA(l_conn);
                             utl_smtp.close_data (l_conn);
         UTL_SMTP.QUIT(l_conn);
         DBMS_LOB.FREETEMPORARY(l_blob);
         DBMS_LOB.FREETEMPORARY(l_blob);
         DBMS_LOB.FILECLOSE(v_src_loc);
     
                    -- end connection
                utl_smtp.quit (l_conn);
                        exception
                 when others
                 then
                   begin
                      utl_smtp.quit(l_conn);
                    exception
                      when others then
                       null;
                   end;
                   
                   raise_application_error(-20000,'Failed to send mail due to the
     following error: ' || sqlerrm);
     DBMS_LOB.FREETEMPORARY(l_blob);
     DBMS_LOB.FREETEMPORARY(l_blob);
          DBMS_LOB.FILECLOSE(v_src_loc);
         raise;
             end;
          end;
          commit;
    Note:-I am using Stunnel, Oracle Database 11g R2 and operating system is Linux...
    I have installed Linux on virtualBox.


    Please suggest me why I get a strange text instead of the picture?
    If my code is wrong, please fix it for me...
    Thanks in advance...

    Tic Tac Toe
    Student.

    Published by: Johann April 15, 2011 22:57

    The main problem is, you have not specified clearly what you are doing and also not a not post your package specifications. After looking more closely at your code, I found that you use gmail.smtp.com and probably with stunnel (UTL_SMTP supports SSL).
    In addition, the main idea is to http://monkeyonoracle.blogspot.com/2009/11/plsql-and-gmail-or-utlsmtp-with-ssl.html
    If you would like to mention these facts, then probably someone can help you more sooner. In any case, it is an example of work of sending e-mail by using the gmail SMTP server.

    SQL> conn sys@orclsb as sysdba
    Enter password: ******
    Connected.
    SQL>
    SQL> SHOW USER
    USER is "SYS"
    SQL>
    SQL> /* My database version */
    SQL> SELECT * FROM v$version;
    
    BANNER
    ----------------------------------------------------------------
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Prod
    PL/SQL Release 10.2.0.3.0 - Production
    CORE    10.2.0.3.0      Production
    TNS for 32-bit Windows: Version 10.2.0.3.0 - Production
    NLSRTL Version 10.2.0.3.0 - Production
    
    SQL> /* Creating DIRECTRY OBJECT. The physical path is C:\ */
    SQL> CREATE DIRECTORY saubhik AS 'C:\';
    
    Directory created.
    
    SQL> /* Giving required grants to user SCOTT */
    SQL> GRANT READ,WRITE ON DIRECTORY saubhik TO scott;
    
    Grant succeeded.
    
    SQL> /* Now connecting to the user scott, to run the emailing procedure */
    SQL> conn scott@orclsb
    Enter password: *****
    Connected.
    SQL>
    SQL> SHOW USER
    USER is "SCOTT"
    SQL>
    SQL> 
    

    Now, the code principal.

    SQL> SHOW USER
    USER is "SCOTT"
    SQL>
    SQL> DECLARE
      2    v_nls_charset VARCHAR2(50);
      3    /*LOB operation related varriables */
      4    v_src_loc  BFILE := BFILENAME('SAUBHIK', 'Winter.jpg');
      5    l_buffer   RAW(54);
      6    l_amount   BINARY_INTEGER := 54;
      7    l_pos      INTEGER := 1;
      8    l_blob     BLOB := EMPTY_BLOB;
      9    l_blob_len INTEGER;
     10    v_amount   INTEGER;
     11
     12    /*UTL_SMTP related varriavles. */
     13    v_connection_handle  UTL_SMTP.CONNECTION;
     14    v_from_email_address VARCHAR2(30) := '[email protected]';
     15    v_to_email_address   VARCHAR2(30) := '[email protected]';
     16    /*
     17     I have used stunnel to send mail using smtp.gmail.com
     18     To get stunnel see http://stunnel.org/.
     19     The ORIGINAL idea is here :
     20     http://monkeyonoracle.blogspot.com/2009/11/plsql-and-gmail-or-utlsmtp-with-ssl.html
     21    */
     22    v_smtp_host          VARCHAR2(30) := 'localhost';
     23    v_subject            VARCHAR2(30) := 'Your Test Mail';
     24    l_message            VARCHAR2(200) := 'This is test mail using UTL_SMTP';
     25
     26    /* This send_header procedure is written in the documentation */
     27    PROCEDURE send_header(pi_name IN VARCHAR2, pi_header IN VARCHAR2) AS
     28    BEGIN
     29      UTL_SMTP.WRITE_DATA(v_connection_handle,
     30                          pi_name || ': ' || pi_header || UTL_TCP.CRLF);
     31    END;
     32
     33  BEGIN
     34
     35    SELECT value
     36      INTO v_nls_charset
     37      FROM nls_database_parameters
     38     WHERE parameter = 'NLS_CHARACTERSET';
     39
     40    /*Preparing the LOB from file for attachment. */
     41    DBMS_LOB.OPEN(v_src_loc, DBMS_LOB.LOB_READONLY); --Read the file
     42    DBMS_LOB.CREATETEMPORARY(l_blob, TRUE); --Create temporary LOB to store the file.
     43    v_amount := DBMS_LOB.GETLENGTH(v_src_loc); --Amount to store.
     44    DBMS_LOB.LOADFROMFILE(l_blob, v_src_loc, v_amount); -- Loading from file into temporary LOB
     45    l_blob_len := DBMS_LOB.getlength(l_blob);
     46
     47    /*UTL_SMTP related coding. */
     48    v_connection_handle := UTL_SMTP.OPEN_CONNECTION(host => v_smtp_host,
     49                                                    port => 1925);
     50    UTL_SMTP.EHLO(v_connection_handle, 'gmail.com');
     51    UTL_SMTP.COMMAND(v_connection_handle, 'auth login');
     52    UTL_SMTP.COMMAND(v_connection_handle,
     53                     UTL_ENCODE.TEXT_ENCODE('[email protected]',
     54                                            v_nls_charset,
     55                                            1));
     56    UTL_SMTP.COMMAND(v_connection_handle,
     57                     UTL_ENCODE.TEXT_ENCODE('my password', v_nls_charset, 1));
     58    --UTL_SMTP.MAIL(v_connection_handle, v_from_email_address);
     59    --UTL_SMTP.RCPT(v_connection_handle, v_to_email_address);
     60    UTL_SMTP.COMMAND(v_connection_handle,
     61                     'MAIL FROM: <' || v_from_email_address || '>');
     62    UTL_SMTP.COMMAND(v_connection_handle,
     63                     'RCPT TO: <' || v_to_email_address || '>');
     64    UTL_SMTP.OPEN_DATA(v_connection_handle);
     65    send_header('From', '"Sender" <' || v_from_email_address || '>');
     66    send_header('To', '"Recipient" <' || v_to_email_address || '>');
     67    send_header('Subject', v_subject);
     68    --MIME header.
     69    UTL_SMTP.WRITE_DATA(v_connection_handle,
     70                        'MIME-Version: 1.0' || UTL_TCP.CRLF);
     71    UTL_SMTP.WRITE_DATA(v_connection_handle,
     72                        'Content-Type: multipart/mixed; ' || UTL_TCP.CRLF);
     73    UTL_SMTP.WRITE_DATA(v_connection_handle,
     74                        ' boundary= "' || 'SAUBHIK.SECBOUND' || '"' ||
     75                        UTL_TCP.CRLF);
     76    UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
     77
     78    -- Mail Body
     79    UTL_SMTP.WRITE_DATA(v_connection_handle,
     80                        '--' || 'SAUBHIK.SECBOUND' || UTL_TCP.CRLF);
     81    UTL_SMTP.WRITE_DATA(v_connection_handle,
     82                        'Content-Type: text/plain;' || UTL_TCP.CRLF);
     83    UTL_SMTP.WRITE_DATA(v_connection_handle,
     84                        ' charset=US-ASCII' || UTL_TCP.CRLF);
     85    UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
     86    UTL_SMTP.WRITE_DATA(v_connection_handle, l_message || UTL_TCP.CRLF);
     87    UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
     88
     89    -- Mail Attachment
     90    UTL_SMTP.WRITE_DATA(v_connection_handle,
     91                        '--' || 'SAUBHIK.SECBOUND' || UTL_TCP.CRLF);
     92    UTL_SMTP.WRITE_DATA(v_connection_handle,
     93                        'Content-Type: application/octet-stream' ||
     94                        UTL_TCP.CRLF);
     95    UTL_SMTP.WRITE_DATA(v_connection_handle,
     96                        'Content-Disposition: attachment; ' || UTL_TCP.CRLF);
     97    UTL_SMTP.WRITE_DATA(v_connection_handle,
     98                        ' filename="' || 'Winter.jpg' || '"' || --My filename
     99                        UTL_TCP.CRLF);
    100    UTL_SMTP.WRITE_DATA(v_connection_handle,
    101                        'Content-Transfer-Encoding: base64' || UTL_TCP.CRLF);
    102    UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
    103
    104    /* Writing the BLOL in chunks */
    105    WHILE l_pos < l_blob_len LOOP
    106      DBMS_LOB.READ(l_blob, l_amount, l_pos, l_buffer);
    107      UTL_SMTP.write_raw_data(v_connection_handle,
    108                              UTL_ENCODE.BASE64_ENCODE(l_buffer));
    109      UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
    110      l_buffer := NULL;
    111      l_pos    := l_pos + l_amount;
    112    END LOOP;
    113    UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
    114
    115    -- Close Email
    116    UTL_SMTP.WRITE_DATA(v_connection_handle,
    117                        '--' || 'SAUBHIK.SECBOUND' || '--' || UTL_TCP.CRLF);
    118    UTL_SMTP.WRITE_DATA(v_connection_handle,
    119                        UTL_TCP.CRLF || '.' || UTL_TCP.CRLF);
    120
    121    UTL_SMTP.CLOSE_DATA(v_connection_handle);
    122    UTL_SMTP.QUIT(v_connection_handle);
    123    DBMS_LOB.FREETEMPORARY(l_blob);
    124    DBMS_LOB.FILECLOSE(v_src_loc);
    125
    126  EXCEPTION
    127    WHEN OTHERS THEN
    128      UTL_SMTP.QUIT(v_connection_handle);
    129      DBMS_LOB.FREETEMPORARY(l_blob);
    130      DBMS_LOB.FILECLOSE(v_src_loc);
    131      RAISE;
    132  END;
    133  /
    
    PL/SQL procedure successfully completed.
    
    SQL> 
    

    I got the email in my email perfectly with the attachment.

  • Can the text indicating "See attachment" that appears in the body of an e-mail message edited?

    When I join an e-mail text that says: "See annex" appears in the body of the e-mail message. I would like to change this text to say something else. I can't find where this text is stored in the settings, and I don't know yet if it is generated by thunderbird or the software that I use which called thunderbird.

    Anyone know where this text is stored, or if it can be changed?

    Nothing like what you're talking about, so I'm not sure that it really is.

    When you click on write an e-mail and then add an attachment, I see nothing but a name of attachment in the upper right of the email.

  • Cannot access the hyperlinks in the body of an e-mail message.

    I have confused some people responding to another poster, who has similar problems in a different system.

    I use Vista.  I also have Outlook Express on my computer for my emails.  Another Member of the community was told that I couldn't have both Vista and Outlook Express, but I do.  I have dot have XP.   Maybe the Outlook Express uses the mail window to open messages, but I have Outlook Express 2007 on my computer.

    Here's the problem I'm having:

    I get an email via Outlook Express.  In the body of the e-mail message, someone sends me a hyperlink to a site or a download.  When I try to click on the hyperlink, you'll see this message...

    "This operation has been cancelled due to restrictions on this computer.  Contact the system administrator. »

    They are not attached.

    I made this spot for years, and I have never known of problems until recent weeks.

    Thank you.

    A simple search using this error would have found you this: http://support.microsoft.com/kb/310049. Brian Tillman [MVP-Outlook]
    --------------------------------
    https://MVP.support.Microsoft.com/profile/Brian.Tillman
    If a response may help, please vote it as useful. If a response to the problem, please mark it as an answer.

  • BlackBerry Smartphones in my BB 8330, between the battery and new e-mail message indicator.

    In my BB 8330, between battery and new e-mail message indicator, there is a Blue Watch icon 4f.

    He started blue 1f now is 4f

    I don't know what it means? I clean all emails, messages, it's still there.

    Those who my friend, would be Facebook messages.

  • My computer is completely messed up after installing the latest updates from Microsoft. I need help/ideas to make it work again.

    Vista Business Service Pack 2
    32 bit
    2007-12-office
    Acrobat 9 Pro
    Adobe Design Standard CS4
    Sony Vaio

    I installed the latest vista updates today.  Three "important"; an option.  The optional parameter was an update of bluetooth toshiba.  We were talking about "platforms" that made me uncomfortable so I went to Microsoft and after reading it, I decided - based on little understanding - it was probably necessary.
    Shortly after, Acrobat 9 Pro wasn't working anymore. The computer asked me to restart after installing updates, but I have done a couple of things, including some e-mail.  During the attempt to send e-mail until I turned off the computer, Outlook flash he has been restarted and then the icon to install flash and then I could come back and type until the sequence started.

    I turned off the computer and when I rebooted, it did not start.  I managed to get it started; I run scandisk; now, when it starts to get a series of errors from Adobe for various Adobe programs that I installed on the machine all seem related to the "Automatic Setup" (or boot, I don't remember exactly.  I tried to re - install Acrobat and I get an error message that the 'source' is not available, and to ensure that it is - despite me using the installation disc, so I guess that it refers to the 'source' in Vista.  Outlook does not start.  He told me to use scanpst.exe to analyze the .pst files, but they seem to have disappeared.  I have tried other products of office except Explorer who started without problem.

    I can't use restore because it says that the disc is damaged and needs to be checked.

    Any ideas are appreciated.

    Uninstall the update for bluetooth.  Never use Microsoft device driver updates.  To avoid this does not happen, you must disable automatic updates in Windows Update driver as follows: http://www.addictivetips.com/windows-tips/how-to-disable-automatic-driver-installation-in-windows-vista/.

    Go to start / all programs / accessories / command prompt and right click on command prompt, and then click Run as administrator.

    Type sfc/scannow, go and let it run.  It will scan and try to correct some of your system files.  If all goes well he comes complete with no corruption, it could not repair (if it has these post of corruption here or try to analyze it to find the problem or files using http://support.microsoft.com/kb/928228.

    While in the command prompt, type chkdsk /f /r and enter and let it run.  It will scan and try to solve any corruption or bad sectors on your hard drive and remove especially as a cause.  Who can release the OS to do a system restore or other recovery options.

    Do you know when this problem started (probably with updates)?  Try a system restore to a point in time BEFORE the problem started.  Here is the procedure: http://www.howtogeek.com/howto/windows-vista/using-windows-vista-system-restore/.  Don't forget to check the box to show more than 5 days of restore points.  If the first attempt fails, then try an earlier point or two.  NOTE: You will need to re - install any software and updates that you have installed between now and the restore point, but you can use Windows Update for updates.

    If the system restore does not work, do a startup repair, boot from the disk Installation of Windows Vista genuine (or one that you can borrow from someone) or a recovery disc.  Here is the procedure: http://www.bleepingcomputer.com/tutorials/tutorial148.html.  You may need to change the BIOS to do first the CD drive in the boot sequence to boot from the CD.  To do this, hold the screen that tells you the key F to push to enter the menu start or start of installation.  Push it quickly. Make the changes, save your work and exit.  Put the CD in the drive and reboot.  When you are prompted, press any key to boot from the CD.

    If you do not have a floppy disk, you can make a bootable recovery disk by using http://neosmart.net/blog/2008/windows-vista-recovery-disc-download/ with burning software like: http://www.snapfiles.com/get/active-isoburner.html and, of course, a blank CD.

    If this does not work, try to start in safe mode (repeatedly hit F8 key so that the start and go in safe mode with networking).  Then we will check some of your system files:

    If it does not, then thanks for posting any repetitive error message in Event Viewer on startup (Start / Control Panel / administrative tools / Event Viewer).  Here's how to use Event Viewer: http://www.bleepingcomputer.com/forums/topic40108.html.

    If this does not work, you will need to do a repair/system upgrade using the Windows Vista Installation disc authentic (you own or that you can borrow from someone).  Here is the procedure: http://www.vistax64.com/tutorials/88236-repair-install-vista.html as well as the upgrade from an earlier version of the Windows section of the following: http://support.microsoft.com/kb/918884.  Although this will not affect your data, settings or programs, you should always back up your data before you start just be on the safe side. If other procedures do not work, it is almost certain to work.  You can have a lot of updates to re - install (including all you need to remove service packs).  If the version on system with SP1 or SP2 preinstalled cane and the disc is an earlier version, then you will need to do a slipstream drive as follows: http://www.vistax64.com/tutorials/151606-vista-sp1-slipstream-installation-dvd.html.

    I hope one of these procedures can solve your problem.  If this isn't the case, after return and we will try something else.  Return message anyway so we know how it turns out.

    If none of these steps work, transfer your question in Forum Windows Update: http://social.answers.microsoft.com/Forums/en-US/vistawu/threads where the people who specialize in updating the questions will be more than happy to solve your problems.  Don't forget to tell them what updates you downloaded and installed, and what steps you have already done to try to solve the problem.

    Good luck!

    Lorien - a - MCSE/MCSA/network + / A +.

  • CS4 Design Premium I migrated to my new laptop, but when I try to enter in InDesign or Illustrator, I get message "license for this product has stopped working... error code 150:30.

    CS4 Design Premium I migrated to my new laptop, but when I try to enter in InDesign or Illustrator, I get the message "a license for this product has stopped working... error code 150:30" how to re-enable programs CS4? Thank you.

    Could you please check the solutions:

    1. License for this product has stopped working error 150:30
    2. Error: "License has stopped working". Mac OS
    3. Error: "License has stopped working". Windows

    Concerning

    Stéphane

  • Is the .mov file type a file type supported for Windows Movie Maker?

    QuickTime + Windows Movie Maker

    Is it possible to import MOV (Quicktime Movie File) files in Windows Movie Maker?

    I have a Kodak EasyShare Dx4330 (very old model digital camera)

    Anyone know of a FREE video converter (shareware)?

    Help, please.  It is a problem that I had for several years.

    Is it possible to import MOV (Quicktime Movie File) files in Windows Movie Maker?

    I have a Kodak EasyShare Dx4330 (very old model digital camera)

    Anyone know of a FREE video converter (shareware)?

    Help, please.  It is a problem that I had for several years.

    =========================================
    Apple's QuickTime .mov files are not compatible with Movie Maker.

    The following freeware can be used to convert the .mov
    file in a more convenient format:

    Pazera Free MOV to AVI Converter

    (click on the blue Download button not the Red)

    After you download... Open the program...
    (no installation required)

    Drag and drop one or several .mov files...

    Choose an output directory...

    Select... WMV AVI - Video Codec - version 1 (WMP 7)...

    Convert... (the button in the top tool bar)

    When the file is converted, you can change it in Windows
    Movie Maker. Just open Movie Maker and go... File /.
    Import into Collections and access your converted file.

    John Inzer - MS - MVP - digital media experience

  • How can I customize the Thunderbird message columns to show the raw sender address (not the full name) and e-mail address "received for" which was used to reach me?

    I find more and more important to be able to see the actual email address of the sender rather than just displaying the name, because they do not usually show a company name - a domain would always be. Is it possible to customize the settings/write a file of script/tweak to add columns of name email & domain raw? When dealing with a number of people from the same company, it is difficult to order or nod thanks to a list of emails to find. I know also that 2 people with the same name to different companies and it is impossible to distinguish.

    Secondly, as an addition of associated column, since a number of e-mail aliases join it would be useful to have a column to display the "received for" part of the source of the message that reveals the real enamel used in the To/CC/BCC, which led to me. Once again can it be twisted or scripted?

    I have programming experience but did not Add ons, and would be open to a proposal which is to create a custom module if adding columns with custom values is possible like this.

    Best regards

    Drew

    This module help you?

    https://addons.Mozilla.org/en-us/Thunderbird/addon/show-address-only/

  • Display multiple lines of data collection defined by the user in an e-mail message

    I created a collection defined by the user that displays several lines of data. I created a custom rule and have linked this collection set by the user to this rule and configure an e-mail action. Variable Seveity, I have defined it in the rule to contain the column values. But it will only contain the first line of data. How can I display multiple lines of data in the alarm itself as well as the e-mail? Any help is appreciated.

    The example query in the collection defined by the user is less;

    Select the type, status, queuename, count (*) from PSAPMSGPUBHDR

    Union

    Select the type, status, queuename, count (*) from PSAPMSGPUBCON

    Union

    Select the type, status, queuename, count (*) from PSAPMSGSUBCON

    Result:

    Number of status type Queuename

    -------                 ----------------------                        ----------                           -------------

    HDR profil_utilisateur error 1

    PUB                  PERSON_BASIC                    New                                 4

    PUB WORKFORCE_SYNC error 1

    -3 rows

    I have defined the variables of gravity and the alarm message is something like this; (It is fetching only the first row of data) how do I loop through to get all the rows of data and display it in the message of alarm/email (alert) action must be written of the groovy script code to achieve this goal? If Yes can you please provide me examples?

    Alarm message:

    "Request message queue is:

    Type: @UDC_type

    QueueName: @UDC_queuename

    Status: @UDC_status

    County: @UDC_count

    Thanks in advance

    JAI

    Hi Jay,.

    fine I could help you. Please mark the thread as "Answered" when the issue has been resolved and do not hesitate to open a new thread for questions.

    Concerning

    Jochen

  • Windows Mail stops in the middle of the composition of an e-mail message

    We run Windows Mail on our Dell laptop with a Windows Vista 64-bit operating system. Several times recentlly, while composing a note of e-mail of the confectioners, the Windows Mail client inexplicably died. The only way to recover is to press the power button twice. The system returns to the account login on the home page, the message is lost and you must retype the message.

    Hello FHDuffer,

    ·         Only the Windows Mail fails when you try to attach files to email?

    ·         It just freezes or it crashes with an error message?

    ·         What is the antivirus installed on your computer protection software?

    If it stops with an error, I suggest you check event viewer entries to find the defective module that could be causing the Windows mail crashing.

    http://Windows.Microsoft.com/en-us/Windows-Vista/open-Event-Viewer

    You can see the link which will help you analyze the entries below Event Viewer:

    http://Windows.Microsoft.com/en-us/Windows-Vista/what-information-appears-in-event-logs-Event-Viewer

    You can also try to configure a new e-mail account on Windows mail and check if it crashes that the question could be linked to the corrupted e-mail account.

    Also try to disable the antivirus software on your computer and check if it works.

    Note: Please make sure that you enable the antivirus software after the test to keep your computer protected.

    Thank you

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

Maybe you are looking for