App-V 5 dynamically customize package

I created an App-V 5 package which works fine.
Now we need to dynamically change the AppV package before the users starts it. The changes required are e.g. register ocx, dll and or install a small exe program and then start the App-v package.
First: is that easy possible by e..g modify the XML file to start e.g. VBS script which will perform the actions before the AppV package is started.
Second: is it possible to make it related to an AD group. Like if member of AD group A then the file A.ocx will be registered and if member of the AD group B then the b.ocx file will be registered. Remark: the files A.ocx and B.ocx are placed outside the
AppV package.
I hope someone can help me with this.....

Hello,
See more information about the configuration files;
http://technet.microsoft.com/en-us/library/jj713466.aspx
See the Community editor;
http://virtualengine.co.uk/vet/ace/
See this limitation for what can be edited on the fly in App-V 5;
http://www.virtualvibes.co.uk/cow-and-its-exclusions-in-app-v-5-0/
I would just create different packages and apply those to different AD-Groups.
Nicke Källén | The Knack| Twitter:
@Znackattack

Similar Messages

  • ISE 1.1.2 - Agent Customization Package

    Hi there
    I have created a NAC Agent Customization Package and sucsesfully uploaded the 'custom.zip' file to - Policy>Policy Elements>Results>ClientProvisioning>Resources.
    However, when I try to edit my Client Provisioning Policy and select AgentCustomizationPackage, my custom package dosn't appear on the drop down list, so i'm unable to select it!
    Anyone any ideas?
    Cheers
    Tim

    Hi Tim,
    It is possible to us Agent Customization Packages using temporary "Update Feed URL" in "Administration" --> "System" --> "Settings" --> "Client Provisioning". If you use attached file as example the "Update Feed URL" will look like http(s)://fqdn/provisioning-update.xml
    You may use attached files as example, this one includes the Cisco logo.
    Regards, Jan-Willem Molenaar

  • Error ITMS-9000: No .app bundles found in the package

    I created my app in Dreamweaver CC with PhoneGap Build 3 and Application Loader. When I used Application Loader to upload my app, I received an error that read, Error ITMS-9000: "No .app bundles found in the package". I spoke with Apple tech support and I was told that I needed to upload my Dreamweaver file into Xcode to produce a production Certificate so that my app can be uploaded to the App Store. How do I upload my Dreamweaver file to Xcode? Please help, thanks!

    Some posts that could help you.
    HTML5 Tools • View topic - No app bundles found in the package at SoftwareAssets/Softwa
    Why am I getting error No .app bundles found in the package - Welcome to the GameSalad forum!
    Thanks,
    Preran

  • Itms9000 No .app bundles found in the package at "software assets/softwareasset (MZitmsSoftwareAssetpackage)"

    itms9000 No .app bundles found in the package at "software assets/softwareasset (MZitmsSoftwareAssetpackage)"

    Pls: about application loader
    Unable to authenticate the package 756513884.itmsp
    Would you tell me some advice ?

  • Help to get my iPhone App to iTunes Connect Flash Packager

    help to get my iPhone App to iTunes Connect Flash Packager
    i have problem
    only with Flash Packager  i have problem
    form  Xcode working fine no problem
    Application Loader show me this
    Application failed codesign verification. The signature was invalid or it was not signed with an apple submission certificate
    MacBookPro
    Flash CS5.5

    Did you create the correct mobile provisioning profile and distribution certificate?
    http://help.adobe.com/en_US/as3/iphone/index.html
    Go there, expand "Compiling and debugging iPhone applications" and then "Compiling  an iPhone application installer (IPA) file".
    Make sure you are creating the *distribution* files and not development if you trying to submit this to the app store.

  • Is there an option to switch from Photoshop single app to the CC Photography package?

    is there an option to switch from Photoshop single app to the CC Photography package?

    Tony_Byrne wrote:
    is there an option to switch from Photoshop single app to the CC Photography package?
    So what you are saying, asking, is you purchased a Photoshop subscription @ the original offering price of $19.99 a month cost (or whatever it was) and now what to Drop that in favor of the PS CC + Lightroom $9.99 subscription. Is that correct?
    If so you have two options as I see it.
    1) do as suggested above and contact Customer Care to see if you can switch over before the end of the original subscription.
    2) If you are close to the end of that original subscription period wait for it to end, Do Not Renew and then sign up for the newer lower cost PS CC + LR subscription.

  • Netinstall - Trying to Customize Package Selection

    I am trying to create an image of Leopard (client) to do NetInstall's so I can upgrade a bunch of laptops around our school. I would like to make the process automated, but when I add "Customize Package Selection" to a workflow, no packages show up in the window. I'm probably doing something wrong, but I can't figure out what it is.
    I am creating this image from a Leopard DVD and using a Leopard equipped Macbook to create the image. I will move the image over to a Leopard equipped Xserve once I have it created.
    Thanks for any help you can give.

    Same problem here... but I am using an ASR image instead of the 10.5 DVD. I am not able to create a NetInstall image that includes packages on my 10.5.4 Server. I reapplied the 10.5.4 combo update just to be sure I was not missing something but, alas, still no workflow.
    You may wish to use Automator instead to handle the package distribution.
    Sorry, not what you wanted to hear.

  • How to create a dynamic SSIS package for multiple flat file destinations

    Hi,
    I have to create a ssis package which has single data flow task and inside that I have 23 source (sql- select * from - statements)- destination (flat files, 23 distinct) connection.
    Now for each product I have to create separate SSIS package (i.e. if prod=abc then these read select * from abc_tables and 23 abc_ txt files)
    I want to do it dynamically, means only single package and inside that variables will take select * values for each source-dest connection (so i believe 23 variables) and same for destination flat files.
    Let me know. :)
    ANK HIT - if reply helps, please mark it as ANSWER or helpful post

    Sorry It seems you're contradicting yourself. you say I know my source and dest structure and the you're
    asking all I want is to have a dynamic structure
    what does that mean?
    and reading your next sentence
    I want to run a package for 5 products, instead of creating 5 ssis packages with 23 source- dest connection, I would
    like to have one with only 23 source- dest connections 
    What I feel is what you're looking for is to  have a looping structure to loop through each of the 5
    products.
    In that case what you could do is this
    1. Create a object variable in SSIS 
    2. Use a Execute SQL Task to populate the variable with all available products (I think you'll have a master table for that). Set ResultSet property to Full ResultSet and then in ResultSet tab map Object variable to 0 th index
    3. use a ForEachLoop container with ADO .NET recordset enumerator and map to object variable. Create a variable of datatype same as that of Product identifier field to get individual values out
    4. Inside loop create your data flow task with 23 source destination connection. In the query part use a parameter for product field and map it to the variable containing product value to get only data for the product.
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Dynamic Variable Package Installs (Not Applications)

    My Apps install fine, but I'm not sure where to look to see if all my Packages are as I'm not finding much in the smsts.log.
    I believe I have everything configured fine, as its similar to my applications OSD task just with a different base variable.
    So for example:
    Base variable = PACKAGES
    Collection Variable:
    PACKAGES001 - 1010007C:Unattended
    That is the correct syntax I believe.  So which log files can prove what is or isn't installing?  I'm installing 9 packages before my 10 apps (apps install fine).

    <PackageId>:<ProgramName> should be the correct format, see also:
    http://technet.microsoft.com/en-us/library/hh846237.aspx#BKMK_InstallPackage
    The global information about the different packages to be installed should be in the smsts.log file and the detailed installation information should be in the execmgr a.log file.
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude

  • Mobile app missing images only after packaging for App Store?

    This is general, but I was wondering if anyone else has had this problems, as it's happened to 2 different apps I recently posted to the app store.
    Basically, the apps worked in the simulators fine, I intalled and tested on 10 different iphones, and it works fine. When I packaged up the app, and downloaded from the app store after approval there were various missing images. For example, 3 images on a page with 6 png would be missing. They weren't loaded any differently.
    So I rechecked the app in flex simulators, worked fine, installed on phones, worked fine. I could not replicate problem anywhere. I randomly just resaved out a few images and that 'appears' to have worked. So when my next app was exhibiting the exact same behaviour, i 'resaved' out the broken images and a few were fixed, but a few are still broken.
    This is just so strange, since I can't replicate the issue anywhere except after downloading from the app store.
    Anyone else having similar issues?
    thanks

    Make sure your paths are *NIX compatible. Things like incorrect case or spaces in the file name will work just fine in the emulator, but fail on the device.
    Are you saying the images work when installed on the device using a provisioning profile, but that very same app doesn't work when downloaded from the app store? If that's the case, the problem is probably in your build settings (IE. not including all the asset files, etc.)

  • App-V 4.6 Duplicate Package Root

    I've inherited an outstanding issue in my organisation:
    We have seen the creation of duplicate package root folders in our RDS App-V 4.6 SP2 environment. This can be benign and the two applications in question seem to run fine for our users. The duplicate folder is always created in uppercase.
    The does however cause the application to fail at some point when this occurs the following error, get's reported when users attempt to launch the application:
    [11/09/2013 09:17:37:110 JGSW ERR] {hap=7A8:app=xxxxx:tid=41F0:usr=xxxxx}
    The Application Virtualization Client could not connect to stream URL 'FILE://\\xxxxx\corpdata\Microsoft_AppV_Repository\xxxxx\xxxxx.sft' (rc 00000729-000003ED, original rc 00000729-000003ED).
    [11/09/2013 09:17:37:125 SWAP ERR] {hap=7A8:app=xxxxx:tid=41F0:usr=xxxxx}
    The client was unable to connect to an Application Virtualization Server (rc 00000729-000003ED)
    [11/09/2013 09:17:37:125 TRAY ERR] {tid=4C98:usr=xxxxxx}
    The Application Virtualization Client could not launch xxxxx.
    The volume does not contain a recognized file system.
    Please make sure that all required file system drivers are loaded and that the volume is not corrupted.
    Error code: 4627577-00000729-000003ED
    We can resolve this issue by clearing the application cache and reloading. I have searched both application to see if the package root is referenced in anyway in uppercase and cannot find anything.
    We are looking for a route cause to this issue and any help would be very much appreciated.
    22batt22

    Hi There,
    Thanks for your time. I've opened both applications that are and can confirm that both have one package root each in lower case.
    I'm confused here - have you identified multiple packages with the same package root/asset folder or each package has a unique folder?
    Please remember to click "Mark as Answer" or "Vote as Helpful" on the post that answers your question (or click "Unmark as Answer" if a marked post does not actually
    answer your question). This can be beneficial to other community members reading the thread.
    This forum post is my own opinion and does not necessarily reflect the opinion or view of my employer, Microsoft, its employees, or other MVPs.
    Twitter:
    @stealthpuppy | Blog:
    stealthpuppy.com |
    The Definitive Guide to Delivering Microsoft Office with App-V

  • Dynamic Execute package Task

    Hi ETL,
    I have Master package consisting of 10 child packages, i'm calling child packages using execute package task
    Now the issue is, child package location should be configurable .
    Plz help me

    Thats easy.
    Add the connection string property of package connection manager used within Execute Package Task as a configuration within package and pass it through XML file or SQL server table value
    http://biatlink.wordpress.com/2013/11/22/ssis-dynamic-location-for-execute-package-task/
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • App-v 5.0 Client Package Installation - Error Code: 0C80070003 ( App v Error Code) 74F00F0C80070003 ( Internal error Code )

    Hi,
        I have converted my previous version package which was build upon 4.6, using sequencer to 5.0 app-v client.
    I didn't have any errors & warnings. But, when I tried to install the package , I'm getting the error with error code
    Error Code:
    0C80070003 ( App v Error Code)
    74F00F0C80070003 ( Internal error Code )
    Bala.R

    Hi there, 
    It was my mistake and the way we published app connection groups in the past. In the past we published the applications directly through an connection group without publishing the applications themself. In app-v 5.0 sp3 I needed to publish the packages itself
    also.... 

  • Dynamic/Customizable PDF output

    Hey guys and gals,
    I need to produce a PDF report that is customizable by the end user...
    Think of an Invoice with multiple Lines and I want the end user to be able to define/set stuff like:
    1. Logo image at the top, they can choose where (Left, Middle, Right)
    2. Location of the Remit-to address
    3. Font and size for Invoice Number
    4. Width and location of the invoice line Description
    5. Margins
    I'm trying to avoid BI Publisher and instead use a "free" tool so my clients can afford it.
    How would you guys tackle the problem?
    Thanks,
    Russ

    Good news...
    pl/pdf v2.1 seems to support turning xhtml source into PDF (plpdf_xhtml package).
    I have previously used the Apex "HTML editor standard" item type to edit and store HTML that I parse and replace tokens within the HTML to create customized emails.
    I'll use the same technique to allow the user to design/layout the report in the HTML editor. Then I can parse/replace the tokens and pass the resulting HTML to plpdf_xhtml.xhtml_to_pdf routine which returns a PDF BLOB.
    Only significant question remaining is how tough is the validation of the XHTML and can I pre-validate the HTML entered by the user will be sufficiently valid XHTML.
    Thanks for the lead on pl/pdf and I'll update this thread as I experiment...
    Russ

  • Integrating Oracle APPS with APEX using popay_apex package...

    Hi,
    I am a newbie in APEX and tried to explore it only a few months back...
    I must admit that this tool is Awesome..!!!
    Also, I tried to integrate Oracle EBS 11i with APEX using [popay package |https://sites.google.com/a/popay.be/apex-on-apps/integration] and the integration was absolutely fantastic...!!!
    h6. (Thanks Thierry for your impecabble work on developing and releasing this excellent package under BSD License !!!)
    My question is,
    I have created an Online Leave Application (OLA) in APEX which should retrieve the username from EBS Login and display the leave information of that particular user.
    I have created the OLA in APEX and registered it in EBS as a form function and also attached it to a user responsibility.
    When I run the form thru the EBS Responsibility logged in as a EBS user, the OLA Application opens in a new window...
    But,
    The username is retrieved as APPS instead of the user's login info.
    because of this retrieval the global variable :APP_USER is storing the username as APPS and all my internal references with :APP_USER has been erroring with "NO DATA FOUND", since there is no user login as APPS.
    Is there any way to overcome this bottleneck...?
    Or Do I need to add any code in the APEX >Application >Security > VPD
    Thanks in Advance...
    Ben

    Hi,
    I have solved the issue, Thanks to Rod & Thierry !
    I have created a cookie to send the apps username to my APEX application.
    (Added this code snippet in the popay_apex.start_application procedure)
    --------<CODE>------------------------------------------
    l_user := fnd_global.USER_NAME;
    OWA_COOKIE.send
    +(NAME=>'APEX',+
    VALUE=>l_user,
    path=>'/');
    ---------<ENDS>----------------------------------------
    (Created an on-load before header process at page 1 and fetched the cookie value to an application item.)
    -----------<CODE>-------------------------------------
    DECLARE
    c OWA_COOKIE.cookie;
    a wwv_flow_global.vc_arr2;
    BEGIN
    c := OWA_COOKIE.get('APEX');
    a := htmldb_util.string_to_table(c.vals(1));
    +:F101_USER := a(1);+
    EXCEPTION WHEN OTHERS THEN
    NULL;
    END;
    -------------<ENDS>---------------------------------------
    It's a mashup of Rod & Thierry's work....!
    Hat's off to Rod & Thierry !
    Ben

Maybe you are looking for

  • PDF Document is not working

    Hi, We are migrated from xMII 12.0 to MII 14.0 SP04 . We generate PDF document. A html page calls a exacute query which calls a transaction. In the transaction, a PDF Document object, PDF Bar Code object, Delete File object and Image Saver. Delete Fi

  • Idoc to file -- Records based on the segment repitition. Urgent..Pls.!!

    Hi Experts, Iam doing a Idoc to file scenario. Based on the sales organization(VKORG),i need to create the multiple records in the file. For example : E1MARAM 0..Unbounded | |E1MARMM 0..Unbounded | E1MARMM | E1MARMM | E1MARMM | E1MVKEM 0..Unbounded |

  • How to create ZPS Report showing specific Project details?

    Hi, How do I create a custom  ZPS report which shows Project details and progress The requirements are to see 20 fields in one single report . The fields which  to be seen in the report are Labor Cost, Material Cost,Labor hrs,finish dates, billing pl

  • Problems with xmlbeans in workshop 7.0

    Hi, I have been trying to use the purchase order example for XMLBeans (http://workshop.bea.com/xmlbeans/docindex.html) in Workshop 7.0. I have the jar file for the schema and added it in the WEB-INF/lib of my Workshop 7.0 project. When i try to use i

  • Pacman calculate changes

    This isn't an issue, (although it can be) but I'd like to know if there are any plans for pacman where if updating packages, pacman will calculate the file size differences.  One thing I really miss about debian was how when updating, it told me exac