Port File: Outbound file trigger not executed

Hi,
We want send some idoc's to a file port and execute a unix script after write it.
In the same directory we have a unix script ( prueba.sh). There is no issue in this script, so we are tested it manually.
We have configured one file port in WE21 with:.
Outbound file TAB:- Physical directory : /idocs/
Function module: EDI_PATH_CREATE_MESTYP_DOCNUM
Outbound Trigget TAB: Automatic Start Possible check box checked.
RFC destination : SERVER_EXEC.
Directory : /idocs/
Command file : prova.sh
Also we have configured and succesfully tested SERVER_EXEC connection:
TCP/IP connections:- SERVER_EXEC configured with parameters: Application server , Program: rfcexec.
Finally file are created but script is not executed.
Why? What is wrong?
Thanks in advance.
Carme.

Solved.
It's ncessary to activate check "Start Subsystem" in partner profile (we21)
By default , doesn't start subsystem.

Similar Messages

  • ICal failing to run applescripts: The 'Open' button does not change to 'Run', and the script file is opened but not executed on alert.

    iCal failing to run applescripts: The 'Open' button does not change to 'Run', and the script file is opened but not executed.

    Calendar (not called iCal anymore) does not include that capability any longer, apparently.  What you have to do now is go to Automator and create a Calendar Alert action.  You can add a Run AppleScript object to the action and paste in your script there, then when you save it, it will become available as a choice in the alert menu in Calendar.

  • Why is the second update in trigger not executing

    Hi all I'm just starting with pl/sql . My trigger works but the second update does not execute.
    why is it not executing? and how can I get it to execute?
    CREATE OR REPLACE TRIGGER bb_ordercancel_trg
    AFTER UPDATE OF idstatus ON bb_basketstatus
    FOR EACH ROW
    WHEN( new.idstage = 4)
    DECLARE
    CURSOR basketitem_cur is
    SELECT idproduct,quantity,option1
    from bb_basketitem
    where idbasket =:new.idbasket;
    lv_chg_num NUMBER(3,1);
    BEGIN
    FOR basketitem_rec in basketitem_cur LOOP
    IF basketitem_rec.option1 =1 then
    lv_chg_num := (.5*basketitem_rec.quantity);
    ELSE
    lv_chg_num := basketitem_rec.quantity;
    END IF;
    update bb_product
    set stock= stock - lv_chg_num
    where idproduct = basketitem_rec.idproduct;
    update bb_basket
    set orderplaced = NULL
    where idbasket = :new.idbasket;
    END LOOP;
    END;

    I retract that and with the modified code it works .
    thanks guys, I should have drank a little more coffee when I started this ;-)
    CREATE OR REPLACE TRIGGER bb_ordcancel_trg
    AFTER INSERT ON bb_basketstatus
    FOR EACH ROW
    WHEN( new.idstage = 4)
    DECLARE
    CURSOR basketitem_cur is
    SELECT idproduct,quantity,option1
    from bb_basketitem
    where idbasket =:new.idbasket;
    lv_chg_num NUMBER(3,1);
    BEGIN
    FOR basketitem_rec in basketitem_cur LOOP
    IF basketitem_rec.option1 =1 then
    lv_chg_num := (.5*basketitem_rec.quantity);
    ELSE
    lv_chg_num := basketitem_rec.quantity;
    END IF;
    update bb_product
    set stock= stock - lv_chg_num
    where idproduct = basketitem_rec.idproduct;
    update bb_basket
    set orderplaced = 0
    where idbasket = :new.idbasket;
    END LOOP;
    END;
    Edited by: user8690163 on Dec 8, 2009 12:57 PM

  • Trigger Not Executing

    Hi
    I am executing a simple but it not executing as desired. In my trigger i am calling Stored Procedure. Individually when execute SP it gave me right result but with the help of trigger , its not executing.
    /* Trigger */
    CREATE OR REPLACE TRIGGER MemShipCA_ACL
    After Insert on FCA_USERS_REG
    FOR EACH ROW
    Sp_Membership_ACL(:new.User_id);
    End;
    /* Procedure */
    CREATE OR REPLACE PROCEDURE Sp_Membership_ACL (USERID NUMBER) IS
    PRAGMA AUTONOMOUS_TRANSACTION;
    USERTYPE NVARCHAR2(10);
    Begin
    Begin
    Select USER_TYPE into USERTYPE from FCA_USERS_REG where User_id=USERID;
    Exception
    When NO_DATA_FOUND then
    USERTYPE :=NULL;
    end;
    if trim(USERTYPE) ='CA' then
    insert into FCM_USER_ACL (ACL_id,USer_id) VAlues (43,USERID);
    commit;
    End if;
    End;
    Please help me.
    Thanks & Regards
    Mani
    Edited by: manioracle on Nov 28, 2008 12:02 PM

    Hi,
    Demo :-
    14:26:30 rel15_real_p>create table t1(n1 number);
    Table created.
    14:26:47 rel15_real_p>create table t2(n1 number);
    Table created.
    14:28:11 rel15_real_p>commit;
    Commit complete.
    14:28:15 rel15_real_p>CREATE OR REPLACE TRIGGER t_trigger
    14:28:32   2  AFTER INSERT ON t1
    14:28:32   3  FOR EACH ROW
    14:28:32   4    DECLARE
    14:28:32   5    PRAGMA AUTONOMOUS_TRANSACTION;
    14:28:32   6    i PLS_INTEGER;
    14:28:32   7  BEGIN
    14:28:32   8        SELECT COUNT(*)
    14:28:32   9        INTO i
    14:28:32  10        FROM t1;
    14:28:32  11
    14:28:32  12         INSERT INTO t2 VALUES (i);
    14:28:32  13         COMMIT;
    14:28:32  14  END;
    14:28:33  15  /
    14:28:35 rel15_real_p>insert into t1 values(10);
    1 row created.
    14:29:01 rel15_real_p>select  * from t2;
            N1
             0
    14:29:09 rel15_real_p>insert into t1 values(20);
    1 row created.
    14:29:23 rel15_real_p>select  * from t2;
            N1
             0
             0
    14:29:26 rel15_real_p>commit;
    Commit complete.
    14:29:30 rel15_real_p>insert into t1 values(30);
    1 row created.
    14:29:34 rel15_real_p>select  * from t2;
            N1
             0
             0
             2
    14:30:17 rel15_real_p>truncate table t1;
    Table truncated.
    14:30:23 rel15_real_p>truncate table t2;
    Table truncated.
    14:30:26 rel15_real_p>commit;
    Commit complete.
    14:30:29 rel15_real_p>insert into t1 values(10);
    1 row created.
    14:30:34 rel15_real_p>select  * from t2;
            N1
             0
    14:30:38 rel15_real_p>rollback;
    Rollback complete.
    14:30:41 rel15_real_p>select  * from t2;
            N1
             0
    14:30:42 rel15_real_p>- Pavan Kumar N

  • I downloaded the trial version of Lightroom.  The file downloaded but does not execute

    I downloaded CreativeCloudSetup.exe.  I clicked on the the file but nothing happens.  My Task Manager shows that the file is in memory but not doing anything.

    Valenta3630 then the next step will be to review your installation log files for the error message preventing the Creative Cloud Desktop application from installing on your computer.  For information on how to locate and interpret your installation log files please see Troubleshoot install issues with log files | CC - http://helpx.adobe.com/creative-cloud/kb/troubleshoot-install-logs-cc.html.  You are welcome to post any specific errors you discover to this discussion.

  • Batch file and popupmessage do not execute

    Hi,
    I installed TestStand 4.1 on my PC.  Prior to this TestStand 3.5 was resident.
    There seem to be a few glitches, namely when i run the step types messagepopup and callexecutable nothing happens.  They appear to run but the executable is not called and the message does not pop up.
    I tried the messagepopup example and noticed that the types were different, namely my type is messagePopup_2 and the examples type is messagePopup.  I can copy and paste from the example to my sequence and it works fine.
    The problem is I cannot find an example for callexceutable.  I know i have dine it correctly as I create and execute the same sequence on another pc.  It's also worrying as I odn't want to find further done the line that I have to recode a whole pile of the sequence.
    Anyone any ideas?
    TIA,
    Sean

    Hi Sean,
    There is a tool called  TestStand Type Differ tool
    This threads could be also interresting for you 
    http://forums.ni.com/ni/board/message?board.id=330&message.id=17427#M17427
    http://forums.ni.com/ni/board/message?board.id=330&message.id=17797&query.id=1970961#M17797
    regards
    juergen
    Message Edited by j_dodek on 08-11-2009 01:07 AM
    =s=i=g=n=a=t=u=r=e= Click on the Star and see what happens :-) =s=i=g=n=a=t=u=r=e=

  • Developing site to use external javascript files for server access. my ain.js file just displays and does not execute. Why?

    My ain.js file is meant to work on and access server files for tracking all visitors to the site I am developing.
    One way to access it, in my plan, is to use index.htm. when I open index.htm it displays correctly and presents a link to ain.js with a query line (?a=zzzzz--e2).
    The entire file is displayed; but not executed.
    Short of building my own server (prior to publishing what I am developing) how do you propose I test what I have written?
    As a retiree, I have limited funds (the purpose of developing a website is meant to coorect that).

    This forum is for Firefox user support, very few of our contributors are developers.
    Try posting at the Web Development / Standards Evangelism forum at MozillaZine. The helpers over there are more knowledgeable about web page development issues with Firefox. <br />
    http://forums.mozillazine.org/viewforum.php?f=25 <br />
    You'll need to register and login to be able to post in that forum.

  • My compiled program will not execute on my PC.

    I am new to Java so is there anyone out there who can help me with a problem. I have a compiled Java program, the basic Hello World beginner's file. The file will compile, but not execute. It will execute on other computers, but not mine. Can anyone help me? I would greatly appreciate it. Oh yeah, I'm using jdk1.5.0_07. Thanks.

    Download JAVA Software Developement Kit (SDK previously JDK) from http://java.sun.com/javase/downloads/index.jsp
    Install the executable file just downloaded.
    Search for command.exe file inside C:\Windows\System32 and copy it to the 'bin' folder inside the jdk folder (say C:\Program Files\Java\jdk1.5.0_08\bin ).
    Now double click open the command.exe file and ( something like this will be displayed c:\PROGRA~1\.....\BIN>) type edit autoexec.bat
    Now type set path=%path%; c:\jdk..complete path (in my case set path=%path%;C:\Program Files\Java\jdk1.5.0_08\bin\autoexec.bat). For more info on setting path http://www.javacoffeebreak.com/tutorials/gettingstarted/part1b.html
    Save the file and exit.
    Thats it! Happy programming...
    -Madhu.
    Message was edited by:
    Madhu84

  • EDI Outbound file trigger not happening automatically.unix script

    EDI OUT bound issue:-
    We are processing IDOC by using WE19 -> Here we are selecting existing IDOC -> By using pushbutton Start Outbound Processing the IDOC EDI file is creating in directory with file name as:- /abc/xyz/edi/DECVDE_989898.
    In the same directory we have unix script file push_idoc_sci.sh is available which sends this EDI file to unix server.This script is working fine when we do manual sending of edi file - there is no issue in the script.
    1> We configured the port SAPEDI which sends this EDI file automatically by using this script file. But this is not happening.
    WE21 settings:-
    Outbound file TAB:- Phycal directory -> /abc/xyz/edi/
                                     Function module: EDI_PATH_CREATE_MESTYP_DOCNUM
    Outbound Trigget TAB:-
                                    Automatic Start Possible check box checked.
                                    RFC destination -- SERVER_EXCE.
                                    Directory-- /abc/xyz/edi/
                                    Command file -- push_idoc_sci.sh
    Inbound file TAB:- Phycal directory -> /abc/xyz/edi/ in
                                 FM -- EDI_PATH_CREATE_CLIENT_DOCNUM
    2> RFC destination TCP/IP connections:- SERVER_EXEC configured with parameters:
         Application server :- Program: rfcexec.
    The Issues is EDI file is creating in applicastion server, but it is not going automatically to unix server as automated process. even we mentoned the script in port defination to send automatically.
    Is there any we are missing? any seetings do we need to do extra?
    Please let us know.
    Thanks in advance.
    Sreedhara.

    Hi Hi sreedhara gupta
    what REDDY said is correct. Still you if you want test by using WE19 ....Put break point at include MSED7F03 at  IF direction_in <> c_direct_incoming.
    change the value of  control_record_in-outmod to 1 or 3.
    Note: Imp thing is............. there is a chase of missing segments which are requied in EDI Subsystem.
    Thanks
    Ramesh
    Edited by: Ramesh on Mar 26, 2010 7:07 PM

  • Error 26 when executing sql. File opened that is not a database file. My Easy System Cleaner will not work on Foxfire. What to do?

    I have the Easy System Cleaner. It worked through Internet Explorer. But when it comes to Mozilla Foxfire. It stops.
    The message is:
    error executing sql. Error 26. File opened that is not a database file "select[sql] from sqlite_master where [type]="table' and lower (name)='mos_cookies' " File is encrypted or is not a database.
    What should I do. And where do I look to solve this problem.
    I need to use my Easy System Cleaner...I paid for it!
    [email protected]

    How do I fix this error

  • (LDOM) The file just loaded does not appear to be executable.

    Sorry if this is not the right forum - it seems to be the closest one for things about LDOMs; plese let me know if I should post somewhere else.
    I have installed LDoms_Manager-1_2.zip on a T5220 Server; following the book ("Logical Domains 1.2 Administration Guide") I set up the control domain etc, then a guest domain (cranachan) - so far all appears well. I downloaded the dvd iso of Solaris 10 (sol-10-u7-ga-sparc-dvd.iso) and added it to the guest as described, started the domain and issued "boot vdisk_iso:f -v" - this seemed to work well, but there was an error that turned out to be that I had given the wrong path for the system disk.
    So I started over - removed the guest domain and the disk definitions for both guest and control domain, and removed the guest; then recreated everything. This time, when I "boot vdisk_iso:f -v" I get:
    The file just loaded does not appear to be executable.
    Any idea what may have happened? It makes no sense to me; not unless the iso file has been corrupted, but it doesn't seem to have been modified, and I can mount it as a loop-back fs in linux.

    I have the same problem with a Netra T1 system. Solaris 10 installed fine and it won't boot. It did have Solaris 8 on the system, but I put in new drives to start my Solaris 10 install.
    I tried booting to single user cd-rom (ok boot cdrom -s) and ran this:
    # installboot /usr/platform/SUNW,UltraAX-i2/lib/fs/ufs/bookblk /dev/rdsk/c1t0d0s1
    (SUNW,UltraAX-i2 was derived from # uname -i)
    It didn't help.
    I also tried "setenv diag-switch? false" at the okay prompt. It didn't help
    Any thoughts?

  • Could not execute the css file

    Hi,
    I have this code:
    named: email11.java
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.sql.*;
    import java.util.*;
    import business.User;
    import data.UserDB;
    import util.MurachPool;
    public class EmailServlet extends HttpServlet{
    private MurachPool connectionPool;
    public void init() throws ServletException{
    connectionPool = MurachPool.getInstance();
    public void destroy() {
    connectionPool.destroy();
    public void doGet(HttpServletRequest request,
    HttpServletResponse response)
    throws IOException, ServletException{
    Connection connection = connectionPool.getConnection();
    HttpSession session = request.getSession();
    String message ="";
    try{
    Vector users = UserDB.readRecord(connection);
    session.setAttribute("users", users);
    RequestDispatcher dispatcher =
    getServletContext().getRequestDispatcher(
    "/email11/show_email_entry.jsp");
    dispatcher.forward(request, response);
    }catch(SQLException sqle){
    message = "EmailServlet SQLException: " + sqle;
    session.setAttribute("message", message);
    RequestDispatcher dispatcher =
    getServletContext().getRequestDispatcher(
    "/email11/join_email_list.jsp");
    dispatcher.forward(request, response);
    connectionPool.freeConnection(connection);
    and this code in jsp file:
    named: show_email_entry.jsp
    <!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN">
    <%@ taglib uri="../WEB-INF/tlds/murach.tld" prefix="mma" %>
    <html>
    <head>
    <link rel="stylesheet" type="text/css" href="DisplayData.css">
    </head>
    <body>
    <h1> Test</h1>
    <table cellspacing="0" cellpadding="1" border="1">
    <tr valign="bottom">
    <td class="headerColumn" align= "center">First Name</td>
    <td class="headerColumn" align= "center">Last Name</td>
    <td class="headerColumn" align= "center">Address</td>
    <td class="headerColumn" align= "center">Phone Number</td>
    <td class="headerColumn" align= "center">Cell Number</td>
    <td class="headerColumn" align= "center">Email Address</td>
    </tr>
    <mma:users>
    <tr>
    <td><%= firstName %></td>
    <td><%= lastName %></td>
    <td><%= address %></td>
    <td><%= phoneNumber %></td>
    <td><%= cellNumber %></td>
    <td><%= emailAddress %></td>
    </tr>
    </mma:users>
    </table>
    </body>
    </html>
    This is the css file code that I like to apply to the show_email_entry.jsp
    named: Displaydata.css
    This rules are for background color for data display
    /*td.column{
    background-color: #f0f8ff;
    background-color: #fffacd;
    td.headerColumn{
    background-color: #daa520;
    font-weight: bold;
    font-family: sans-serif,Verdana, Arial, Helvetica;
    font-size: 10pt;
    td.column{
    font-family: sans-serif,Verdana, Arial, Helvetica;
    font-size: 10pt;
    white-space: nowrap;
    background-color: #fffacd;
    a{
    text-decoration: none;
    h1{
    color: red;
    They are working fine. However, it just does not execute the css file in the show_email_entry.jsp. Another word, the headerColumn should show some color as I coded it in the css file. But it shows only white background and black text. I have the file named DisplayData.css in the same directory as the file named show_email_entry.jsp. But it still does not work.
    if I create a test.jsp and use with the DisplayData.css file above then it would work fine. But when I used it with the servlet file, then it would not work.
    Anyone knows why ?
    Thanks
    zbonzbon

    Pls, disregard this thread. I have found my answer..
    Thanks,
    zbonzbon

  • Servlet not executing the a file at server?

    i am trying to execute a java file at server
    using the following servlet. I am using
    Process proc=runtime.exec("C:\\j2sdk1.4.1_01\\bin\\javac HelloServlet.java"); I am compiling the code succesfully
    and when i call the servlet at browser it displays HELLO
    but not executing the command. I am using Tomcat and winows NT.
    here the servlet code ....please help.........
    import java.io.*;
    import java.util.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class Hello extends HttpServlet {
    public void doGet(HttpServletRequest request,
    HttpServletResponse response)
    throws ServletException, IOException {
    response.setContentType("text/html");
    PrintWriter out = response.getWriter();
    String docType =
    "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 " +
    "Transitional//EN\">\n";
    out.println(docType +
    "<HTML>\n" +
    "<HEAD><TITLE>Hello</TITLE></HEAD>\n" +
    "<BODY BGCOLOR=\"#FDF5E6\">\n" +
    "<H1>Hello</H1>\n" +
    "</BODY></HTML>");
    try
    Runtime runtime=Runtime.getRuntime();
    Process proc=runtime.exec("C:\\j2sdk1.4.1_01 \\bin\\javac HelloServlet.java");
    BufferedReader br=new BufferedReader(new InputStreamReader(proc.getInputStream()));
    PrintWriter com_out=response.getWriter();
    com_out.println("<pre>");
    String line=null;
    while((line=br.readLine())!=null)
    { com_out.println(line);
    catch (Exception e)
    out.println("Listener *not* started!");

    thanku for the cooperation. i kept as below but still it is not working.......
    String path = getServletContext().getRealPath("C:\\Tomcat 4.1\\webapps\\examples\\WEB-INF\\classes\\Hello.class");
    Runtime runtime=Runtime.getRuntime();
    Process proc=runtime.exec("C:\\j2sdk1.4.1_01\\bin\\javac HelloServlet.java" +path );                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Scenario File to RFC (BAPI): BAPI not executed successful

    Hi Dear Friends!
    At execution of asynchronous Scenario File to RFC (BAPI BAPI_ACC_DOCUMENT_POST)
    I have the following error in RWB Communication Channel (RFC receiver):
    - Error: 2007-07-25 11:08:25 EEST: Message processed for interface BAPI_ACC_DOCUMENT_POST:
    com.sap.aii.af.rfc.afcommunication.RfcAFWException: error while processing message
    to remote system:com.sap.aii.af.rfc.core.client.RfcClientBapiException:
    BAPI not executed successful
    Simultaniously <b>Test Configuration</b> was executed successfully. And mapping is good.
    But I don't any message in <b>target system</b> in <b>sxmb_moni</b> (formed by BAPI).
    In <b>XI system</b> I see in <b>sxmb_moni</b>:
    <Trace level="1" type="T">--start sender interface action determination</Trace>
      <Trace level="1" type="T">select interface mi_sender*</Trace>
      <Trace level="1" type="T">select interface namespace urn:file:to:bapi</Trace>
      <Trace level="1" type="T">no interface found</Trace>
      <Trace level="1" type="T">--start receiver interface action determination</Trace>
      <Trace level="1" type="T">Loop 0000000001</Trace>
      <Trace level="1" type="T">select interface *</Trace>
      <Trace level="1" type="T">select interface namespace</Trace>
      <Trace level="1" type="T">no interface found</Trace>
      <Trace level="1" type="T">--no sender or receiver interface definition found</Trace>
    Please help me understand my error.
    With the best regards,
    Natalia Maslova

    Hi, Dear Friends! Thanks for support!
    My settings of
    Connection between systems:
    DX7 01 (client 001) - XI Integration Server and DE2 13 (client 200) - target system.
    Phisically both systems are in one server: 10.20.30.24 (srv24)
    Business system DE2_200 has Communication Channel: cc_bapi_r, its settings (in Integration Builder Configuration):
    Adapter Type: RFC
    Receiver
    Transport Protocol: RFC
    Message Protocol: RFC (RFC XML)
    Adapter Engine: Integration Server
    RFC Client Parameter:
    RFC Server Type: SAP System
    Application Server: 10.20.30.24
    System Number: 13
    Authentication Mode: Use Logon Data for SAP System
    Logon User: n_maslova
    Logon Password: *******=*******
    Logon Language: EN
    Logon Client: 200
    Maximum Connections: 1
    x Advanced Mode
    x Send 'Confirm Transaction'
    x Commit Handling for Single BAPI Calls
    x BAPI Advances Mode
    Successful RETURN-TYPE Values: 0
    As I understand these settings are the settings of RFC-destination for target system DE2 13 (200) from XI (DX7 01 001).
    In SLD, Business system DE2_200 is defined as:
    Integration:
    Role: Application System
    Related Integration Server: DX7_001
    Technical System: DE2 on srv24
    Client: 200 of DE2
    Logical System Name: DE1CLNT200
    In target system DE2 13 (200) with the help of transaction sm59 I created
    RFC-destination DX7_001 of type H:
    Technical setting parameters:
    Target Host: 10.20.30.24
    Prefix Path: /sap/xi/engine/?type=entry
    Service Number: 8001
    Registration and Safe:
    SSL: Non active.
    SSL: client certificate: DFAULT SSL-client
    Enter to system:
    Language: EN
    Client: 001
    User: PIAPPLUSER
    Status PW: saved
    Password: ********
    After that in this system DE2 13 (200) with the help of transaction sxmb_adm I set in Integration Engine -> Configuration -> Configurate Integration Engine
    (Change Global Configuration Data):
    Role of Business System: Application System
    Related Integr. Server: dest://DX7_001
    Best regards,
    Natalia

  • Service stack update 2871777 to enable installation of RDP Connection Broker on 2012 domain controller - downloaded file will not execute.

    service stack update 2871777 to enable installation of RDP Connection Broker on 2012 domain controller - downloaded file will not execute.
    Downloaded x64 update for server 2012 R2 (KB2871777) -  file downloaded is named Windows8-RT-KB2871777-x64.msu
    When downloaded to server 2012 R2, upon launching the files, the message reads "Windows Update Standalone Installer"
    "The update is not applicable t your computer"
    If this is the wrong update please point me to the correct one - I cannot find another instance of this update anywhere.
    I am unable to remove the active directory from this server, so I need to use this fix if at all possible, in order to use RDP.
    I have tried every workaround I can find.  The goal is to have remote users access RDP to run a remote session and access apps and files
    on the server.  we have Hyper-V enabled and have successfully deployed 10 RDP licenses to the license server) also on the PDC.
    I read one post that suggested installing RD Connection Broker in one instance of a VM and AD DS in the other - not sure if that means we remove
    AD DS from physical server.  We only have one 2012 server (plus a server 2008 with Ad DS) and  a server 2003.  Trying to make this all work so we can deploy 10 remote desktop users.

    KB2871777 appears to be for 2012 (non R2) only.
     As to the other problem maybe this one helps.
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/bbf47aa2-8ae5-4f22-9827-afee5a11417a/install-remote-desktop-services-failed-on-windows-2012-server?forum=winserverTS
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

Maybe you are looking for

  • Few issues with plug in's I need help with.

    Hi guy's! I bought my 17" G4 powerbook yesterday and I am trying to get it setup to work on all the webpages I visit. My first issue is that on one site I was told by pop up that I needed the wmp 9 software so I went to the downloads site and dl'ed w

  • I can't reproduce correctly a reference file .mov in full screen in iTunes

    Hi everybody. Today I have been trying to organize my film collection in iTunes. First, I read that the best way if I had the films in a hard drive was creating a reference file, called .mov. I tried different ways to create it, first with QuickTime

  • Im trying to install 10.5 but it won't

    im trying to install 10.5 but it says 'iTunes/resources' contains an invalid character and not it won't even let me unistall any solutions?

  • What are two metallic beats that just appeared after booting up?

    I'm using OS 10.6.7. Right after chimes on sign-on, I hear two percussive beats. What is that? Does it indicate a possible hard drive problem? I've had the iMac for several years with no problems. This just started recently. Thanks

  • No image through QuickTime

    Hi! I have a Mac OS X 10.4.11 with QuickTime 7 installed. I copied film clips from a Sony EX3 (HD) to an extern harddrive. When I now want to look at the clippings it only plays the sounds. I cannot see the images. QuickTime says the computer probabl