How to make no-package installers packages?

Hello

I want to use the Apple Remote Desktop to install the software on Macs in our office, but I find much of the time, including installers as a bundle of the application (not the actual application that could be simply copied, but an executable to be executed). An example of this is Adobe Flash. Is it possible to convert or "wrap" this type of Setup programs in a package so that ARD will recognize and be able to deploy? (ARD only seems to recognize the .pkg files).

T.I.A,

GAM

Practically all the OS X apps are "packages". A package can be part of another package, but I don't think it's the solution to your problem. I think you must be the system restore function. It is out of my field, but you can look at www.bombich.com who has long been involved in network facilities.

Tags: Servers and Enterprise Software

Similar Questions

  • How to make a smart export a package with JAVA?

    Hello! And sorry for my bad English.

    I just want to know how to make a smartExport of a package in JAVA. I already write code, but it has exported all my project and not only my package.

            final String folderPath = fonctionDiverses.pathFolder();
            final String smartExportFileName = fonctionDiverses.xmlName();
            
            // Set the encoding of XML file
            final EncodingOptions expeo = new EncodingOptions ("1.0", "ISO8859_9",  "ISO-8859-9");
            
            Locale locale = new Locale ("en", "US");
            Locale.setDefault (locale);
    
            //
            // From which Project will be exported the Integration Interfaces? Set below the Project code
            final String srcOdiProjectCode = fonctionDiverses.projectName();
            
            //
            // Export the Integration Interfaces from the Project
            final List<ISmartExportable> expIntegrationInterfaces = new LinkedList<ISmartExportable> ();        
    
                     
                    // Allocate an odisinstance of the name
                    final OdiInstance odiInstance = odiInstanceHandle.getOdiInstance();
                    try
                      {
                         TransactionTemplate tx = new TransactionTemplate(odiInstance.getTransactionManager());
                         tx.execute(new TransactionCallbackWithoutResult()
                            {
                             protected void doInTransactionWithoutResult(ITransactionStatus pStatus)
                             {
                     
                            /*
                             * 
                             *  <<  ODI SDK Codes goes here >>
                             *  
                             */
                                 
                                // OdiProject project =  ((IOdiProjectFinder) odiInstanceHandle.getOdiInstance ().getTransactionalEntityManager ().getFinder( OdiProject.class)).findByCode(srcOdiProjectCode); //$NON-NLS-1$
                    
                      
                                    Collection<OdiInterface> odiInterfaces = ((IOdiInterfaceFinder)odiInstanceHandle.getOdiInstance ().getTransactionalEntityManager ().getFinder (OdiInterface.class)).findByName(fonctionDiverses.packageName(), srcOdiProjectCode, fonctionDiverses.folderName()); //$NON-NLS-1$
                                            
                                    for (OdiInterface pop : odiInterfaces) 
                                    {
                                        expIntegrationInterfaces.add( (ISmartExportable) pop);
                                        System.out.println("pop : "+ pop.getName ());
                                    }
                                
                                            
                                    ISmartExportService esvc = new SmartExportServiceImpl (odiInstanceHandle.getOdiInstance ());
                                    try {
                                        esvc.exportToXml (expIntegrationInterfaces, folderPath, smartExportFileName, true, false, expeo, false, null);
                            
                                    } catch (IOException e) {
                                        e.printStackTrace ();
                                    }
                        
                                    
                     
                              } });
                         }
                     
                    finally
                            {
                             odiInstanceHandle.release();
                            }
        }
    
    }
    
    

    I got my answer that I post here to help someone else.

    package truc;
    
        import java.io.IOException;
    
        import java.util.Collection;
        import java.util.LinkedList;
        import java.util.List;
        import java.util.Locale;
    
        import oracle.odi.core.OdiInstance;
        import oracle.odi.core.persistence.transaction.ITransactionStatus;
        import oracle.odi.core.persistence.transaction.support.TransactionCallbackWithoutResult;
        import oracle.odi.core.persistence.transaction.support.TransactionTemplate;
        import oracle.odi.domain.project.OdiInterface;
        import oracle.odi.domain.project.OdiPackage;
        import oracle.odi.domain.project.OdiProject;
        import oracle.odi.domain.project.finder.IOdiInterfaceFinder;
        import oracle.odi.domain.project.finder.IOdiPackageFinder;
        import oracle.odi.domain.project.finder.IOdiProjectFinder;
        import oracle.odi.impexp.EncodingOptions;
        import oracle.odi.impexp.smartie.ISmartExportService;
        import oracle.odi.impexp.smartie.ISmartExportable;
        import oracle.odi.impexp.smartie.impl.SmartExportServiceImpl;
        import oracle.odi.publicapi.samples.SimpleOdiInstanceHandle;
    
        public class ClassName {
    
            public static void main(String args[]){
    
                final FonctionParamExport fonctionDiverses = new FonctionParamExport();
    
                //Paramètre de connexion à ODI et au repo
    
                final SimpleOdiInstanceHandle odiInstanceHandle = SimpleOdiInstanceHandle.create
                        ("jdbc:oracle:thin:@localhost:1521:EXEMPLE",
                        "oracle.jdbc.OracleDriver",
                        "Repo_User",
                        "Repo_Password",
                        "WORKREP",
                        "ODI_user",
                        "ODI_password");
    
                //
                // Set the location, and name of the Smart Export .xml file (the file which will be created during the Smart Export operation, and which will hold the exported objects)
                final String folderPath = fonctionDiverses.pathFolder();
                final String smartExportFileName = fonctionDiverses.xmlName();
    
                // Set the encoding of XML file
                final EncodingOptions expeo = new EncodingOptions ("1.0", "ISO8859_9",  "ISO-8859-9");
    
                Locale locale = new Locale ("en", "US");
                Locale.setDefault (locale);
    
                //
                // From which Project will be exported the Integration Interfaces? Set below the Project code
                final String srcOdiProjectCode = fonctionDiverses.projectName();
    
                //
                // Export the Integration Interfaces from the Project
                final List expIntegrationInterfaces = new LinkedList ();        
    
                // Allocate an odisinstance of the name
                final OdiInstance odiInstance = odiInstanceHandle.getOdiInstance();
                try
                  {
                     TransactionTemplate tx = new TransactionTemplate(odiInstance.getTransactionManager());
                     tx.execute(new TransactionCallbackWithoutResult()
                        {
                         protected void doInTransactionWithoutResult(ITransactionStatus pStatus)
                         {
    
                             OdiProject project =  ((IOdiProjectFinder) odiInstanceHandle.getOdiInstance ().getTransactionalEntityManager ().getFinder( OdiProject.class)).findByCode(srcOdiProjectCode); //$NON-NLS-1$
    
                                Collection odiPackages = ((IOdiPackageFinder)odiInstanceHandle.getOdiInstance ().getTransactionalEntityManager ().getFinder (OdiPackage.class)).findByName(fonctionDiverses.packageName(), srcOdiProjectCode, fonctionDiverses.folderName()); //$NON-NLS-1$
    
                                for (OdiPackage pop : odiPackages)
                                {
                                    expIntegrationInterfaces.add( (ISmartExportable) pop);
                                    System.out.println("pop : "+ pop.getName ());
                                }
    
                                ISmartExportService esvc = new SmartExportServiceImpl (odiInstanceHandle.getOdiInstance ());
    
                                try {
                                    esvc.exportToXml (expIntegrationInterfaces, folderPath, smartExportFileName, true, false, expeo, false, null);
    
                                } catch (IOException e) {
                                    e.printStackTrace ();
                                }
    
                          } });
                     }
                    finally
                        {
                         odiInstanceHandle.release();
                        }
            }
        }
    
  • How to make Flash Player Package to use the Apple Remote Desktop.

    I want to deploy Flsh Player Package using Apple Remote Desktop.

    Could you please please teach me how to make Flash Player 'Package' to deploy Apple Remote Desktop on Mac OS X 10.9.

    Hello

    We provide an installation of Flash Player PKG for managed deployment package.  The package is available for download for visitors (with distribution license) current of the Adobe Flash Player Distribution | Adobe page.  The post you are looking for is the option 'download DMG Installer (for system administrators).

    --

    Maria

  • Hey, who knows how to remove a package that I bought?

    Hey, who knows how to remove a package that I bought?

    Cancel your membership Adobe Creative Cloud

    To the link below, click on the still need help? option in the blue box below and choose the option to chat or by phone...
    Make sure that you are logged on the Adobe site, having cookies enabled, clearing your cookie cache.  If he continues to not try to use a different browser.

    https://helpx.Adobe.com/contact.html?step=CCSN_membership-account-payment_cancel-your-memb ership_stillNeedHelp

  • How the names of Package exposed?

    I'm curious to know how the names of package in a native BlackBerry Java application are exposed to other applications or the operating system.  I know, for example, classes persistables but be only defined, otherwise you will get ' MyApplication startup error: class 'com.example.myapplication.MyClass' multiply defined. "  What other ways the package names are visible?

    As indicated in my thread on location on 4.6.1 performance problems, there are some strange interactions between the size of the application, the package names and the EventInjector.  Without an official fix or circumvention of the RIM, our only option may be to rename our packages.  I would like to understand the implications of this good because down us this road.

    Thank you

    RIM said the package names are exposed through the research of Class.forName and Persistable classes.  Some people use the name of the package in the COD file names, but I don't do that.  Assuming that I chose something unique, it will probably not see my name of the package to all the.

    Thanks simon.

  • How can I download package adobe (Photoshop and other applications) for student?

    How can I download package adobe (Photoshop and other applications) for student?

    Adobe in education... Start here https://creative.adobe.com/join/edu

    Educational https://creative.adobe.com/plans?plan=edu

    FAQ https://helpx.adobe.com/x-productkb/policy-pricing/education-faq.html

    When you purchase a subscription to education, the terms you "click to accept" should be clear about the first/last years

    -Intro price http://forums.adobe.com/thread/1448933?tstart=0 one can help

    http://www.Adobe.com/products/creativecloud/students.edu.html

    http://www.Adobe.com/education/students/student-eligibility-Guide.edu.html

    Redemption Code https://creative.adobe.com/educard

    Proof of ID http://www.adobe.com/store/au_edu/academic_id.html

  • Muse 2015.1 when I go to the company and try to make a package he displays only 2015 and no updates?

    How to create a package and get the new version of Muse, which has included reactive web site.

    This shows no updates?

    I tried with the current version of Creative Cloud Packager and the version of Muse installed from the package was 2015.1.

    It corresponded to the installed version of the creative cloud desktop application.

  • I am a member of Adobe and I only got a demo version of the indsign try earlier. Now, I want to buy creative 275 KR. per month. How to buy this package? (I don't have a serial number that the Web site asking...)

    I am a member of Adobe and I only got a demo version of the indsign try earlier. Now, I want to buy creative 275 KR. per month. How to buy this package?

    (I don't have a serial number that the Web site asking...)

    you buy here, pricing and membership creative cloud plans | Adobe Creative Cloud

    and install you your subscription programs by installing the application of cc, Download Adobe Creative Cloud apps desktop | CC free trial Adobe

    and then install your programs through the application of cc desktop subscription.

  • How to copy a package to a schema in a file?

    How to copy a package to a schema in a file?

    need to read schema packets in the server and write as files to the customer.

    After running a query, you can export columns PACK_DDL wherever you want.

    Select DBMS_METADATA. GET_DDL (object_type-online 'PACKAGE', name => t.OBJECT_NAME, schema-online t.OWNER) as pack_ddl, t.*

    from dba_objects t

    where type_objet = 'PACKAGE '.

    and owner = 'SCHEMA_NAME ';

    OR

    Select DBMS_METADATA. GET_DDL (object_type-online 'PACKAGE', name => t.OBJECT_NAME, schema-online user) like pack_ddl, t.*

    from user_objects t

    where type_objet = 'PACKAGE '.

    -----

    Ramin Hashimzade

  • When and how to create a package

    I have a doubt about how Oracle loads a package.
    Suppose I have a PACK1 package with N procedures inside. When I execute a statement such a PACK1 EXEC. PROC3(), Oracle loads all the package PACK1 N procedures in CMS? I ask for a simple reason. I usually create a package according to the fact that all the procedures inside this package are 'connected' among them somehow. A colleague of mine told me that he would like to put in a package even certain procedures more even though they are not all called among them, but because thay somehow deal with the same subject. Because I think that Oracle loads all the package in the SGA, according to me, it would be wise to put inside a package only procedures called among them.
    Can you help me?
    Thank you!

    Mark1970 wrote:
    I have a doubt about how Oracle loads a package.
    Suppose I have a PACK1 package with N procedures inside. When I execute a statement such a PACK1 EXEC. PROC3(), Oracle loads all the package PACK1 N procedures in CMS?

    Whenever any element of the package is referenced, the whole package is loaded into memory and (assuming it's not aged) remains in memory for future use.

    I ask for a simple reason. I usually create a package according to the fact that all the procedures inside this package are 'connected' among them somehow. A colleague of mine told me that he would like to put in a package even certain procedures more even though they are not all called among them, but because thay somehow deal with the same subject. Because I think that Oracle loads all the package in the SGA, according to me, it would be wise to put inside a package only procedures called among them.

    You are right. Also if other elements in the package are necessary overhead to call are very weak, because they are in the same memory area. This means that you can and should group related program units so that they can share data structures when necessary and call each other with a minimum load

  • How do I activate packaging for TextField?

    How to make a TextField with (TextField.NO_EDIT_MODE_INPUT |) TextField.READONLY) wrappable like this:

    If 'to' string is less than a specific width (~ width of the screen) then it is only singleline, if there are more then it is multiline.

    Hello

    See this thread.

    http://supportforums.BlackBerry.com/Rim/Board/message?board.ID=java_dev&message.ID=15944&query.ID=95...

  • How to make the updates of operating system for the limited user account?

    original title: how to make the updates of operating system for the limited user account?  Limited user account cannot access the Windows Update page, see instead cautioned against MS the most recent must be installed.

    XP Pro SP3 slipstreamed.  New a DBAN nuked HDD installation

    All the OS updates installed from Admin acct before creating the LUA

    AV installed AVAST

    all dot net uninstalled and then reinstalled to resolve a problem installing Quicken

    Updates to auto lit

    Active Windows Firewall

    Three solutions of workaround for Windows XP running as a limited user

    http://blogs.Computerworld.com/16502/three_workarounds_for_running_windows_xp_as_a_limited_user

    Survive a Windows XP Limited user account

    http://techknack.NET/surviving-a-Windows-XP-limited-user-account/

    See the response from Michael Kuntz - re: HAL files

    http://social.technet.Microsoft.com/forums/en-us/itproxpsp/thread/e8612ac4-b881-4FB3-85e7-32004932fb5f

    There is an available for installation of SP3 Cd

    Manually installing SP3 using the Microsoft Download Center or a CD

    If you have problems to receive the service pack from Windows Update, you can download SP3 as a standalone package from the Microsoft Download Center Web site, and then install SP3 manually. The installation package is intended for it professionals and developers, but you can always download and install this file.

    You can also order a CD from Microsoft containing SP3. For more information, go to the Microsoft site.

    To manually install SP3 using the standalone package installation or CD

    1. Do one of the following:

      • If you downloaded SP3 from the Web site, to install it immediately, click Open or run and follow the instructions on the screen. To install the program later, click on save and download the file to install it on your computer. When you are ready to install the service pack, double-click the file.

      • If you install SP3 from the Service Pack 3 CD, insert the disc into your computer with your current version of Windows XP running, and Software Update Installation Wizard should appear automatically. If this wizard does not appear, click Start, double-click my computer, click on your CD or DVD drive and then click AutoPlay.

    2. In Windows XP Service Pack 3 page, click Next.

    3. Follow the instructions that appear on your screen.

    4. Once the installation is complete, click Finish to restart your computer.

    5. If you disabled your antivirus software, turn it back on.

  • Effect of smoke steam - how to make realistic water vapour and wipe

    Hello

    looking for a tip or tutorial how to make a realistic smoke effect as with steam on glas. I want to use for the production of steam video in Adobe Premiere.

    I want 2 stage:

    (1) video coverage with increase in smoke steam (not more than 2-3 sec).

    I try with the laboratory of particles but the effect was so childish video and smoke covers not more than video. The effect was like ghost as to the title of the video and no coverage on video.

    How to make smoke to cover more video and how to make this realistic effect?

    (2) I saw glass and the glass is taken up with steam and grave. Behind glass, I see video blurines with people.

    Glass wipe invisible hand and I see hollow wiping shape this people. How to do this? I I think that just take a few PNG with steam n the water down and cover the videofilm and animate the wipe.

    But how? How to animate the wipe on glass and wipe the steam and drops? With what effect? How to animate it?


    His chaotic, I know, but give me nail, tip, hint or tutorial for this problem of resources.

    Sorry for my FR.

    I have Adobe CC last package.


    I would use the Fractal noise to create steam. Put on a mask to feathers on the layer to make the shape you want. Tweak the parameters, you should get a few nice smoky eyes.

    Then I would use an adjustment layer to change the levels of shooting (to decrease the contrast and add some blur to make it look like the steam on the glass.) Then, I would use another layer as a track matte to he will wipe away.

  • How to make a Plan to explain on PL - SQL?

    Hey guys, it's Xev, I'm back with a whole new positive attitude . I am very happy now that I got my cluster (11.2) 2-node RAC 11 GR 2 installed and working properly

    I'm doing a plan to explain some pl - sql, I wrote, but I'm having a hard time trying to figure out how to make it work.

    The catplan.sql has been performed and I a plan_table ready and waiting for me.

    Here's the full code as well as the two tables table that I use, just as I'm supposed to display.

    This is the first table

    and Yes, I only want a single folder in there...

    CREATE TABLE FILLER

    ("DATA_PACKED" VARCHAR2 (75 BYTE)

    )

    Insert in FILLING (DATA_PACKED) values ('KICKKKKKKKKK');

    commit;

    Then at the top on the list is the table of the HAMMER, I will insert all the data once the pl/sql program runs...

    This table is supposed to be empty...

    CREATE TABLE HAMMER

    ('H1' VARCHAR2 (100 BYTE),

    "H2" VARCHAR2 (100 BYTE)

    )

    and now, the CODE... Now, it is a very small version of my load of GR 11, 2 test scripts that I wrote, but I need to see execution plan behind this logic.

    I can even make a plan to explain on this code, or do I have to use something else?

    ---------------------------------------------------------------------------------------------------------

    declare

    Table type is table of the varchar2 (30) index directory.

    Table Z_STUFF.

    Start

    Select * BULK COLLECT into Z_STUFF of filling;

    because me in 1... 100

    loop

    for zoo in 1... Z_STUFF. Count

    loop

    Insert into HAMMER (H1, H2)

    values (Z_STUFF (zoo), Z_STUFF (zoo));

    end loop;

    end loop;

    end;

    /

    ----------------------------------------------------------------------------------------------------

    All comments are welcome, I just need to see what makes this logic behind the scenes...

    Thank you

    Xev.

    A query plan refers to an SQL statement.  A PL/SQL block can have 0 or more SQL statements.  It is, therefore, unnecessary to speak to generate a query plan for a PL/SQL block.  Your PL/SQL block happens to contain two different SQL statements.  You might get two different query plans, one for each statement.  Given how trivial statements are, however, I'm not sure that query plans would give you a lot of information.

    What is the problem you're trying to solve?  If you try to set the PL/SQL, you probably want to look into various profilers of PL/SQL.  For example, the DBMS_PROFILER package or the package DBMS_HPROF.

    Justin

  • How to make the status of concurrent program error

    Hi Experts,

    I've written a PL/SQL package procedure, created an executable w / values for my 2 IN parameters and he attributed to a simultaneous program to the e-business suite.

    The specification of the procedure looks like this:
    PROCEDURE PROC1 (
    errbuf OUT NOCOPY VARCHAR2 ,
    retcode OUT NOCOPY NUMBER,
    p_contract_number IN VARCHAR2,
    p_end_date_char IN VARCHAR2 
    );
    Here my requirement is like this,

    How to make the status of the program contributing to the error even if the program successfully completes.
    Please let me know how?

    Thank you
    Suman V.

    Hello

    To give an error output, simply put the RETCODE contains 2
    To give a warning output set to 1
    for and OK output set to 0.

    If your procedure may be:

    procedure proc1 (errbuf OUT NOCOPY VARCHAR2,
    OUT NOCOPY RETCODE NUMBER,
    p_contract_number IN VARCHAR2,
    p_end_date_char in VARCHAR2
    ) IS
    BEGIN
    RETCODE: = 2;
    errbuf: = ' this CR WRONG because I wanted it ';
    END;

    This will give you an error.
    It may be good to your CR PLSQL like this:

    procedure proc1 (errbuf OUT NOCOPY VARCHAR2,
    OUT NOCOPY RETCODE NUMBER,
    p_contract_number IN VARCHAR2,
    p_end_date_char in VARCHAR2
    ) IS
    BEGIN
    RETCODE: = 0;
    return;

    exception
    while others then
    RETCODE: = 2;
    errbuf: = "an error has unhandeled."
    return;
    END;

    This way execptions generate an error.

Maybe you are looking for

  • Photo resolution problems

    We have two computers in the House, a faster and better than the other.That slower receives web videos to 1080 full, but the faster one will receive only 360.I did a test on a particular site video here to ensure a good apples to apples comparison.Yo

  • Scalable graphical Y50

    I have a Y50-70 with a GTX 860 m, model of the chip: NV N15P-GXSo I read on http://shop.lenovo.com/se/sv/landing-pages/lenovo-gaming/ (in Swedish) that the series can upgrade their graphics ' laptops Lenovo Y series offers the latest in the power of

  • CRio-9035 offline development

    In the near future, I develop software for crio-9035. Given that shipping takes a while, I would like to start writing Victorian code now without any hardware. I have installed: LabView - 13; -In time real Module 13. Module FPGA - 13; And then, of co

  • Spider sometimes works ok, sometimes in the rendering mode.__sleep and hibernation software are not available when the software rendering mode is running

    I have an ASUS K501N laptop.running 7 Home premium. Sometimes when I turn on it the office/display is not so strong, if I click on Spider I get a flag your who says run the game in software rendering mode hardware acceleration is disabled or not supp

  • Scanner HP Photosmart 5520 converts READING SD cards only

    My Photosmart 5520 has converted all my cards Sd for READ only scanner makes only not possible to scan disc memory.  What can be done to prevent this?