How can I import eex files into Applications EUL from the unix command line

How can I import *.eex and *.dis files into an Applications EUL from the unix command line?
Thanks

Hi
The simple answer is you either have to use the client tool DIS51ADM to import files using the command line (Discoverer Admin is a windows only client tool), or the Java command line which needs a browser.
In theory if you have a browser running on your Unix box you may be able to use the Java command line to make this work.
Best wishes
Michael

Similar Messages

  • How can I import a movie into iMovie 09 from a hard drive?  The movie will open and play in idvd but breaks into separate files that can't be downloaded when I try to import.  Can it be done?

    How can I import a movie into iMovie 09 from a hard drive?  The movie will open and play in idvd but breaks into separate files that can't be downloaded when I try to import.  Can it be done? I am trying to create a disc of player highlights for a collegiate coach, and I am using movie files downloaded to my hard drive from a DVD created on a PC. 

    No unfortunately it won't open in quicktime either.  It does the same thing that Imovie does, separates it into two file folders audio and video, and if i select video it opens to reveal 8 files that cannot be selected.  VIDEO_TS.BUP, VIDEO_TS.IFO, VIDEO_TS.VOB,VTS_01_0.BUP, VTS_01_0.IFO, VTS_01_1.VOB, VTS_01_2.VB, VTS_01_3.VOB.  All of which cannot be opened or selected.
    Opening it in Idvd and folllowing your suggestion works and I get a format code of NTSC.  Is that the same?  Thank you for your time and response.
    CaCanuck

  • I shot video on a Panasonic P2 and I'm trying to import the MXF files to Final Cut Pro but when I try to import, the only thing that imports is a blurry image of each clip. There's no audio and no video...how can I import MXF files into Final Cut Pro?

    I shot video on a Panasonic P2 and I'm trying to import the MXF files to Final Cut Pro but when I try to import, the only thing that imports is a blurry image of each clip. There's no audio and no video...how can I import MXF files into Final Cut Pro?

    at the end, you say "import preferences", which program are you describing?
    So im safer using footage that is remotely being pulled from iphoto...
    vs
    using footage that is imported into FCP from imovie?
    Is there anything i can do in fcp to make this footage more reliable or safer or more stable as i pull remotely from iphoto?
    All the footage, and all the libraries to all programs, or on a new pegasus 12tb raid 5 setup fyi.

  • How can I import vob files into imovie 09?

    how can I import vob files into imovie 09? i have some home movies on dvd that i want to edit.

    You might want to look at this one too.  Very easy to use and it doesn't require the Apple MPEG-2 playback component.
    http://www.dvdxdv.com/NewFolderLookSite/Products/DVDxDV.overview.htm

  • How can i import mpeg files into iMovie?

    how can i import mpeg files into iMovie?

    Where are your MPEG stored?
    I have hundreds of old MPEGs stored in my nexternal drive, but unfortunatly i was not able import them into iMovie. I did the following trick: I created a new set of a folder and subfolder and called it "Virtual_CAM/DCIM" and saved it on my desktop. Then went to Disk Utilities>File Menue>New>Disk Image from Folder. Then selected the folder on my desktop and clicked enter. I moved the .dmg file to my external (or just keep it on your desktop). I clicked on the .dmg file. It shoud be visible on the Finder. Open your Imovie and import as you do from your camera.

  • How can I import .mts files into Final Cut Studio from my Sony High Def Camcorder

    How can I import .mts files from my Sony High Def camcorder into Final Cut Studio?

    Also see: https://discussions.apple.com/community/professional_applications/search.jspa?pe opleEnabled=true&userID=&containerType=&container=&spotlight=true&q=.mts

  • How to Invoke tasks created in FrameMaker Publishing Server from the Windows command line

    Hi All ,
    i would like to know how can we Invoke tasks and schedules created in FrameMaker Publishing Server from the Windows command line.
    we used publishing server mainly to convert Frame maker files into PDF and that should be do progarmatically without manual intervention on Demand.
    so could you please let us know how can i invoke rthe task creted to convert FM file to PDF in FrameMaker Publishing Server from the Windows command line.
    please let me know the command to execute .
    thank you and waiting for valuable response.
    best regards
    Ramesh babu

    Please see http://blogs.adobe.com/techcomm/2011/03/adobe-framemaker-server-10-and-its-command-line-ca pability.html for the same.
    Harish Dhawan

  • How can I import .mov file into dvd studio pro?

    Hi,
    I have a .mov file and want to but a dvd with menu and chapters. But when I try to import the .mov file into dvd studio pro it says Incompatible format. How can I import my .mov file in to dvd studio pro?

    Two ways…
    Transcode into a codec like Pro Res, import into DVDSP and let it do the encoding.
    Or better yet:
    Import into Compressor, choose a DVD preset and let Compressor encode. It will make two files, separate video and audio files. Import those into DVDSP.
    Good luck.
    Russ

  • IPhoto:  How can I import pdf files into iPhoto?

    It seemed to work before but I can no longer import pdf files into iPhoto.  What heppened and how can fix it?  Many thanks in advance ... Abe

    Have you tried opening the PDF in Preview and printing using the PDF option selecting save PDF to iPhoto?
    LN

  • How can I import a file into my Windows Phone 8.1RT App?

    Hi All,
    I'm running into a bit of an issue associating my app with a custom file type.  Users create a file using my app and upload it to their OneDrive for sharing.  So I then want to give the users the ability to download the file from a share link and
    have that file open automatically in my app.  I've got the appropriate declarations set and file type associations, but I'm getting a file access exception when I try to open the file.  Whats the best way to import a file into my app?  Here's
    the code I've got so far:
    protected override async void OnFileActivated(FileActivatedEventArgs args)
    var path = args.Files[0].Path;
    var name = args.Files[0].Name;
    StorageFile newFile = await StorageFile.GetFileFromPathAsync(path);
    await newFile.CopyAsync(ApplicationData.Current.LocalFolder, name.Substring(0, name.Length - 4));
    The path comes back as
    C:\Data\Users\DefApps\APPDATA\Local\Packages\microsoft.microsoftskydrive_8weke\LocalState\OpenWithTempFolder\e68c261-db3b-472d-a8b7-93427450\File Name.extension
    and the exception is
    Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))
    Clearly I'm trying to access the file in an inappropriate way, so what's the best way to get the file into my app's local storage?

    You have the StorageFile in arg.Files[0] already. Just use that rather than getting its path and then trying to create a new StorageFile from it.
    var path = args.Files[0].Path; // <= Path is unnecessary and unhelpful
    var name = args.Files[0].Name;
    await args.Files[0].CopyAsync(ApplicationData.Current.LocalFolder, name.Substring(0, name.Length - 4));
    See my blog entry Skip the path: stick to the StorageFile for more details.

  • How can I import VLC files into quicktime?

    I'd like to be able to import some files into Quicktime from VLC. Thanks. David

    MPEG Streamclip and the MPEG-2 Playback Component should work to demultiplex and convert VOB files. The Help menu in MPEG Streamclip should have complete instructions. You could also look into DVDxDV or Cinematize.

  • How can I import svg files into photoshop?

    I am trying to import some svg files into photoshop shapes, how is that done?

    Although you CAN open SVG into Illustrator, save it as PSD or Illustrator, I think Photoshop should directly support opening SVG files in the same way it does PDF. You set the pixel size you want and then rasterize it.

  • How can I import .wma files into iTunes???

    I have a GPX MP3 player and most of my files are .wma format. When I tried to import or open these files in iTunes, nothing happened. I'm wondering how I can import the .wma files or convert them so I can listen/import them into my library. Thanks.

    You can do it on iTunes Windows or get a converter such as EasyWMA - www.easywma.com.
    MJ

  • How can i import .pmd files into Indesign CC, which where created with pagemaker?

    Hello!
    i have a problem with a new Installation of indesign cc... i can*t import old .pmd Pagemaker files into it!!
    it was possible with Indesign cs6, but apparently no longer..!?
    ..is there an extension or anything else i could use?
    thanks in advance for any Tip,       
    sincerely Sanitest

    ..well, the fact that i can install an older Version of id is an releave...!but! the fact that i cannot open .pmd file in id cc is .. in my humble opinion
    a bad sign of things to come.. i mean sooner or later adobe will completely cancel the ability to download/use id cs6 ... and then what?... buy an old version of pagemaker
    or id 1..cs6?
    if anyone close to adobe has anything substantially to say.. please go ahead..!
    best regards Sanitest

  • How can I import .avi file into iTunes?

    I have a bunch of videos, that I can not live with out. They are al in .AVI form. How can I get these into iTunes for watching? Do I need to use Quicktime Pro?

    You use MPEG Streamclip to convert them to MPEG-4 and import those. This may require Perian or not be possible.
    (61270)

Maybe you are looking for