Runtime Error when installing the German Photoshop trial

hi,
when I try to install the German Photoshop trial I get a "Laufzeitfehler: Objekt erwartet Zeile 31" (Runtime Error: object expected line 31) after initialisation of the installation program. When opening the Script Debugger it points to a file main.html in Common Files\Adobe/\Installers\...\resources. The Debugger stops at the line: "body onload="AhmbedGUIWorkflow()" id="standardBody"" (without quotation marks). What can I do to avoid this error and install the trial?
Thank you for a fast answer.
Kind regards
PT

Well, what browsers do you use and what version of Java? Also do not forget, that it is not advised to have any Java-dependant app open during installs, including browsers or Adobe Media Player. In any case, I would simply uninstall Java (all versions, including all updates), manually clean out all Java caches (Dokumente und Einstellungen/Peregrin/Anwendungsdaten/Sun/Java,Dokumente und Einstellungen/Peregrin/Lokale Einstellungen/Anwendungsdaten/Sun/Java,Dokumente und Einstellungen/All Users/Anwendungsdaten/Sun/Java,Dokumente und Einstellungen/Peregrin/Lokale Einstellungen/Temp), download the latest version and install with a clean slate. This might bring you back on track, as it should set any bent VM settings back to their defaults.
Mylenium

Similar Messages

  • Error when install the NetWeaver CE trial edition

    Hi experts,
          I tried to install the NetWeaver CE Developer Edtion. In the phase 2 "Define Parameters", there's a screen which asked me to input the "Database ID (DBSID)" and "Database Host", the value of "Database Host" is "48D26CA0500E46A", and it was in the unchangable status. When I click the next button the following information occurs:
    "This computer's host name is '48D26CA0500E46A' but a reverse lookup returned 'cedev'. This will lead to problems later on when starting the Web Application Server. SOLUTION: Insert a line: '10.10.0.10 48D26CA0500E46A' into the host file 'C:/WINDOWS/system32\drivers\etc\hosts', and then continue with the installation."
    I found only insert the '10.10.0.10 48D26CA0500E46A'  into hosts would also cause this error, so I removed the "10.10.0.10 cedev" line and tried to continue the installation, and following error info occurred in the "Prerequisites Checker Results" with Severity "HIGH":
    "The host name has to be an alphanumerical string of characters [A-Z] and [a-z] and digits [0-9], and the hyphen (or minus) character "-". Although the newer RFCs permit host names beginning with digits, we recommend that host names begin with an alpha character. Maximum host name length is 13. Current host name: 48D26CA0500E46A. See also SAP Note 611361. (Updated 2005-06-24)
    Anyone can help?
    Thanks in advance
    YiNing

    Hi YiNing,
    As described in the mentioned SAP Note, the hostname should begin with an alpha character and must be max. 13 characters long. Your current hostname does not fulfill any of these requirements. Please change it in the System Properties (Computer Name tab).
    HTH!
    -- Vladimir

  • Runtime error when trying to open photoshop elements

    I need help getting into my photoshop elements. Purchased several weeks ago. Worked fine, then all of a sudden I'm getting "runtime error" when I try to open. Any thoughts?

    Try re-generating the media database by renaming MediaDatabase.db3
    See this link for further information:
    http://helpx.adobe.com/photoshop-elements/kb/microsoft-c-runtime-error-launcing.html

  • Error when installing the supporting objects of OLL Packaged Application

    Hello,
    I am trying to install OLL Packaged Application|http://www.oracle.com/webfolder/technetwork/tutorials/obe/db/apex/r41/inst_pkgapp/inst_pkgapp.htm#top
    but when installing the supporting objects, I got error when executing the code of "create_package_body"
    Error at line 274: PLS-00201: identifier 'UTL_TCP' must be declared
    create or replace package body eba_oll_log
    as
    g_start_time    number;
    procedure log_init
    is
    begin
        g_start_time := dbms_utility.get_time;
    end log_init;
    procedure log_page_view
    is
    begin
       insert into eba_oll_page_views
          ( APEX_USER,
            PAGE_ID,
            PAGE_NAME,
            VIEW_DATE,
            TS,
            ELAPSED_TIME,
            IP_ADDRESS,
            AGENT,
            APEX_SESSION_ID,
            CONTENT_ID,
            CONTENT_TITLE )
       values
          ( v('APP_USER'),
            v('APP_PAGE_ID'),
            wwv_flow.g_step_title,
            trunc(sysdate,'DD'),
            systimestamp,
            (dbms_utility.get_time-g_start_time)*(.01),
            owa_util.get_cgi_env('REMOTE_ADDR'),
            owa_util.get_cgi_env('HTTP_USER_AGENT'),
            v('APP_SESSION'),
            case when v('APP_PAGE_ID') = 24
                 then v('P24_CONTENT_ID')
                 else null
                 end,
            case when v('APP_PAGE_ID') = 24
                 then v('P24_CONTENT_TITLE')
                 else null
                 end );
       if v('APP_PAGE_ID') = 24 then
          insert into eba_oll_content_views
             ( APEX_USER,
               VIEW_DATE,
               TS,
               IP_ADDRESS,
               AGENT,
               APEX_SESSION_ID,
               CONTENT_ID,
               CONTENT_TITLE,
               NOTE )
          values
             ( v('APP_USER'),
               trunc(sysdate,'DD'),
               systimestamp,
               owa_util.get_cgi_env('REMOTE_ADDR'),
               owa_util.get_cgi_env('HTTP_USER_AGENT'),
               v('APP_SESSION'),
               v('P24_CONTENT_ID'),
               v('P24_CONTENT_TITLE'),
               'Viewed' );
       end if;
       commit;
    end log_page_view;
    procedure log_content_click
    is
    begin
       insert into eba_oll_content_views
          ( APEX_USER,
            VIEW_DATE,
            TS,
            IP_ADDRESS,
            AGENT,
            APEX_SESSION_ID,
            CONTENT_ID,
            CONTENT_TITLE,
            NOTE )
       values
          ( v('APP_USER'),
            trunc(sysdate,'DD'),
            systimestamp,
            owa_util.get_cgi_env('REMOTE_ADDR'),
            owa_util.get_cgi_env('HTTP_USER_AGENT'),
            v('APP_SESSION'),
            v('P24_CONTENT_ID'),
            v('P24_CONTENT_TITLE'),
            'Launched' );
       commit;
    end log_content_click;
    end eba_oll_log;
    create or replace package body eba_oll_api
    as
    function gen_id
       return number
    is
       l_id  number;
    begin
       select to_number(sys_guid(), 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX')
         into l_id
         from dual;
       return l_id;
    end gen_id;
    function eba_oll_tags_cleaner (
        p_tags  in varchar2,
        p_case  in varchar2 default 'U' ) return varchar2
    is
        type tags is table of varchar2(255) index by varchar2(255);
        l_tags_a        tags;
        l_tag           varchar2(255);
        l_tags          apex_application_global.vc_arr2;
        l_tags_string   varchar2(32767);
        i               integer;
    begin
        l_tags := apex_util.string_to_table(p_tags,',');
        for i in 1..l_tags.count loop
            --remove all whitespace, including tabs, spaces, line feeds and carraige returns with a single space
            l_tag := substr(trim(regexp_replace(l_tags(i),'[[:space:]]{1,}',' ')),1,255);
            if l_tag is not null and l_tag != ' ' then
                if p_case = 'U' then
                    l_tag := upper(l_tag);
                elsif p_case = 'L' then
                    l_tag := lower(l_tag);
                end if;
                --add it to the associative array, if it is a duplicate, it will just be replaced
                l_tags_a(l_tag) := l_tag;
            end if;
        end loop;
        l_tag := null;
        l_tag := l_tags_a.first;
        while l_tag is not null loop
            l_tags_string := l_tags_string||l_tag;
            if l_tag != l_tags_a.last then
                l_tags_string := l_tags_string||', ';
            end if;
            l_tag := l_tags_a.next(l_tag);
        end loop;
        return substr(l_tags_string,1,4000);
    end eba_oll_tags_cleaner;
    procedure eba_oll_tag_sync (
        p_new_tags          in varchar2,
        p_old_tags          in varchar2,
        p_content_type      in varchar2,
        p_content_id        in number )
    as
        type tags is table of varchar2(255) index by varchar2(255);
        l_new_tags_a    tags;
        l_old_tags_a    tags;
        l_new_tags      apex_application_global.vc_arr2;
        l_old_tags      apex_application_global.vc_arr2;
        l_merge_tags    apex_application_global.vc_arr2;
        l_dummy_tag     varchar2(255);
        i               integer;
    begin
        l_old_tags := apex_util.string_to_table(p_old_tags,', ');
        l_new_tags := apex_util.string_to_table(p_new_tags,', ');
        if l_old_tags.count > 0 then --do inserts and deletes
            --build the associative arrays
            for i in 1..l_old_tags.count loop
                l_old_tags_a(l_old_tags(i)) := l_old_tags(i);
            end loop;
            for i in 1..l_new_tags.count loop
                l_new_tags_a(l_new_tags(i)) := l_new_tags(i);
            end loop;
            --do the inserts
            for i in 1..l_new_tags.count loop
                begin
                    l_dummy_tag := l_old_tags_a(l_new_tags(i));
                exception when no_data_found then
                    insert into eba_oll_tags (tag, content_id, content_type )
                        values (l_new_tags(i), p_content_id, p_content_type );
                    l_merge_tags(l_merge_tags.count + 1) := l_new_tags(i);
                end;
            end loop;
            --do the deletes
            for i in 1..l_old_tags.count loop
                begin
                    l_dummy_tag := l_new_tags_a(l_old_tags(i));
                exception when no_data_found then
                    delete from eba_oll_tags where content_id = p_content_id and tag = l_old_tags(i);
                    l_merge_tags(l_merge_tags.count + 1) := l_old_tags(i);
                end;
            end loop;
        else --just do inserts
            for i in 1..l_new_tags.count loop
                insert into eba_oll_tags (tag, content_id, content_type )
                    values (l_new_tags(i), p_content_id, p_content_type );
                l_merge_tags(l_merge_tags.count + 1) := l_new_tags(i);
            end loop;
        end if;
        for i in 1..l_merge_tags.count loop
            merge into eba_oll_tags_type_sum s
            using (select count(*) tag_count
                     from eba_oll_tags
                    where tag = l_merge_tags(i) and content_type = p_content_type ) t
               on (s.tag = l_merge_tags(i) and s.content_type = p_content_type )
             when not matched then insert (tag, content_type, tag_count)
                                   values (l_merge_tags(i), p_content_type, t.tag_count)
             when matched then update set s.tag_count = t.tag_count;
            merge into eba_oll_tags_sum s
            using (select sum(tag_count) tag_count
                     from eba_oll_tags_type_sum
                    where tag = l_merge_tags(i) ) t
               on (s.tag = l_merge_tags(i) )
             when not matched then insert (tag, tag_count)
                                   values (l_merge_tags(i), t.tag_count)
             when matched then update set s.tag_count = t.tag_count;
        end loop;
    end eba_oll_tag_sync;
    procedure render_tag_cloud (
       p_selection          in varchar2 default null,
       p_app_id             in number,
       p_session_id         in number,
       p_min_nbr_tags       in number default 1,
       p_max                in number default 100,
       p_limit              in number default 10000,
       p_link_to_page       in varchar2 default '2',
       p_tag_item_filter    in varchar2 default 'P2_TAGS',
       p_clear_cache        in varchar2 default '2,CIR,RIR',
       p_more_page          in varchar2 default '62' )
    as
       l_printed_records    number := 0;
       l_available_records  number := 20;
       l_max                number;
       l_min                number;
       l_class_size         number;
       l_class              varchar2(30);
       type l_tagtype is table of varchar2(2000);
       l_tags l_tagtype;
       type l_numtype is table of number;
       l_cnts l_numtype;
       l_size number;
       l_total number :=0;
       l_buffer varchar2(32676);  
       CURSOR c_all_tags
       IS
           select tag, c from (
           select t.tag, count(*) c
             from eba_oll_content c,
                  eba_oll_tags t
            where c.content_id = t.content_id
              and c.display_yn = 'Y'
              and (p_selection is null or
                   (p_selection is not null and
                   (   (substr(p_selection,1,1) = 'R' and
                        substr(p_selection,2) in (select release_id
                                                    from eba_oll_content_products cp
                                                   where cp.content_id = c.content_id))
                    or (substr(p_selection,1,1) = 'C' and
                        substr(p_selection,2) in (select product_id
                                                    from eba_oll_content_products cp
                                                   where cp.content_id = c.content_id))
                    or (substr(p_selection,1,1) = 'P' and
                        (substr(p_selection,2) in (select product_id
                                                     from eba_oll_content_products cp
                                                    where cp.content_id = c.content_id) or
                         substr(p_selection,2) in (select p.parent_product_id
                                                     from eba_oll_content_products cp,
                                                          eba_oll_products p
                                                    where cp.content_id = c.content_id
                                                      and cp.product_id = p.product_id)))
                    or (substr(p_selection,1,1) = 'G' and
                        (substr(p_selection,2) in (select pg.group_id
                                                     from eba_oll_product_groupings pg,
                                                          eba_oll_content_products cp
                                                    where pg.product_id = cp.product_id
                                                      and cp.content_id = c.content_id) or
                         substr(p_selection,2) in (select pg.group_id
                                                     from eba_oll_product_groupings pg,
                                                          eba_oll_products p,
                                                          eba_oll_content_products cp
                                                    where pg.product_id = p.parent_product_id
                                                      and p.product_id = cp.product_id
                                                      and cp.content_id = c.content_id)))
            group by tag
           ) x where rownum < p_limit
                 and c >= p_min_nbr_tags
            order by upper(tag) ;
    begin
       -- Fetch tags into arrays
       open c_all_tags;
          loop
              fetch c_all_tags bulk collect into l_tags,l_cnts limit p_limit;
              exit;
          end loop;
       close c_all_tags;
       l_available_records := l_tags.count;
       -- Determine total count and maximum tag counts
       l_max := 0;
       l_min := 1000;
       FOR i in l_cnts.first..l_cnts.last loop
          l_total := l_total + l_cnts(i);
          if l_cnts(i) > l_max then
             l_max := l_cnts(i);
          end if;
          if l_cnts(i) < l_min then
             l_min := l_cnts(i);
          end if;
       end loop;
       if l_max = 0 then l_max := 1; end if;
       l_class_size := round((l_max-l_min)/6);
       -- Generate tag cloud --
       sys.htp.prn('<div class="tagCloud"><ul>');
       for i in l_tags.first..l_tags.last loop
           l_printed_records := l_printed_records + 1;
           if l_cnts(i) < l_min + l_class_size then
              l_class := 'size1';
           elsif l_cnts(i) < l_min + (l_class_size*2) then
              l_class := 'size2';
           elsif l_cnts(i) < l_min + (l_class_size*3) then
              l_class := 'size3';
           elsif l_cnts(i) < l_min + (l_class_size*4) then
              l_class := 'size4';
           elsif l_cnts(i) < l_min + (l_class_size*5) then
              l_class := 'size5';
           else l_class := 'size6';
           end if;     
           l_buffer := '<li><a class="'||l_class||'" href="'||
                  'f?p='||p_app_id||':'||p_link_to_page||':'||p_session_id||':::'||p_clear_cache||':'||
                  p_tag_item_filter||':'||htf.escape_sc(l_tags(i))||'">'||
                  htf.escape_sc(l_tags(i)) || '<span>' || l_cnts(i) || '</span></a></li>';
           sys.htp.prn(l_buffer);
           l_buffer := '';
           if  l_printed_records > p_max then
               exit;
           end if;
       end loop;
       sys.htp.prn('</ul></div>');
       -- print if there's more
       if l_tags.count - l_printed_records != 0 then
               htp.prn('<p><a href="f?p='||p_app_id||':'||htf.escape_sc(p_more_page)||
                     ':'||p_session_id||':::'||htf.escape_sc(p_more_page)||'">View all tags</a></p>');
       end if;
       exception when others then
          sys.htp.prn('<p>No tags found.</p>');
    end render_tag_cloud;
    procedure email_when_feedback (
       p_feedback_id  in  number,
       p_host_url     in  varchar2,
       p_app_id       in  number )
    is
       l_body       clob;
       l_body_html  clob;
    begin
    for c1 in (
       select f.feedback_comment, f.feedback_by,
              c.title, nvl(ct.feedback_contacts,'[email protected]') email
         from eba_oll_content_feedback f,
              eba_oll_content c,
              eba_oll_team ct
        where f.id = p_feedback_id
          and f.content_id = c.content_id
          and c.team_id = ct.team_id (+) )
    loop
       l_body := 'You have received feedback for a piece of content you own in the Oracle Learning Library (OLL) Application.
    Content: '|| c1.title || utl_tcp.crlf || '
    Feedback: '|| c1.feedback_comment || utl_tcp.crlf || '
    Left by: '|| lower(c1.feedback_by) ||'
    You can respond via the OLL Application, '||p_host_url||'f?p='||p_app_id||':47:::NO::P47_ID:' || p_feedback_id || '.';
       l_body_html := '<div style="border: 1px solid #DDD; background-color: #F8F8F8; width: 460px; margin: 0 auto; -moz-border-radius: 10px; -webkit-border-radius: 10px; padding: 20px;">
    <p style="font: bold 12px/16px Arial, sans-serif; margin: 0 0 10px 0; padding: 0;">
    You have received feedback for a piece of content you own in the Oracle Learning Library (OLL) Application.
    </p>
    <table style="width: 100%;" cellspacing="0" cellpadding="0" border="0">
    <tr>' || utl_tcp.crlf || '
    <td style="font: bold 12px/16px Arial, sans-serif; color: #666; padding: 0 10px 10px 0; vertical-align: top;">Content</td>
    <td style="font: normal 12px/16px Arial, sans-serif; padding: 0 10px 10px 0; vertical-align: top;"><a href="#" style="color: #000">'||c1.title||'</a></td>
    </tr>
    <tr>' || utl_tcp.crlf || '
    <td style="font: bold 12px/16px Arial, sans-serif; color: #666; padding: 0 10px 10px 0; vertical-align: top;">Feedback</td>
    <td style="font: normal 12px/16px Arial, sans-serif; padding: 0 10px 10px 0; vertical-align: top;">'||replace(c1.feedback_comment,CHR(10),'<br/>')||'</td>
    </tr>
    <tr>' || utl_tcp.crlf || '
    <td style="font: bold 12px/16px Arial, sans-serif; color: #666; padding: 0 10px 10px 0; vertical-align: top;">Left by</td>
    <td style="font: bold 12px/16px Arial, sans-serif; padding: 0 10px 10px 0; vertical-align: top;">'||lower(c1.feedback_by)||'</td>
    </tr>
    <tr>' || utl_tcp.crlf || '
    <td colspan="2" style="text-align: center; font: normal 12px/16px Arial, sans-serif; padding: 0 10px 10px 0; vertical-align: top;">
    <a href="'||p_host_url||'f?p='||p_app_id||':47:::NO::P47_ID:' || p_feedback_id ||'" style="display: block; padding: 10px; background-color: #EEE; font: bold 16px/16px Arial, sans-serif; color: #444">Respond to this Feedback</a>
    </td>
    </tr>
    </table>
    </div>';
       apex_mail.send (
          p_to        => c1.email,
          p_from      => '[email protected]',
          p_subj      => 'OLL - New Feedback for your team',
          p_body      => l_body,
          p_body_html => l_body_html );
    end loop;
    end email_when_feedback;
    procedure email_when_response (
       p_feedback_id  in  number,
       p_host_url     in  varchar2,
       p_app_id       in  number )
    is
       l_body       clob;
       l_body_html  clob;
    begin
    for c1 in (
       select f.feedback_comment, f.feedback_by, f.response, c.title
         from eba_oll_content_feedback f,
              eba_oll_content c
        where f.id = p_feedback_id
          and f.content_id = c.content_id )
    loop
       l_body := 'You have received a response to your feedback left in the Oracle Learning Library (OLL) Application.
    Content: '|| c1.title || '
    Feedback: '|| c1.feedback_comment || '
    Response: '|| c1.response || '
    You can also view this response via the OLL Application, '||p_host_url||'f?p='||p_app_id||':60:::NO::IR_ID:' || p_feedback_id || '.';
          l_body_html := '<div style="border: 1px solid #DDD; background-color: #F8F8F8; width: 460px; margin: 0 auto; -moz-border-radius: 10px; -webkit-border-radius: 10px; padding: 20px;">
    <p style="font: bold 12px/16px Arial, sans-serif; margin: 0 0 10px 0; padding: 0;">
    You have received a response to your feedback left in the Oracle Learning Library (OLL) Application.
    </p>
    <table style="width: 100%;" cellspacing="0" cellpadding="0" border="0">
    <tr>' || utl_tcp.crlf || '
    <td style="font: bold 12px/16px Arial, sans-serif; color: #666; padding: 0 10px 10px 0; vertical-align: top;">Content</td>
    <td style="font: normal 12px/16px Arial, sans-serif; padding: 0 10px 10px 0; vertical-align: top;"><a href="#" style="color: #000">'||c1.title||'</a></td>
    </tr>
    <tr>' || utl_tcp.crlf || '
    <td style="font: bold 12px/16px Arial, sans-serif; color: #666; padding: 0 10px 10px 0; vertical-align: top;">Feedback</td>
    <td style="font: normal 12px/16px Arial, sans-serif; padding: 0 10px 10px 0; vertical-align: top;">'||replace(c1.feedback_comment,CHR(10),'<br/>')||'</td>
    </tr>
    <tr>' || utl_tcp.crlf || '
    <td style="font: bold 12px/16px Arial, sans-serif; color: #666; padding: 0 10px 10px 0; vertical-align: top;">Response</td>
    <td style="font: bold 12px/16px Arial, sans-serif; padding: 0 10px 10px 0; vertical-align: top;">'||replace(c1.response,CHR(10),'<br/>')||'</td>
    </tr>
    <tr>' || utl_tcp.crlf || '
    <td colspan="2" style="text-align: center; font: normal 12px/16px Arial, sans-serif; padding: 0 10px 10px 0; vertical-align: top;">
    <a href="'||p_host_url||'f?p='||p_app_id||':60:::NO::IR_ID:' || p_feedback_id ||'" style="display: block; padding: 10px; background-color: #EEE; font: bold 16px/16px Arial, sans-serif; color: #444">View Response in OLL Application</a>
    </td>
    </tr>
    </table>
    </div>';
       apex_mail.send (
          p_to        => c1.feedback_by,
          p_from      => '[email protected]',
          p_subj      => 'Oracle Learning Library - Response to your Feedback',
          p_body      => l_body,
          p_body_html => l_body_html );
    end loop;
    end email_when_response;
    end eba_oll_api;
    /Error at line 274: PLS-00201: identifier 'UTL_TCP' must be declared
    Edited by: Fateh on Jan 13, 2012 7:32 AM

    Thanks & Sorry for not mentioning the full information about my environment.
    it was:
    Oracle 11g xe R2 on Windows 7 machine
    Apex listener deployed on Glass Fish server 3.1 on Windows 7 machine
    Apex 4.1
    Google Chrome
    So, to have OLL application worked locally . we need the following:
    grant execute on utl_tcp to [your_schema_name]And to
    Configure an Application Express Application as a Partner Application in Oracle AS Single Sign-On http://www.oracle.com/technetwork/testcontent/sso-partner-app-100552.html.
    I think I am going to install on my work space on apex.oracle.com.
    Regards,
    Fateh
    Edited by: Fateh on Jan 15, 2012 9:38 AM

  • Error when installing the Integration Kit for SAP

    Hello,
    When installing the integration Kit I get the following error:
    The installation of BO XI Integration for SAP Solutions cannot continue because WACS has been installed with BO Enterprise.
    i have seen in BO-SAp Integration Kit Installation Error that I have to had selected the point Install Tomcat application server option, but I was not asked to.
    I'm following the blog BusinessObjects and SAP - Part 1 of 4, and my installation screens are similar but not equal. for example, I fon't have the installation type new, but the quickk type. And I cannot select the database, too.
    Of course the screen asking about the Web Application server with the option of installing the tomcat application server doesn't appear.
    What have I done wrong?
    What is the solution? Reinstalling everything but doing what?
    Thanks and regards,
    Ana.

    Hi Ingo,
    Yes, it is BO Edge.
    I have deinstalled the BO Edge sw and now I have installed it again. This time I have selected the export installation type and I have select the TOMCAT. The installation has finished successfully, but when installing the SAP integration Kit, I have the same problem. The message about the WACS already installed appears again.
    What else can I do?
    Thanks and regards,
    Ana.

  • Known Issue: Fatal error when installing the Windows emulators: 2147023293 (Windows 10 Insider Preview SDK and tools, April 2015 release)

    When installing the Windows 10 emulators, you may receive the following error:
    Error: Emulators for Windows Mobile 10.0.10069 : The installer failed. Fatal error during installation. Error code: -2147023293

    To resolve this issue, run Visual Studio setup again to add the emulators. To do this
    Reboot your computer
    Open Control Panel, and select Programs and Features. 
    Select Microsoft Visual Studio 2015 RC, click Change, and then click
    Modify.
    Select the feature “Emulators for Windows 10 Mobile”, and click Update.

  • Error when installing the crruntime_12_1.msm

    Hi
    We have Vis Studio 2008 and CR 2008
    Recently upgraded to SP1 of CR2008
    When installing the latest version of our software, which has the CrRuntTime_12_1.msm integrated into the installation, onto an XP sp2 machine, many of the DLL's failed to install with:
    'Failed to register c:\program files\business objects\businessobjects enterprise 12.0\win32_x86\cereportsource.dll
    and many more
    We had to download the runtime installer and run that for it to work (suppose we could have manually regsvr32'd many of them)
    Is this going to keep happening with our other clients ?
    Brue

    That SAP Note is currently still internal.
    It says to install Visual Studio 2005 Service Pack 1, and ensure the following assemblies are referenced in the build:
    Microsoft_VC80_ATL_x86.msm
    Microsoft_VC80_CRT_x86.msm
    Microsoft_VC80_MFCLOC_x86.msm
    Microsoft_VC80_MFC_x86.msm
    Microsoft_VC80_OpenMP_x86.msm
    policy_8_0_Microsoft_VC80_ATL_x86.msm
    policy_8_0_Microsoft_VC80_CRT_x86.msm
    policy_8_0_Microsoft_VC80_MFCLOC_x86.msm
    policy_8_0_Microsoft_VC80_MFC_x86.msm
    policy_8_0_Microsoft_VC80_OpenMP_x86.msm
    It's something Dave Hilton found with the XI 3.1 runtimes, caused by a  change in a Microsoft process that prevents us from including components from those msm's.
    Sincerely,
    Ted Ueda

  • Runtime error when installing reader on vista

    I had Reader 7.0.9 on my Vista computer and started getting errors. The box said I needed an update and when I tried to download I got a runtime error no error number. I decided to uninstall 7.0.9 and install the Reader for Vista. When I tried to do so the download would start where the previous download had errors and I would now receive an error. I can't download anything because of this and I know I uninstalled the previous version. Anyone have any ideas?

    Hi
    Hmmm without the exactly error message its not possible to say what could be wrong.
    I assume you have a clean Vista installation on your notebook and also the BIOS was updated.
    If not, do it!

  • Runtime error when download the CE7.1

    hi all:
        When i get the EHP1 for SAP NetWeaver Composition Environment 7.1 - Preview Version from the
    url:https://www.sdn.sap.com/irj/scn/downloads?rid=/library/uuid/00846edd-355b-2b10-f38c-df94ec96eb74,or other download links,
    it always prompt the error as follows:
    Portal Runtime Error
    An exception occurred while processing a request for :
    iView : pcd:portal_content/com.sap.sdn.folder.sdn/com.sap.sdn.folder.application/com.sap.sdn.folder.roles/com.sap.sdn.folder.navigationroles/com.sap.sdn.folder.sdn/com.sap.sdn.role.anonymous/com.sap.sdn.tln.workset.sdnhome/com.sap.sdn.app.workset.additionalobj/com.sap.sdn.app.iview.softwaredownload
    Component Name : com.sap.sdn.softwaredownload.SoftwareDownload
    com.sap.sdn.reporting.Reporter.
    Exception id: 03:37_13/11/08_408604_3417150
    See the details for the exception ID in the log file
    what's the problem,and what can i do?

    Hi,
    There is currently an issue with all trial downloads. The SDN team is working hard to resolve it. I'll let you know when it's fixed.
    Thanks for your interest and patience!
    \-- Vladimir

  • C++ Runtime Error when installing addons

    Hi everyone,
    I get this error when trying to install or start any addon: Microsoft Visual C++ Runtime Library. Runtime Error! Program: C:\Program Files\SAP\SAP Business One\SAP Business One.exe.  Abnormal program termination. And SAP Business One quits.
    I've already reinstalled SQL Server, DotNet framwork 1.1 and 2.0, and SAP business One. Tried to start with anti-virus disabled, but error persisted.
    This error appears on a windows 2003 server, and on all workstations within the domain.
    I am totally out of options left to get this fixed. Anyone has a clue for me?
    Thanks,
    Andy

    Refer: SAP Note Number 819501 that explains How to clean client after corrupt installation of add-on(s)
    Read the note and understand whether any of the symptoms are mathcing with your problem, If Yes, follow the instructions as per the note.
    Along with the  above, Try this thread and guidelines - Microsoft C++ Run Time Error (This thread is not yet marked as answered)
    Re: Microsoft C++ Run Time Error
    If the thread helps you Thanks to Lucas and Tim.
    Extract from the thread,
    >> refer to note#808354, https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/smb_searchnotes/display.htm?note_langu=E&note_numm=0000808354
    >> In addition to Lucas suggestion, there is another SAP Note 852031 following above Note 808354. Try the suggested work around in this Note only after going over Note 808354. The work around is good for cases where more than one UI versions ar registered at the same time.
    >> https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/smb_searchnotes/display.htm?note_langu=E&note_numm=0000852031
    Good Luck
    Regards
    Satish

  • Runtime Error when installing Adobe Creative Suite 5.5 Production Premium

    I am trying to install Adobe Creative Suite 5.5 Production Premium, but I keep getting a 'Runtime Error!':  This application has requested the Runtime to terminate it in an unusual way.  Please contact the application's support team for more information.
    What should I do?  Any help greatly appreciated!  I am running Win 7, Service Pack 1, 64 bit.

    We cannot know. Your information is hugely insufficient. Check Your Windows Event Viewer and tell us the "fault module" plus provide detailed specs for your computer. Runtime errors usualyl mean that A DLL is missing, a security tool is blocking critical functions or that the processor is not compatible in teh first place. Just as well this could be a driver issue with your SATA bus or whatever.
    Mylenium

  • I get a runtime error while installing the VCREDIST_X86_2005_SU.exe

    Hi Guys,
    I get "Error : 1316.A network error occured while attempting to read from the file: C:\TEMP\IXP001.TMP\CP0000328.msi" while installing the VC++ redistributable.
    Is this known to any of you, please let me know how to fix it.
    If there is a solution on some forum, please direct me to that link.
    Some one is intrested in solving this problem, please let me know what else do you need to understand the problem.
    Please give me a possible solution, as i need it ASAP.
    -Abhai

    Hi Dude,
    Please follow the below steps.
    [Be careful when you deleting any registry key. Your system may crashed if you delete or modify wrong registry key. Please follow technet to know about registry backup.
    1. Go to run and type regedit, at regedit window go to edit then find and type IXP000.TMP and click on "Find Next"
    2. It will Search entire registry and please delete entire Hive if you it find under below registry.
    a. HKEY_CLASSES_ROOT\Installer\Products\(hive with alpha numaric valu, see belwo exmp)
    (examp: HKEY_CLASSES_ROOT\Installer\Products\b25099274a207264182f8181add555d0 if you found IXP00.TMP under this hive then only delete "b25099274a207264182f8181add555d0", the last alpha numaric
    hive may be diff for your box, you can check product name key under this alpha numaric hive whether it "="Microsoft Visual C++ 2005 Redistributable" or not (ProductName"="Microsoft Visual C++ 2005 Redistributable") Be careful when you delete registry key,
    please do not delete entire "Products". Before deleting right click on it and select export and save this hive backup any location on your system )
    b..HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\}
    (examp: "[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{7299052b-02a4-4627-81f2-1818da5d550d}]" if you found IXP00.TMP under this hive then only delete "b25099274a207264182f8181add555d0"
    the last alpha numeric hive may be diff for your box, you can check "DisplayName" under this alpha numeric hive whether it "Microsoft Visual C++ 2005 Redistributable" or not (ProductName"="Microsoft Visual C++ 2005 Redistributable") Be careful when you delete
    registry key, please do not delete entire "Products". Before deleting right click on it and select export and save this hive backup any location on your system )
    c. HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\
    (examp: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\b25099274a207264182f8181add555d0"if you found IXP00.TMP under this hive then only
    delete "b25099274a207264182f8181add555d0" the last alpha numeric hive may be diff for your box, you can check "DisplayName" under this alpha numeric hive whether it "Microsoft Visual C++ 2005 Redistributable" or not (ProductName"="Microsoft Visual C++ 2005
    Redistributable") Be careful when you delete registry key, please do not delete entire "Products". Before deleting right click on it and select export and save this hive backup any location on your system )
    3. Reboot your box and run installer again, it will work. Please let us know if you found any issue.

  • Portal Runtime Error When Previewing the BI Report iViews

    Hi Experts,
    I hope this is the right place for my issue. I have an issue previewing the BI reports that I have created as the iViews and have put them in the portal. I am able to preview them in the BW/BI server successfully. Then I have created them in another server and got the portal runtime error. There are 2 different servers that I am working on, and there is no single sign on support on these servers.
    Portal Runtime Error
    An exception occurred while processing your request
    Exception id: 10:21_29/06/09_0049_44107950
    See the details for the exception ID in the log file.
    I check the permission, and everything has been set up as the BW/BI server (Built-in Group Everyone). I still got the portal runtime error. There is another folder of BI report iViews that someone else has created before. When I preview it, it prompts me with the NetWeaver Log in page. Then it opens the BI report iView properly. Unfortunately, it will not prompt the log in page on my own BI report iViews that I have created. Instead, it shows the portal runtime error page. Any ideas how can I solve this?
    Thanks,
    -Don
    Edited by: Don P. on Jun 29, 2009 5:06 PM

    Never mind! I solved it myself.

  • Error when installing the ERP6.0 SR3 in windows MSCS

    Hello Gurus,
    When i tried to install ERP 6.0 SR3 in windows MSCS+ oracle, I met a issue.
    1. oracle + OFS is installed.
    2. ASCS is installed.
    3. first MSCS node is configured
    4. then i try to install the DB instance, according to the installation guide, there is a statement saying:
    Make sure that in the database host field, the local database host is displayed.
    but during my installation, the DB host field is blank, so i manually enter the local host name, click on next, choose the export directory and done.
    then in the checking oracle existing step, an error occurred:
    oracle software is not installed, please install oracle before ...
    Could you help me how to solve the issue?
    Best regards,
    Charlie

    hello,
    After restart the OS, this issue seems to be vanished, but we met another error.
    In the installation where sap creating DB instance, there's a option to let us to choose the oracle db version, since i installed the oracle 10.2.0.4, i chose 102 as the version, but an error message pop up indicating that the version is wrong. And then i re-select version 112, it can continue...
    i looked back at our installation and noted that when we installed OFS 3.4.15, the installer indicated that 11g. i suspect it could be SAPinst read the version from the wrong place, instead of 102, it recognize 112.
    Did you guys have any similar experience of it?
    Could you give me some help?
    Thanks a lot in advance!
    Regards,
    Charlie

  • 1935 error when installing Adobe Acrobat Xl trial version

    Has anyone experience an error message 1935; with an extension of  76C3F0F6-989D-35DA-81C6-CA8A88CC93CA) HRESULT0x800703F9, do not know what it trying to say nor how to deal with this.  I have not been able to download the trail version.  HELP!!!!!!!

    Hi felicitav,
    I'm sorry you're having trouble downloading the Acrobat XI trial. The error you're encountering is discussed in this Help document: Error 1935 | Install | Acrobat, Reader | Windows
    If you're still having trouble after following the steps in that document, let us know.
    Best,
    Sara

Maybe you are looking for