How can I deploy Digital Edition 2.0 through SCCM?

Hello all,
I would like to know how I can deploy Digital Edition through my company's SCCM solution. When I create my usual setup for new software to be deployed, I get the Digital Edition package sent out correctly to my test machines, but nothing gets installed. It just stands forever and tries to install, then when I reset the machines, it gives me an error that I reset doing installation. But I know it wasn't even really trying to install the software.
Is there an msi file somewhere I can download and distribute to my users?
Kind regards,
Kasper

Moving this discussion to the Adobe Digital Editions forum.
Kwy28 the Adobe Digital Editions software was not designed to be deployed.  You will either want to ask the users who need to use the software to install it individually or install it on one system and then use a utility like Norton Ghost to make an image of that computer.

Similar Messages

  • How do I authorize digital editions on my laptop? I have authorized it on my desktop PC without a hassle but now I can't transfer downloaded books from my laptop to my ereader.

    How do I authorize digital editions on my laptop? I have authorized it on my desktop PC without a hassle but now I can't transfer downloaded books from my laptop to my ereader.

    Ererer1936 I would recommend posting your inquiry in the Adobe Digital Editions forum.

  • How to install adobe digital editions on android device (zt pad)

    how to install adobe digital editions on android device (zt pad)

    I don't think ADE will itself run on Android.
    You need to install an app such as Bluefire (free) which supports DRM epub books.
    Make sure you authorise it with the same AdobeID you use on the PC or to buy books.
    You can get books on the PC with ADE, download them, 'sideload' the .epub files to the tablet using a file manager such as Windows Explorer, and read them on Bluefire.
    For library books, the Overdrive app (free) should allow you to borrow, doanload and read books with no need for a PC or ADE.

  • How can I allow the application to line through a field that has been locked after being digitally signed?  We have multiple sections on a form with some fields being proposed information and other in another section having the approved information. once

    How can I allow the application to line through a field that has been locked after being digitally signed?
    We have multiple sections on a form with some fields being proposed information and other in another section having the approved information. once the approved information is entered we line through the proposed field so the data entry clerk won't pick up the wrong information.  However we are receiving an error when attempting to enter data  in the field which we have this edit.  Error property: line through cannot be set because doing so would violate the document permission setting.  any idea how we can get around this issue?

    You can control which fields are locked down after signing by setting up a collection. Then those that are not locked can be changed after signing. If this is not possible, then the line outs must occur prior to signing.

  • How can I deploy a simple stateless ssion EJB and call it from a standalone client

    Hi,
    I'm creating s simple staless session EJB that has a method that takes a name and prints "Hello" + name. This EJB is in a package called "com.demos.mydemo.ejbs.hello"
    How can I deploy this to OC4J?
    How can I call it from a standalone client(no JSP, no servlets)?
    In Sun's J2EE is very easy to deploy and I don't have to know any XML stuff.
    can I use the .ear file created by the Sun's "deploytool" to deploy my EJB to OC4J?
    This is the code at I'm using and it works on Sun's j2sdkee1.2.1:
    ///////// Remote /////////
    package com.demos.mydemo.ejbs.hello;
    import java.rmi.RemoteException;
    import javax.ejb.EJBObject;
    public interface Hello extends EJBObject {
    public String sayHello(String name) throws RemoteException;
    ///////// Home //////////
    package com.demos.mydemo.ejbs.hello;
    import java.rmi.RemoteException;
    import javax.ejb.EJBHome;
    import javax.ejb.CreateException;
    public interface HelloHome extends EJBHome {
    public Hello create() throws CreateException, RemoteException;
    /////////// Bean class ///////////
    package com.demos.mydemo.ejbs.hello;
    import java.rmi.RemoteException;
    import javax.ejb.SessionBean;
    import javax.ejb.SessionContext;
    import javax.ejb.CreateException;
    import javax.ejb.EJBException;
    import java.sql.Connection;
    import java.sql.SQLException;
    //import java.sql.PreparedStatement;
    import javax.sql.DataSource;
    import javax.naming.NamingException;
    import javax.naming.InitialContext;
    public class HelloEJB implements SessionBean {
    private SessionContext context;
    private Connection con;
    private String dbName =
    "java:comp/env/jdbc/Oracle";
    public HelloEJB() {}
    public void setSessionContext (SessionContext context) {
    this.context = context;
    public void ejbCreate() throws CreateException {
    try {
    makeConnection();
    catch (Exception e) {
    System.err.println("HelloEJB: exception in ejbCreate:" + e.getMessage());
    e.printStackTrace();
    throw new CreateException(e.getMessage());
    public void ejbActivate() {
    public void ejbPassivate() {
    public void ejbRemove() {
    try {
    con.close();
    catch (SQLException ex) {
    throw new EJBException("HelloEJB: exception in ejbRemove: " + ex.getMessage());
    public String sayHello(String name) {
    return "Hello " + name;;
    private void makeConnection() throws NamingException, SQLException {
    try {
    InitialContext ic = new InitialContext();
    DataSource ds = (DataSource) ic.lookup(dbName);
    con = ds.getConnection();
    catch (Exception e) {
    System.err.println("HelloEJB: exception in makeConnection:" + e.getMessage() );
    e.printStackTrace();
    //////////// EJB client that uses a stateless session bean
    package com.demos.mydemo.ejbs.hello;
    import java.io.*;
    import java.sql.*;
    import javax.sql.*;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import javax.rmi.PortableRemoteObject;
    public class HelloClient {
    public static void main(String[] args) {
    try {
    Context initial = new InitialContext();
    Object objref = initial.lookup("HelloSession");
    HelloHome home = (HelloHome)PortableRemoteObject.narrow(objref,HelloHome.class);
    Hello h = home.create();
    String msg = h.sayHello("John Doe");
    System.out.println(msg);
    //h.remove();
    } catch (Exception ex) {
    System.err.println("Caught an exception." );
    ex.printStackTrace();
    Thanks
    Nabil
    null

    <BLOCKQUOTE><font size="1" face="Verdana, Arial, Helvetica">quote:</font><HR>Originally posted by Nabil Khalil ([email protected]):
    I deployed and .ear file created by Sun's J2EE deployment tool on the OC4J. It looks that it was deployed fine -- did not get a deployment error.
    When I run the client I'm getting the following error: Caught an exception.
    javax.naming.CommunicationException: Can't find SerialContextProvider
    at com.sun.enterprise.naming.SerialContext.getProvider(SerialContext.java:60)
    at com.sun.enterprise.naming.SerialContext.<init>(SerialContext.java:79)
    at com.sun.enterprise.naming.SerialInitContextFactory.getInitialContext(SerialInitContextFactory.java:54)
    at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:668)
    at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:246)
    at javax.naming.InitialContext.init(InitialContext.java:222)
    at javax.naming.InitialContext.<init>(InitialContext.java:178)
    at com.equifax.fms.ejbs.hello.HelloClient.main(HelloClient.java:18)
    This makes me think that the client can't see the deployed EJB on the OC4J.
    How can I fix this problem?
    Thanks
    Nabil
    <HR></BLOCKQUOTE>
    Nabil -
    Your standalone client needs to obtain certain server-dependent properties. You can provide them in your code or grab them via a properties file.
    For Orion - you need essentially the following setup, filling in your own information...
    Define your standalone client class with "main" etc (this is orion specific - should work for 9i AS as well - perhaps there are some differences)
    public class SomeClass {
    try {
    Properties p = new Properties();
    p.setProperty("java.naming.factory.initial",
    "com.evermind.server.ApplicationClientInitialContextFactory");
    p.setProperty("java.naming.security.principal","server_admin_name");
    p.setProperty("java.naming.security.credentials","server_password");
    // THEN you can get your intitial context reference
    InitialContext initial = new InitialContext (p);...........
    Then go about your business.....
    A good book to get is called "Professional Java Server Programming J2EE Edition" - there happens to be a reasonable amount of Orion/OCJ4 centric information since one of the authors is Karl Avedal - one of the principals behind Orion. Go out to java.sun.com and look at some of the J2EE tutorials - unfortunately a lot of it is hidden behind the J2EE Deployer, but you will get a good sense of what goes into outside-the-container standalone clients.
    null

  • How can I get the edited pictures from the thumbnails to full size?

    I upgraded to iPhoto 11, the thumbnail photos show my previous edits, but when I click on the photo to make it bigger, it reverts back to the unedited, original picture.  How can I get the edited pictures from the thumbnails to full size?

    Verify you are using iPhoto11 ver 9.5
    if not run the >Software update or check your apps folder and make sure the correct iPhoto is launched,  not an older ver.

  • How can I get the edited value from the editor in JTable

    I have a JTextField added as an editor to a cell in JTable.
    I value gets changed when I press enter.
    but in actionPerformed of the JTextField when I say
    String txtEditorValue = txtEditor.getText();
    I am getting the old value. How can I get the edited value? Thanks.

    Hi,
    I guess, your understanding of how JTable works together with its models is not good enough - for example the method getTableCellEditorComponent(...) of the TableCellEditor interface is used to get the component, that should be used as editing component - its second parameter is a value that should be used to setup the editing component - it is normally not the editing component itself.
    JTable uses an underlying TableModel to store the cell values - if you have edited a cell, JTable gets the value of the editing component by itself and stores it in the TableModel using its setValueAt(...) method. To retrieve this data you only need to query the TableModel using row and column of this cell as parameters
    say jt is your JTable, and row and column are the row and column of the cell - so to get the value, simply use
    Object obj = jt.getModel().getValueAt(row,column);
    if you know, that there is a String in this cell use
    String str = (String) jt.getModel().getValueAt(row,column);
    The editor component is used for the view of the JTable - you only want the data, which is stored in the model - you don't have to deal with the GUI components in this case.
    greetings Marsian

  • How can i deploy adf-richclient-demo.war to tomcat?

    how can i deploy adf-richclient-demo.war to tomcat or
    how can i use adf faces 11G in tomcat or
    how long will the next version out?
    thank you!

    Hi,
    the demo is a WAR file. So if you have a tomcat version that supports JSF 1.2 then you should be able to deploy it like any other JEE WAR file
    Frank

  • How can I keep the edited video which in project into Libray for re-edit ?

    How can I keep the edited video which in project into Libray for re-edit later ??
    As i used i movie 06 before....
    after i imported the videos in to the library, then i can drag the videos to the timeline(now is project)
    then edit it.
    After that i can just drag all the timeline clips which is edited to the library.So I can keep it for next time if i wanna re-edit.
    But Now if did all the editing at the library clips then drag to project, i can not drag the project clips back to library, so how can i keep it for my editing safty?
    I do not wanna to edit again the same clips from the library!!! as i need to edit many different short clips together then export to individual videos, and i may need to re-edit.
    or i can keep the edited video in project, then i can selected the clips which i willing to export, the rest video who in the project will not be export at the same video? I m wondering....
    please help!!! Urgent!!

    Just keep the project. Then you can just duplicate the project and make the next set of changes as needed. By duplicating the project, you are not duplicating the event, just the links to the event library.
    This way you are not eating up disk space.
    Does that help?

  • Vertical Color Lines on my imported file how can i remove and edit

    Vertical Color Lines on my imported file how can i remove and edit

    If you haven't used After Effects before, you should understand that posession of a template is NO guarantee of success without prior AE knowledge.  It appears you haven't used AE before.
    The color bars indicate a missing file, and your screen shot reveals no text layers. Looking at the precomp names, opening the one called, "edit text" might be useful.
    I will guess that the following would be even more useful:
    http://blogs.adobe.com/aftereffects/2010/01/getting-started-with-after-eff.html
    Without knowledge of the AE basics, templates are pretty much useless.

  • How can I download and edit a homemade dvd on my Mac, will iMovie do the job?

    How can I download and edit a homemade dvd on my Mac, will iMovie do the job?
    Sincerely,
    Harry Freedman

    First, iOS 5.0.1 does not run on a MacBook Pro.  You should correct that on your profile.
    Please check out the iMovie forum, where you will get a quick answer to your question.  This forum is for the MacBook Pro hardware.

  • How can i open and edit microsoft documents in macbook pro

    how can i open and edit microsoft documents in macbook pro with retina display? I am a new user to mac book

    You could install Office for Mac. You could install a free Office-like program such as LibreOffice. You could open the documents with a program like Pages. Or you could install Windows and Office on your Macbook Pro.

  • HT5824 how can i add and edit my contatcs from my iphone

    Hello please help me ..
    how can i add and edit my contatcs from my iphone

    Hello there ttikkiscy,
    It sounds like you would like to know how to add to and edit your iCloud Contacts. First make sure you are using the iCloud Contacts function with this article:
    iCloud: Change iCloud feature settings
    http://support.apple.com/kb/PH2613
    On your iOS device’s Home screen, go to Settings > iCloud, then tap to turn on or off iCloud features.
    Once that is turned on and you can see your contacts in the Contacts app, use this part of the iPhone Basics guide here http://support.apple.com/kb/TI138
    Create and edit a contact.
    In Contacts, tap + to pull up a new contact card. Enter the person’s info and tap Done.
    To edit a contact, pull up the card and tap Edit. Make your changes and tap Done to save.
    To delete, scroll down, and tap Delete Contact.
    Thank you for using Apple Support Communities.
    All the best,
    Sterling

  • HT5373 How can I view and edit my iPhone calender from my home PC?

    How can I view and edit my iPhone calendar via my home PC?

    Hello Gary 204,
    Thank you for using Apple Support Communities!
    If the iPhone syncs its calendars to iCloud, you can log into www.icloud.com and edit the calendar there.
    You can check this in Settings>iCloud on your device:
    iCloud: Change iCloud feature settings
    http://support.apple.com/kb/PH2613
    Take care,
    Sterling

  • How can i deploy macbooks and 802.1x authentication using PEAP/MSChap version 2

    How can i deploy macbooks and 802.1x authentication for wireless connectivity using PEAP/MSChap version 2. The Cert is generated by a 2008 Windows CA authority. I am trying to get to join but the MAC doesnt seem to want to accecpt the cert. Can i not validate the cert and still have it join the 802.1x wireless netqwotk? The wireless netwotk is using a Cisco 5508 wireless controller and Cisco 1142 access points. All works fine with Windows devices.

    Hi Tarik,
    Thanks for your answers,
    I've attached my configured AuthZ rules and AuthZ profile for provisioning,
    I want the process to be the same for iPhone, Android and Windows.
    1) Connect to the SSID
    2) Login using your AD credentials PEAP-MS-CHAP-v2
    3) Redirect to device registration portal (So I can set a limit of 3 devices per employee)
    4) As soon as the client click "register" no more redirects and PERMIT-ALL
    I think that I don't need to rely on profiling because In terms of AuthZ policies it should be something like this:
    1) if WIRELESS802.1x and PEAP-MS-CHAPV2 and BYODREGISTRATION=!YES(Unknown or not reg) then "Redirect to device registration(that is NSP right?)"
    2) if WIRELESS802.1x and PEAP-MS-CHAPV2 then PERMIT-ALL(no redirection)
    3) everything else = DENY-ALL
    But the NSP looks for Client Provisioning policies, so if I don't configure any policy it should Allow Network Access(See attachment photo3.png) but as I said on the post it shows that cannot retrieve the MAC-Address so the client can't register his device and don't have access to the network. (To grant access I've configured provisioning policies, that way the clients can register their devices but they are redirected to google play or are forced to install the profile at iOS and this is what I don't want because it is not necessary)
    What screenshoot do you need after the registration? the Auth report?
    Thank you very much for your time!

Maybe you are looking for

  • Forums are all screwed up (again)

    Hi If a user selects to view 'no reply' posts, then many of them have been deleted - why then do they appear at all in the listing? It is completely stupid to list a number of posts appearing to be there only to constantly get a 'This item has been d

  • I can;t get firefox to use my usb web cam. It always uses the built in i sight cam

    fire fox uses the built in cam and does not recognize my USB webcam. Independent programs such as Skype, yahoo messenger and I chat have no problem with the USB cam.

  • How to determine file origin?

    I need to determine if an archive originated (created) on Windows or UNIX. This will give me a clue as to what the maximum path name length is for where the archive originated. Problem is when a UNIX archive gets decompressed on Windows and exceeds t

  • Print presenter notes under slides...multiple slides on page

    Somehow, I was able to print out 6 slides to a page with the presenter notes underneath each slide, at work. Now, at home, I cannot recreate that. Adding presenter notes to the "Handouts" option results in too many pages and checking the presenter no

  • I have created a distributable form however I have a typo how do I modify?

    I have created a form and I noticed that there is a typo in the text I can't modify as it gives me a protected error message. How can I modify the content before actually sending this out.