Need Help! Application Deployment wont work

hi, i need help, currently having windows 2008r2 with sccm 2012r2.
The deployment for application for some e.g. adobe reader, firefox is working.
but when we try to deploy a application it is not installing. we tried manually run it from ccmcache with the same command line in the sccm and it works. 
The application is pushed to the cache folder. But it just wont get installed. Any1 can help? Really urgent need to solve this.
Thanks
I tried the parameter with setup.exe /s /f1xxx.iss
tried with -s -fixxx.iss also same thing...
but when i manually run the command it work....

As Torsten mentioned, check AppEnforce.log from the %windir%\ccm\Logs -folder on the client that doesn't get the software installed.
What are you using as your detection method for the application that fails? Have you tried using
psexec -s cmd (included in the Sysinternals Suite, Google/Bing it) to open a command prompt with SYSTEM account and run the installation command from there? You should always test your application installation commands with SYSTEM account before implementing
them to ConfigMgr, this way you'll make sure that the command works.

Similar Messages

  • I need help, My ipod wont turn on, and the home button doesnt work, what do i do?

    My ipod just shut off and wont turn on, i need help, but my home button is broken. can anyone help

    Try:
    Turn on without Home/Power Button

  • Need Help for deploying 10.1.3 ear to 10.1.2 standalone AS

    Hi,
    we have oc4j 10.1.3 as a server in eclipse. We have built an EAR file which needs to be deployed on Oc4J 10.1.2 AS. Could any one help mein giving steps to be followed for doing this ??

    Hi,
    Take a look at section 2.5 (Deploying Applications) in Oracle® Application Server Containers for J2EE User's Guide 10g Release 2 (10.1.2) at http://download-uk.oracle.com/docs/cd/B14099_19/web.1012/b14011/config.htm#sthref85.
    Regards,
    Mathias

  • Need help to deploy server 2012 with DNS role installed.

    I want to deploy an image using wds on server 2012. I will be using an answer file for unattended installation with little touch as possible. My answer file works great but I can't get the auto-logon to work and the FirstLogonCommand to run. I added
    Components\7 oobeSystem\amd64_ Microsoft-Windows- Shell-Setup _neutral\FirstLogonCommands to my answer file using Windows Image Manager and added these values:
    CommandLine = powershell -command Install-WindowsFeature DNS –IncludeManagementTools -IncludeAllSubFeature -Restart
    Description =Install dns server
    Order = 1
    Then I did auto logon located at Components\7 oobeSystem\amd64_ Microsoft-Windows- Shell-Setup _neutral\Autologon and added these values:
    Domain = contoso
    Enabled = true
    LogonCount = 1
    Typed the password
    Username = Administrator
    These two components alone don't work. It installs server 2012 OK and bypasses all the screens I want to bypass it even joins the domain
    contoso successfully. I have to manually logon and then when I logon no scripts or anything is ran. When server manager opens dns role is not installed and not even located under tools.
    Things I tried:
    Open cmd as admin and typed "powershell -command
    Install-WindowsFeature DNS –IncludeManagementTools -IncludeAllSubFeature -Restart." this worked and installed roles successfully
    If I missed anything to help you troubleshoot just ask.

    Unfortunately you are posting in the wrong forum.  You need to post deployment issues in the Windows Server Deployment forum.
    ¯\_(ツ)_/¯

  • Need help setting up my work email

    I'm new to Blackberry and need help with setting up my device to receive my work email (we use Outlook).  They use BES but since I purchased my Verizon Blackberry on my own, my workplace IT department will not assist me in setting it up.  Since the desktop redirector does not allow me to get attachments, that is pretty much not a great option.
    We can obtain email through Outlook Web Access, so I tried setting it up through BIS based on other postings.   I've tried every combination of user/mailbox names, with and without the full domain name attached, but still getting the error, "A connection could not be established..."  I don't believe we have Microsoft Internet Security and Acceleration Server (no /CookieAuth.dll added to web address).  On the Web Access log-in page, I do have to select a domain from a drop-down menu, if that somehow plays a role in how I configure things??
    Tried setting up a forwarding rule in Outlook, but it seems annoying that all the emails received from the device are from ME, and makes replying a bit painful.
    Any suggestions would be great.
    Thanks!

    you can try integrating using POP or IMAP access if available.
    and chk this fot typicak OWA integration issues:
    http://www.blackberry.com/btsc/search.do?cmd=displ​ayKC&docType=kc&externalId=KB02858
    Click on KUDOS to appreciate our efforts and mark the thread RESOLVED if your issue is resolved.

  • I need help understanding how this works. AS 2.0

    Its my first time here and i only started learning flash today. I aint too great with maths and i was showed this piece of code that makes a triangles point follow the cursor. It involved mathimatical things ( which i aint so great at) and the guy said "You dont need to know how it works, just how to use it." well i copied his code and it worked, but i have no idea how to use it in other rotation apart from the one he taught us. I dont even understand how to redo his code i saved it to a word document and anytime i wanted to make something rotate something in that fashion i would refer to that. But i dont want to have to do that, i want to know how to use it, dont have to understand it, but use it for other rotation matters. If you are going to help, please try to be a bit simmple i explaining it, cause im new. Dont get me wrong i aint thick but i can find it a bit hard to follow some things, that is i my current problem.
    here is the rotation code:
    onEnterFrame = function()
    hero._rotation = getmouse(hero);
    getmouse = function(mc:MovieClip):Number
    dy = _ymouse-mc._y;
    dx = _xmouse-mc._x;
    rad = Math.atan2(dy,dx);
    rotate = rad*180/Math.PI
    return rotate+90
    also if it helps, here is the video i was watching: http://www.youtube.com/watch?v=w3OfrpbNhHs
    please if you can, explain how the entire thing works.
    thanks for any help given in advance.

    Hi,
    Here's a short primer.  It may not be sufficient but here goes.
    1st, move the closing bracket at the end and put it on the third line.  This makes the code more efficient
    onEnterFrame = function(){                               // this causes Flash to repeatedly
                                                                              execute the next line at the
                                                                              frame rate you selected
                                                                              for your document
           hero._rotation = getmouse(hero);               // this tells Flash to rotate a
                                                                              movie clip (named hero) based
                                                                              on the function getmouse()
    };                                                                     // putting the }; here makes the
                                                                              code more efficient and readable
    getmouse = function(mc:MovieClip):Number{   // This is the function called with
                                                                             mc referring to hero that was
                                                                             passed from the second line.
         dy = _ymouse-mc._y;                                // dy means delta y which subtracts
                                                                            the y position of the movieclip
                                                                            from the mouses y position
         dx = _xmouse-mc._x;                               // dx = delta x (same as above line
                                                                            but on the x axis)
                                                                         // once you have the x and y sides
                                                                            you male a triangle.
                                                                            Now use trig to find the angle
         rad = Math.atan2(dy,dx);                           // the computer works in radians
                                                                            the arc tangent atan2 will give the
                                                                            angle in radians
         rotate = rad*180/Math.PI                            // you want to convert the radians to
                                                                            degrees, that's what this line does
         return rotate+90                                         // this returns the value of rotate back
                                                                            to the calling function in line 2.
                                                                            the +90 determines which part
                                                                        // of the hero movie clip is facing the
                                                                           mouse.
    If you put the mouse cursor over any of the green reserved words above in the Actions panel you will get a desctription of what these do.
    hope that helps.

  • I need help for deploy an EJB to Oracle 8i

    I want to deploy an EJB on Oracle8i, but my JDeveloper 3.2
    doesn't have the option "Enterprise Java Bean to Oracle8i", it
    has only the option "CORBA to Oracle8i" in the deploy wizard. Is
    this correct?
    JDeveloper 3.1 has the option "Enterprise Java Bean to Oracle8i"
    in the deploy wizard. why doesn't Jdeveloper appear this option?
    I need help or information about this.
    thank you.

    To copy the data of one account to another one, you can use the Shared folder, stored in /Users. You have to log in this user in order to copy the files to the folder, and then, log in the new user and copy the files to the folders where you want to store your files. Another option is to use an external drive.
    To start by default with one account, open System Preferences > Login Options, and choose your old account next to "Automatic login"

  • I POD classic won't turn on, won't sync, screen is black. Need help getting it to work again.

    Need help getting I Pod Classic to turn on and run, I Tunes shows error 1601.

    Troubleshooting: My computer won't turn on
    BTW, this is the Mac Pro desktop forum

  • Newbie questions - application deployment not working

    Hi
    I'm running SCCM 2012 r2 (no CU's yet but I'm just downloading #4). Everything appears normal for a new setup and there are no errors reporting in any of the status lists. Discovery, boundaries, AD schema has been extended and the System Manager AD container
    (and permissions) set up. 
    All domain PCs and users are listed in Assets. I have created a device collection to roll out test applications based on membership of an AD security group which has picked up the correct membership for that group (a single computer).
    I have created an msi to test application deployment (all it does is drop a test file into the windows folder) and tested that manually installing it with msiexec /i /q options on a test PC.  I have created the application, deployment type and deployment
    for the test msi and confirmed that the application has been deployed to the distribution point.
    And then... nothing happens.  I've checked the Monitoring\Deployments view and nothing is reported for the application (i.e. after selecting the application I have a grey pie chart with zero for all entries).  I've checked the report "Client
    push installation status details" and it reports an error (Last error = 5), 4 retries and  status of "retry" but no details of what's going on (and I can't find any log files which might tell me).
    Any assistance would be massively appreciated - despair is setting in!
    Thanks in advance
    Martin

    Definitely check to make sure the client is installed successfully on your test device.  No client, no app deployment :-).  Look for the ccmsetup.log in c:\windows\ccmsetup\logs
    Also, if you are using client push to install the client, make sure you ahve a client push account configured and that it has local administrator rights on the devices.  Ensure the Windows Firewall allows WMI and File/Print Sharing also.
    Jeff

  • Help my curve wont work after installing an update

    I recently installed an update to my curve. Since then it keeps loading then a white screen appears saying 'error press any key to return to pre configuration''then it switching itself off then repeats process again. I need help as phone is important to my job. Thanks for any help given.
    I have tried keeping battery out for 5 minutes.
    Solved!
    Go to Solution.

    Hi scrack
                           So if it is during device software you can try a fresh Reload of your device software to rule out any corrupt device OS.Have look On how to perform a clean Reload of BlackBerry Device using BlackBerry desktop software.
    KB11320
    All you need a PC with Internet connection and  USB cable.
    Try it and let us know. 
    Prince
    Click " Like " if you want to Thank someone.
    If Problem Resolves mark the post(s) as " Solution ", so that other can make use of it.
    Click " Like " if you want to Thank someone.
    If Problem Resolves mark the post(s) as " Solution ", so that other can make use of it.

  • Please help: Application doesn't work after upgrade to Workshop 8 sp2 from sp1

    Hi,
    Our application worked on workshop 8 sp1. After we upgrade system from sp1 to
    sp2, some of the part doesn't work propertly any more.
    1. netui:select seems not bind form data propertly. For drop down list box in
    forms, although user has chosen something from the drop down list box, the returned
    value in the form is always null.
    2. we use Java script window.open(url,...) to download and view files. After upgrade
    from sp1 to sp2, clients keep getting IE error complaining that "Internet Explore
    can not open this Internet site. The request site is either unavailable or can
    not be found. Please try again later", although the server and the files are all
    in local host server.
    Please help. Thanks

    Did you update your workshop application files and recompile your application?
    A few things changed between GA and sp2, some annotations were renamed, and some
    were added.
    If you open up your application in Workshop sp2, it should given you the option
    to upgrade your application.
    Failing that, you may need to go through the code that is not performing as it
    was before and check whether it was not utilising a bug that was fixed in sp2
    and thus causes it to not function correctly now.
    "Cynthia" <[email protected]> wrote:
    >
    Hi,
    Our application worked on workshop 8 sp1. After we upgrade system from
    sp1 to
    sp2, some of the part doesn't work propertly any more.
    1. netui:select seems not bind form data propertly. For drop down list
    box in
    forms, although user has chosen something from the drop down list box,
    the returned
    value in the form is always null.
    2. we use Java script window.open(url,...) to download and view files.
    After upgrade
    from sp1 to sp2, clients keep getting IE error complaining that "Internet
    Explore
    can not open this Internet site. The request site is either unavailable
    or can
    not be found. Please try again later", although the server and the files
    are all
    in local host server.
    Please help. Thanks

  • Need help text_io function not working in 11i

    Hi,
    I am new in form devlopment Kindly help
    We create a customize form on 6i then deploye it on our Oracle apps Server with EBS. I want to create a form using form 6i which read a text file from client side and insert data into table i try text_io function but its not working after deployed form on server and also try webutil function but its not working with oracle forms 6i kindly help how can i do this while using forms 6i i will be very thankful.
    Thanks

    Hi;
    Please check first below link
    Forms 6i Developer and Forms 6i Services - Demonstrations and Sample Code
    http://www.oracle.com/technology/sample_code/products/forms/6idemos.html
    Also check below googling which exists for step by step guide
    www.pdfoo.com/result-Oracle-forms-6i-step-by-step-tutorial.html
    www.pdfoo.com/resultpage9~forms-6i-step-by-step-application-development -examples.html
    Also see:
    http://www.google.com.tr/#hl=tr&biw=1259&bih=793&q=forms+6i%2Bstep+by+step&aq=f&aqi=&aql=&oq=&gs_rfai=&fp=71a534c4a5161590
    Regard
    Helios

  • Need Help with deployment of EJB3 entities

    I have a JDEVELOPER application with 3 projects Model, Utility, and View Controller. I am having a problem getting this app to deploy and I am really getting confused with all the files that some say should be in the deployment like ejb-jar.xml and application.xml or persistence.xml. Could someone please point me to a site that details how to deploy an EJB3 application using entities with annotation to an Oracle 10.1.3 Application Server. I guess I am getting really confused because of the flux of EJB3, but I really like the way EJB3 works I am just having a fit trying to deploy. Thanks for reading this post and any help you can provide. Also all the examples that Oracle have are using ant to deploy, but with my company I cannot use ant because it is not an approved standard.
    Thanks,
    Thom

    tspragg,
    Here are the results of an Internet search I did:
    (Hope it helps.)
    http://tinyurl.com/p6eae
    Good Luck,
    Avi.

  • Need help on Deployment

    Hi, I successfully deployed my simpleJSP.jsp to an remote 9iAS server. But, I cannot access it thru the browser. I don't know why. I tried port number 8888, which doesn't seem to exist.
    Any help will be appreciated!
    Thanks,
    Weiping Cai

    hi
    suresh,
    i know this procedure .
    my requirment is , deploy ears to WAS using java application because i need to develop instalation setup, when i click setup file i need to deploy ears to WAS.
    this whole thing need to be done remotly.
    ragards
    Guru

  • Need help: JCA deployment unsuccessful using dcmctl

    I am using the command line tool dcmctl with the deployApplication option to deploy a standalone JCA resource adapter. I am having some problems with lookup of this JCA from EJB.
    I execute the command:
    dcmctl deployApplication –f my_jca.rar –a my_jca
    The output I get:
    Application: my_jca
    Component Name: home
    Component Type: OC4J
    Instance: myinstance.mycompany.com
    At the end of it, I see the logfiles and it seems like the jca deployment went thru ok. But, when I use my ejb, I keep getting the message that my_jca not found (com.evermind.server.rmi.OrionRemoteException).
    Under what JNDI tree is this jndi name my_jca to be found? How do we lookup for this? How do I know what went wrong in my lookup. The same jca works well with all other appservers.
    Here is the ra.xml I have. DO I need to provide a vendor specific descriptor? OC4J deploys one automatically so I didn't supply one:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE connector PUBLIC "-//Sun Microsystems, Inc.//DTD Connector 1.0//EN" "http://java.sun.com/dtd/connector_1_0.dtd">
       <connector id="Connector_ID">
          <display-name>my_jca</display-name>
          <description>My JCA</description>
          <vendor-name>my company</vendor-name>
          <spec-version>1.0</spec-version>
          <eis-type>DCOM Applications</eis-type>
          <version>1.0</version>
          <license>
             <license-required>false</license-required>
          </license>
          <resourceadapter id="J2CResourceAdapter_ID">
             <managedconnectionfactory-class>com.intrinsyc.jca.JintManagedConnectionFactory</managedconnectionfactory-class>
             <connectionfactory-interface>com.intrinsyc.jca.ConnectionFactory</connectionfactory-interface>
             <connectionfactory-impl-class>com.intrinsyc.jca.JintConnectionFactory</connectionfactory-impl-class>
             <connection-interface>com.intrinsyc.jca.Connection</connection-interface>
             <connection-impl-class>com.intrinsyc.jca.JintConnection</connection-impl-class>
             <transaction-support>NoTransaction</transaction-support>
             <authentication-mechanism id="AuthenticationMechanism_1067225162993">
                <authentication-mechanism-type>BasicPassword</authentication-mechanism-type>
                <credential-interface>javax.resource.spi.security.PasswordCredential</credential-interface>
             </authentication-mechanism>
             <reauthentication-support>false</reauthentication-support>
             <security-permission id="SecurityPermission_1067117771153">
                <description>testing with all</description>
                <security-permission-spec>grant { permission java.security.AllPermission; };</security-permission-spec>
             </security-permission>
          </resourceadapter>
       </connector>

    I am using the command line tool dcmctl with the deployApplication option to deploy a standalone JCA resource adapter. I am having some problems with lookup of this JCA from EJB.
    I execute the command:
    dcmctl deployApplication –f my_jca.rar –a my_jca
    The output I get:
    Application: my_jca
    Component Name: home
    Component Type: OC4J
    Instance: myinstance.mycompany.com
    At the end of it, I see the logfiles and it seems like the jca deployment went thru ok. But, when I use my ejb, I keep getting the message that my_jca not found (com.evermind.server.rmi.OrionRemoteException).
    Under what JNDI tree is this jndi name my_jca to be found? How do we lookup for this? How do I know what went wrong in my lookup. The same jca works well with all other appservers.
    Here is the ra.xml I have. DO I need to provide a vendor specific descriptor? OC4J deploys one automatically so I didn't supply one:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE connector PUBLIC "-//Sun Microsystems, Inc.//DTD Connector 1.0//EN" "http://java.sun.com/dtd/connector_1_0.dtd">
       <connector id="Connector_ID">
          <display-name>my_jca</display-name>
          <description>My JCA</description>
          <vendor-name>my company</vendor-name>
          <spec-version>1.0</spec-version>
          <eis-type>DCOM Applications</eis-type>
          <version>1.0</version>
          <license>
             <license-required>false</license-required>
          </license>
          <resourceadapter id="J2CResourceAdapter_ID">
             <managedconnectionfactory-class>com.intrinsyc.jca.JintManagedConnectionFactory</managedconnectionfactory-class>
             <connectionfactory-interface>com.intrinsyc.jca.ConnectionFactory</connectionfactory-interface>
             <connectionfactory-impl-class>com.intrinsyc.jca.JintConnectionFactory</connectionfactory-impl-class>
             <connection-interface>com.intrinsyc.jca.Connection</connection-interface>
             <connection-impl-class>com.intrinsyc.jca.JintConnection</connection-impl-class>
             <transaction-support>NoTransaction</transaction-support>
             <authentication-mechanism id="AuthenticationMechanism_1067225162993">
                <authentication-mechanism-type>BasicPassword</authentication-mechanism-type>
                <credential-interface>javax.resource.spi.security.PasswordCredential</credential-interface>
             </authentication-mechanism>
             <reauthentication-support>false</reauthentication-support>
             <security-permission id="SecurityPermission_1067117771153">
                <description>testing with all</description>
                <security-permission-spec>grant { permission java.security.AllPermission; };</security-permission-spec>
             </security-permission>
          </resourceadapter>
       </connector>

Maybe you are looking for