Remote execution of unix shell from Windows ?

Hello,
I have a question related to distributed computing.
I want to invoke Bash Script in a remote unix machine from my Windows 2000 computer. I hope in DOS environment of my Windows computer, I can run like this:
C:\StartUnix.bat
Then the DOS batch file will automatically connect to a remote computer running Unix and invoke one bash script, for example, "test.sh" to do the job in the unix environment. In the test.sh file, for example, I just want to show "Hello World!". (echo "Hello World !").
In Windows computer, if I use telnet to the unix machine, I have to enter username,password, and run the shell script manually. Is there a way to do it automatically?
How can I do that? RMI ? IDL? or something else? Can someone explain in details?
Thank you very much!
David

You could try to use OutputStream object for the process object and write to it after opening the telnet session. This way your output will be to the telnet window and you could pass your telnet login info to it.
I have seen code that does similar thing. Check in the forum with runtime.exec()

Similar Messages

  • CONNECT UNIX MACHINE FROM WINDOWS USING C#

    Hi all i have a requirement to connect unix machine from windows using c# code . I have the IP Address of the unix machine and the path too.I have to make a FTP using the c# code from unix to windows and vice versa . Can anybody help me out on this . It
    would be great if have a solution for this .

    Hi
    Balamurali_Mohan,
    Please refer to the similar thread
    How to connect to unix server using c#
    The marked answer said: Use a SSH (secure shell) client wrapper for .NET to connect to the remote UNIX machine and execute commands to run your script.
    Have a look at:
    http://www.codeproject.com/KB/IP/sharpssh.aspx
    Best regards,
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to access a file in Unix server from windows using java

    I want to access a file in unix server from windows using java program.
    I have the following code. I am able to open the url in a web browser.
    String urlStr="ftp:user:passwd@unix-server:ftp-port//javatest/test.csv;type=i";
    URL url = new URL(urlStr);
    BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream)));
    String inputLine;
    while((inputLine=in.readLine()))!=null){
    System.out.println(inputLine);
    in.close();
    I get the following error
    java.io.FileNotFoundException: /javatest/test.csv
    at sun.net.www.protocol.ftp.FtpURLConnection.getInputStream(FtpURLConnection.java:333)
    at java.net.URL.openStream(URL.java:960)
    at com.test.samples.Test.main(Test.java:45)

    urlStr="ftp:user:passwd@unix-server:ftp-port//javatest/test.csv;type=i";
    I have given the format of the urlStr that I am using in the code. The actiual values are used in my code. I have tried pasting this url in the browser and it opens the file.

  • Executing Unix shell from Java Program

    Hi,
    I have written a java application using Maverick J2sshtools API which connects to a Unix box using SSH.The program authenticates with the remote box successfully,but It dosen't return the environment info or execute the test script.Have attached the complete code.
    package shellInteraction;
    import com.maverick.ssh.*;
    import com.maverick.ssh2.Ssh2Client;
    import com.maverick.ssh2.Ssh2Context;
    import com.maverick.ssh2.Ssh2PasswordAuthentication;
    import com.sshtools.net.*;
    import java.io.*;
    import java.util.Iterator;
    import java.util.Vector;
    public class JavaShell{
         public static void main(String[] args) {
              SshConnector con = null;
              SshClient ssh = null;
              ShellProcess process = null;
              Shell shell = null;     
              try{
                   // Create a session to remote host
                   con = SshConnector.getInstance();
                   ssh = connectionSetup(con);
                   System.out.println(ssh);
                   // Start a session and do basic IO
                   if (ssh.isAuthenticated()) {
                        shell = new Shell(ssh);
                        System.out.println("Authenticated");
                        if(shell.getEnvironment().hasEnvironmentVariable("hostname"))
                             System.out.println("We are connected to " + shell.getEnvironment().getEnvironmentVariable("hostname"));
                        //System.out.println("Remote operating system is " + shell.getEnvironment().getOperatingSystem());
                   //     boolean isWindows = shell.getEnvironment().getOSType()==ShellEnvironment.OS_WINDOWS;
                        //if(shell.getEnvironment().hasEnvironmentVariable("USERPROFILE")) {
                             //System.out.println("User home is " + shell.getEnvironment().getEnvironmentVariable("USERPROFILE"));
                        //} else if(shell.getEnvironment().hasEnvironmentVariable("HOME")) {
                             //System.out.println("User home is " + shell.getEnvironment().getEnvironmentVariable("HOME"));
                        // Commands only executed for Unix OS
                        //if(!isWindows) {
                             // Execute a script
                             traverseDirectory(shell);
                   shell.exit();
                   ssh.disconnect();
                   System.out.println("Shell has exited");
              } catch(Throwable t) {
                   t.printStackTrace();
         private static void traverseDirectory(Shell shell) throws Exception{
              System.out.println("\n\nTraverse Directory");
              // Execute a simple script than prints a directory tree
              ShellProcess process = shell.execute("bash test.sh ");
              try{
                   process.expect("Total directories", 1000, true);
                   System.out.print(process.toString());
              } catch (ShellTimeoutException ex1) {
                   System.out.println("TRAVERSE Expect operation timed out. Sending interrupt to kill the process");
                   process.interrupt();
              }finally {
                   process.close();
         static private Ssh2Client connectionSetup(SshConnector con)throws SshException{
              Ssh2Client ssh = null;
              final BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
              try {
                   System.out.print("Hostname: ");
                   String hostname = reader.readLine();
                   int idx = hostname.indexOf(':');
                   int port = 22;
                   if(idx > -1) {
                        port = Integer.parseInt(hostname.substring(idx+1));
                        hostname = hostname.substring(0, idx);
                   System.out.print("Username [Enter for " + System.getProperty("user.name") + "]: ");
                   String username = reader.readLine();
                   if(username==null || username.trim().equals(""))
                        username = System.getProperty("user.name");
                   System.out.println("Connecting to " + hostname);
                   * Create an SshConnector instance
                   con = SshConnector.getInstance();
                   // Lets do some host key verification
                   HostKeyVerification hkv = new PasswordHostKey();
                   con.setSupportedVersions(SshConnector.SSH2);
                   * Set our preferred public key type
                   con.getContext(SshConnector.SSH2).setHostKeyVerification(hkv);
                   ((Ssh2Context)con.getContext(SshConnector.SSH2)).setPreferredPublicKey(Ssh2Context.PUBLIC_KEY_SSHDSS);
                   * Connect to the host
                   ssh = (Ssh2Client)con.connect(new SocketTransport(hostname, port), username, true);
                   * Authenticate the user using password authentication
                   Ssh2PasswordAuthentication passwordAuthentication = new Ssh2PasswordAuthentication();
                   System.out.print("Password: ");
                   passwordAuthentication.setPassword(reader.readLine());
                   if(ssh.authenticate(passwordAuthentication)!=SshAuthentication.COMPLETE) {
                        System.out.println("Authentication failed!");
                        System.exit(0);
              }catch(Exception ex1) {
                   throw new SshException(ex1.getMessage(), ex1.getCause());
              return ssh;
    When I execute the program
    Hostname:****
    Username [Enter for thaya]: **
    Connecting to CATL
    The connected host's key (ssh-dss) is
    b6:85:91:6b:8b:ea:cb:40:b5:6f:01:2e:66:78:7f:62
    Password: *****
    SSH2 CATLMSXP62:22 [kex=diffie-hellman-group1-sha1 hostkey=ssh-dss client->server=aes128-cbc,hmac-sha1,none server->client=aes128-cbc,hmac-sha1,none]
    Authenticated
    Traverse Directory
    com.maverick.ssh.ShellTimeoutException: The shell did not return to the prompt in the given timeout period 10000ms
         at com.maverick.ssh.Shell.A(Unknown Source)
         at com.maverick.ssh.Shell.execute(Unknown Source)
         at shellInteraction.ShellInteraction.traverseDirectory(ShellInteraction.java:108)
         at shellInteraction.ShellInteraction.main(ShellInteraction.java:68)
    This is the error message what i get.

    use code tags if you want a response,
    ive done the same thing once using
    ssh2.ethz.ch ie:
    import ch.ethz.ssh2.Connection;
    import ch.ethz.ssh2.ServerHostKeyVerifier;
    import ch.ethz.ssh2.Session;
    the code looked something like this:
    try
                   conn.connect(new ServerHostKeyVerifier() {
                        public boolean verifyServerHostKey(String hostname, int port, String serverHostKeyAlgorithm, byte[] serverHostKey) throws Exception {
                             return true;
                  conn.authenticateWithPassword(username, password);
                  try {
                       sess = conn.openSession();
                   } catch (java.lang.IllegalStateException e) {
                        return;
    //                    JOptionPane.showMessageDialog(null, "Could not autheticate.\nCheck username and password.\nTerminating.", "Authentication Failed", JOptionPane.ERROR_MESSAGE);
    //                    System.exit(-1);
                   sess.requestPTY("dumb", 50, 50, 0, 0, null);
                   sess.startShell();
              }and after that sess has getStdIn() and getStdOut() that get the streams from which you read and write.

  • Unix Shell Script-Windows Client

    Forget it.If you have to write shell scripts for a Unix server, learn writing shell scripts on Unix. There are many good books and tutorials (and even more bad ones) available.Don't try to write shell scrips on Windows. There's only one tool which I know of which will enable you to use shell scripts on Windows, that's CygWin.Also why do you want to check Unix files from a Windows client??? Could you please explain in a little more detail what exactly the whole process will be? I suspect I may have misunderstood your question. Regards,Nico

    Hi All, My Informatica server installed on Unix and my client is installed on Windows.Before processing the file i want to check the file data accoring to the requirement like header,footer,no of records using shell script and need to mail the person if the file has any issues.What is the basic systax to write the shell scripts on windows client to access the file on unix server.If possible give the required shell scripts also for this requirement .I am new to Shell scripting in informatica. Thanks in adavance. Regards,Vijaya

  • Office 2013 windows 'pop-under' when run as remote apps on Server 2008R2 from Windows 7 clients

    We have an environment with Windows 7 clients running Office 2013 via RDS on Windows Server 2008R2.
    When users double click emails from Outlook, they 'pop-under', forcing the user to relocate the window which has fallen behind the application's primary window, leaving behind a slight redraw of what is supposed to be the pop-up window. Users also experience
    difficulty opening application menu/help items and any other dialogue boxes in any/all of the other Office 2013 apps we've deployed via RDS.
    This issue persists only on Win7 PCs (WinXP does not exhibit this behaviour). The RDP clients range from 6.2.92 to 6.1.7601
    We have applied the hot-fixes applicable to all of the following KB articles:
    - KB983533 (failed / update not applicable)
    - KB2384602 (failed / update not applicable)
    - KB2614136 (failed / update not applicable)
    - KB2580346 (Installed successfully, but issue unresolved)
    - KB2522762 (Installed successfully, but issue unresolved)
    - KB2538047 (Installed successfully, but issue unresolved)
    - KB2604066 (Installed successfully, but issue unresolved)
    - KB2705427 (Installed successfully, but issue unresolved)
    - KB2682814 (Installed successfully, but issue unresolved)

    Hi,
    Please give the new Remote Desktop Client 8.1 for Windows 7 a try when it is re-released (it was removed temporarily due to an issue with smart cards).  It has fixes related to z-order issues, which
    may correct the problem you are seeing.
    Update for RemoteApp and Desktop Connections features is available for Windows
    http://support.microsoft.com/KB/2830477
    Thanks.
    -TP

  • Remote control a Mac server from Windows machines

    I'm running a Mavericks Server that I'd like to get off my desk and put in the data center. However, my primary laptop is a Windows 8.1 laptop that I use to support other things. I'd still like the ability to remote into the Mac Server from my Windows laptop. I know that I can VNC into the server, but it's my understanding that if I have Remote Management turned on, I can't have Screen Sharing (and thus, VNC) turned on. So it seems like my options are to run  another VNC server on a different port or use LogMeIn Ignition. But I'm not sure what other people are using so I'd like your help. Thoughts? Suggestions?
    TIA    

    As you have found via the answer provided by Morgan R, it is possible to configure Remote Management to allow standard VNC clients to connect just like it is possible with Screen Sharing.
    Note: Remote Management does everything Screen Sharing does plug other things. So anything you can do via Screen Sharing you can do via Remote Management.
    However there is a client available for Windows that does support the extended login information used by Remote Management/Screen Sharing, this is 'Remotix' by Nulana.
    See http://www.nulana.com/remotix-windows/
    I have tried it and it does work. I did however find one serious bug which I have reported to them but I don't know if they have fixed it yet.
    Over the years I have found many in fact nearly all software that involves linking Mac and Windows where one controls the other in either direction has suffered an inexcusable bug whereby if you are not using US keyboards at both ends then several keys will not be mapped properly and you can even end up with some keys not usable at all. The most infamous combination is the @ and " keys being swapped.
    All these programs appear to have been written by Americans who are members of the 'flat earth' society and obviously believe that if you leave the shores of the USA you will fall of the edge of the world. I presume they also are avid fans of the Discworld series of books.
    Offenders include Virtual PC, Microsoft Remote Desktop Client 1.0 (for Mac), Timbkutu Pro, Remotix and I am sure many others.
    Note: Microsoft did at least fix theirs several years later with Remote Desktop Client 2.0 (for Mac).
    The one noteable exception is VNC. VNC was originally developed at AT&T Laboratories in Cambridge, England. (Not New England.)
    See http://www.cl.cam.ac.uk/research/dtg/attarchive/vnc/ I am sure if it had been developed in Cambridge, Massachusetts it would have suffered the same problem. Since Screen Sharing on Macs is based on VNC it has never suffered this problem even when controlling a PC via VNC. I am therefore even more shocked that Nulana managed to make this mistake.
    To our dear American friends in the colonies, you might want to read http://uk.ask.com/question/who-discovered-that-the-earth-was-round

  • How to run UNIX command to a remote SUN machine through Java from Windows

    Dear All:
    I want to write one Java program which will be run on my Windows Machine.
    My Java program will will login in a SUN machine remotely say telnet and run some command.
    I want all those command output in my client windows PC for futher processing.
    Can anyone help me doing this?
    BR,
    P. Gupta

    import java.net.*;
    import java.io.*;
    import java.util.*;
    public class TelnetSocketDemo {
    static String list="";
    static String listArr[], hostArr[];
    static String host="", lhost="";
    public static void main(String[] args)throws IOException
    ExecuteUnixCmd obj=new ExecuteUnixCmd();
    // InetAddress localMachine = InetAddress.getLocalHost();
    // host=localMachine.getHostName();
    list=obj.ExecuteUnixCmdMain();
    int port=getPort(list,"Live");
    System.out.println(port);
    Socket sock = null;
    String prompt=">";
    String output = null;
    try
    // Connect to the PoleStar process.
    sock = new Socket("localhost",port);
    sock.setSoTimeout(60000);
    // Get the I/O streams for the socket.
    PrintWriter out = new PrintWriter(sock.getOutputStream(), true);
    InputStream in = sock.getInputStream();
    // Get to the silent console port.
    // out.println("S");
    // readToPrompt(in,area);
    // Fetch the response to the command.
    out.println("list all");
    output = readToPrompt(in,prompt);
    //System.out.println(output);
    //out.println("quit");
    //output=readToPrompt(in);
    catch (Exception ex)
    String msg = "unable to get Connection for PoleStar";
    finally
    try
    // close socket
    sock.close();
    catch (Exception ex)
    System.out.println(output);
    private static String readToPrompt(InputStream in,String prompt)throws IOExcepti
    on
    byte[] mByte = null;
    int iStrt = 0, iLen = 2000, nBytes = 0;
    StringBuffer buf = new StringBuffer();
    String s = null;
    boolean bNotFinished = true;
    do
    mByte = new byte[2000];
    nBytes = in.read(mByte, iStrt, iLen);
    if (nBytes == -1)
    break;
    // lost our TCP/IP connection
    // bNotFinished = false;
    // Convert byte stream to a string
    s = new String(mByte, 0, iStrt + nBytes);
    if (prompt.equals("") == false)
    if (prompt.equals(">"))
    if (s.indexOf(0x04) != -1)
    bNotFinished = false;
    // the hub sends the prompt at the beginning and the end
    else if (s.indexOf(prompt) != -1)
    bNotFinished = false;
    buf.append(s);
    } while (bNotFinished);
    return buf.toString();
    public static int getPort(String list, String area)
    int port;
    String listArr[],hostArr[];
    String lhost="";
    listArr=list.split(",");
    for(int i =0; i < listArr.length ; i++)
    lhost=listArr;
    hostArr=lhost.split("#");
    if((hostArr[1].equalsIgnoreCase("connectDev20"))&&(hostArr[0].indexOf(area)!=-
    1))
    port=Integer.parseInt(hostArr[2]);
    return port;
    else
    continue ;
    return 0;

  • Remote Desktop Connection Authentication Error from Windows 8.1 Pro to Windows 7 Pro

    I keep trying to connect to my server running Windows 7 Pro from my laptop running Windows 8.1 Pro, but I get the following message after providing
    my credentials:
    "An authentication error has occurred (Code: 0x8007001f)"
    I can't find any reference to this error code being associated with using remote desktop.

    Hello,
    Are you connecting to a server as part of a domain ? if so confirm you are using adequate credentials for remote desktop for example: username: domain\administrator 
    if not you can try connecting to the localhost using:
    username: .\administrator   - for example
    also you can try running your remote connection in admin mode:
    Win + R - bring up run then type:
    mstsc /admin
    hope that helps.
    Cheers,
    Harry

  • Remote execution of DTS packages from Java Stored Procedures

    I'm an Oracle 10G DBA and Linux/Unix Sysadmin looking for a Java guru to help me find a reusable template or locate a solid programming methodology (examples) that will enable me to connect via JDSI to SQL Server 2000/2005 and remotely execute DTS packages from within Oracle. I am working at office that's absolutely addicted to MicroSlop products and the DBA team cannot conceive of giving up their precious DTS packages. I've already converted their MS SQL Server 2000 database to Oracle 10G on RHEL4 via SQLDeveloper but I am unschooled in the art of java programming and would like to locate some sort of rudimentary template or examples or java class that can easily be loaded into the Oracle 10G database instance via the loadjava utility. These java classes/methods/stored procedures need to be executable from within embedded PL/SQL code and able to connect to SQL Server 2000 to execute DTS packages via passing dtsrun commands ... Any help or direction would be greatly appreciated.

    Hi Ilford:
    Sure you can use fully package notation in your Java classes.
    Look at this Java source code:
    http://dbprism.cvs.sourceforge.net/dbprism/cms-2.1/src/com/prism/cms/core/
    All of them are Java Stored procedures.
    Best regards, Marcelo.

  • Remote Access to TC Disk from Windows/PC. Do I need DynDNS. Using FTP

    I need to be able to have anyone on the Internet be able to access my files on Time Capsule. I am using my Time Capsule as a router and do not have a static IP. My Internet Provider is comcast and modem is a Motorola Surfboard.
    Here are my basic questions:
    How can my Time Capsule be accessed remotely via PC/Windows? What protocol? How?
    Can Time Capsule be set up do FTP? What port mapping do I set up for the personal and private UDP and TCP?
    Since I do not have a static IP address, do I need to subscribe to a Custom DynDNS account?
    Thank You

    How can my Time Capsule be accessed remotely via PC/Windows? What protocol? How?
    Windows or Linux PCs can access the Time Capsule's (TC) file service via the SMB protocol.
    The following is the basic steps to configure the TC's hard drive to be accessed from the Internet.
    Configuring the TC
    AirPort Utility > Select the TC
    o Note the value of the IP Address. This is the Public or WAN-side IP address of the TC. (Note: You will need to have either a static Public IP address, or use a free dynamic DNS service, like you suggested, in order to access the TC from the Internet.)
    Manual Setup > Internet > Internet Connection
    o Connection Sharing = Share a public IP address
    Manual Setup > Disks > Files Sharing tab
    o Enable file sharing (checked)
    o Secure Shared Disks = With base station password
    o AirPort Disks Guest Access = Not allowed
    o Share disks over Ethernet WAN port (checked)
    Manual Setup > AirPort > Base Station
    o Enter a Base Station Password and verify it in the Verify Password box.
    Manual Setup > Advanced > Port Mapping
    o Click the plus sign "+" to add a new port mapping.
    o In the Public UDP Port(s) and Public TCP Port(s) boxes, type in a 4-digit port number (e.g., 5688) that you choose.
    o In the Private IP Address box, type the internal IP address of your TC that you noted earlier.
    o In the Private UDP Port(s) and Private TCP Port(s) boxes, type 548, and then, click Continue.
    o In the Description box, type a descriptive name like "Time Capsule File Sharing," and then, click Done.
    o When you have made all the changes, click Update.
    Connect the PC to the TC from a remote location
    o Type in your DynDNS domain name, plus a colon and the port number you specified when configuring the TC earlier. For example,"www.myTC.com:5688"
    o You will be prompted for your user name and password. The user name can be anything you like; the password would be the TC's Base Station password you defined earlier.

  • Run Unix command from windows

    I would like to run a unix command and capture the output by running a java program on a windows 98 machine, this will be ran on a secure intranet. What is the best way to do that. If anyone knows of an example source code that would be great.
    thanks,
    Dean

    Try this. It always works for me.
    import java.io.*;
    public class Exec {
        private BufferedReader out;
        private Process p;
        public Exec(String cmd) throws IOException {
            p = Runtime.getRuntime().exec(cmd);
            out = new BufferedReader(new InputStreamReader(p.getInputStream()));
        public BufferedReader getBufferedReader() {
            return out;
        public void waitFor() throws InterruptedException {
            p.waitFor();
        public static void main(String [] args) throws IOException,
                InterruptedException {
            final Exec p = new Exec("your command goes here.");
            new Thread(new Runnable() {
                public void run() {
                    try {
                        String s = null;
                        while((s = p.getBufferedReader().readLine()) != null) {
                            System.out.println(s);
                    catch(IOException io){}
            }).start();
            p.waitFor();
    }

  • Calling UNIX Shell from WLST

    Hello,
    I am using wlst 10g R3 on solaris 10 and need to make a series of calls to various shell scripts. when I use the os.system call the control is not returned to the wlst script :-( Any way to be able to call a script and let it run in the background then continue with the wlst script?
    Cheers,

    os.system is part of jython. You may want to ask in the jython-users email list from http://sourceforge.net/mail/?group_id=12867

  • Controlling a procedure execution from a UNIX shell script

    I want to control the execution of a PL/SQL procedure from a UNIX shell script.
    Below, I include the script.
    The control variable which should recive the return of the procedure, dosen't work well.
    I want to control the return, because I wanr to make a UNIX script to control the execution of
    a load data process with some Oracle procedures.
    #!/bin/ksh
    echo "Executing procedure pl/sql"
    SQLPLUS="sqlplus -s /"
    ESQUEMA="esquema1"
    echo "\
    call ${ESQUEMA}.Z_PROC_PRUEBA();" | $SQLPLUS
    echo "Controlling pl/sql execution"
    var_err=$?
    if [ $var_err -gt 0 ]
    then
    echo "Error executing pl/sql"
    else
    echo "pl/sql finished sucessfully"
    fi

    This is not oracle problem. You can try something like this in your shell program ->
    DEV=Udev01/1ods@ODS1
    DEV_ID=`sqlplus -s ${DEV} <<!
             set heading off feedback off verify off
             set serveroutput on
             @/prod/ods/satyaki/prac/ctl_build.sql '$1' '$3';  -- If you sql needs to pass argument
             exit
             !`
    O_DIV_ID=`echo $DIV_ID | tr -s " " | sed 's/^[ ]//g'`
    if [[ $O_DIV_ID -ne 0 ]]; then
          echo "Successfully EXecuted.."
    else
      echo "Failed..."
    fiHope this will help.
    Regards.
    Satyaki De.

  • Scheduling unix shell scripts from windows using DOS batch files

    Hi,
    I want to schedule unix shell scrips using windows scheduled. I have the option of scheduling the DOS batch files. But not able to connect to telnet using DOS. Please let me know if there is an option.
    Regards,
    -Anand

    Drive letters are user specific. When you run jboss it runs as you, with your shared drives. When you run it as a service, it runs as guest or another user so your drive letters are meaningless.
    Either setup the user or use UNC

Maybe you are looking for

  • How to find out date of an oracle version migration?

    Hey guys! somebody knows if and where I can find out at what date an Oracle database was patched (i.e. migrated from let's take Oracle 8i to 9i as example). In SYS.REGISTRY$HISTORY, I only find data from the latest CPU, nothing concerning the databas

  • Adding a video to a page

    One of our team has created a PDF from MS PowerPoint. In Acrobat Pro 9 they subsequently added a page to the PDF and added an MP4 file to it via the Multimedia > Video Tools option. Everything works well except that the video is rendered at a larger

  • Mass addition accunting entires from PO to FA

    Hi any one please help me to know what are all acunting entires created in mass addition process - from PO to FA 1) I created asset item in the asset orgainsation 2) for example the item is 'Computer laptop' - in purchasing tab - account code is - as

  • Elements 12 will not allow me to enter serial number on installation

    elements 12 will not allow me to enter serial number on installation

  • Delta load error in quantity of sales overview cube 0sd_c03

    Hi All, The quantity(0quant_b) is fetching properly for full upload.But when delta load is done 0quant_b is not fetching correctly. For example, quantity was changed from 100 to 120 for an order. When delta is run, only 100 is uploaded instead of 120