How to choose App-V 5 Sequencing "Primary Virtual Application Directory"?

Hi,
How to choose App-V 5 Sequencing "Primary Virtual Application Directory"?
Should I use c:\program files\MyAppR1 or just c:\program files or c:\Anything, dose it matter?
/SaiTech

Nice to know. Se before sequencing I have to know the exact folder structure of installable application, in what directory it would be installed by default?
Yes. Presumably you have a good understanding of the application before sequencing it. This generally means going through an installation of the application and understanding the layout on disk, what impact the app has on the user profile etc, before sequencing.
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

Similar Messages

  • How to choose .app files in the FileOpenChooser dialog?

    Hi,
    I am working on a plugin and want to allow the user to browse through the system to choose an .app (Application) file on Mac.
    Currently I'm using OpenDialog() function of SDKFileOpenChooser dialog for this. It's working correctly on Windows but on Mac, when the dialog opens up, .app file appears to be disabled (Not selectable).
    Please tell me what filter should I add so that one can choose files with extension .app.

    I am using SDKFileOpenChooser dialog. To add filter, we either need TypeInfoID for that file or FileType and extension.
    Using this code, I found out the typeInfoID for .app files. It came out to be 291.
    TypeInfoID tpID = FileTypeRegistry::GetFileTypeInfoIDForFile(appIDFile);
    Then I tried to add filters in both ways, it's still appear to be disabled (not selectable). Thus, not allwoing to choose .app files.
    SDKFileOpenChooser openChooser;
                FileTypeInfo currentFiletypeInfo = FileTypeRegistry::GetCurrentFileTypeInfo(291);
                openChooser.AddFilter(currentFiletypeInfo.GetFileType(), currentFiletypeInfo.GetFileExtension(), "App_Filter");
                                                                               or
                openChooser.AddFilter(291, "App_Filter");
    openChooser.ShowDialog();
    Can anyone please help me.

  • How to copy an Object with sequencing primary key?

    Hi, I have a use case here to copy all the informations and create a new object? The draft process i am using is:
    obj original = session.readObject;
    obj target = uow.readObject;
    if(target is not there) {
    target = uow.registerObject(new target())
    target.attrA = original.attrA
    target.attrZ = original.attrZ}
    uow.commit;
    It works fine, but i don't like to repeat the boring attribute copying. So i change my code to:
    obj original = session.readObject;
    obj target = uow.readObject;
    if(target is not there) {
    original.pk = null;
    uow.registerNewObject(original);
    uow.commit;
    I try to set the pk of the original to null and let it to use the sequence one. However, It fails with an exception that the primary key cannot be null. Is there anybody can help me to simplify the process? Any concerns or comments are really appreciated.
    Message was edited by:
    juwen

    Hello Juwen,
    The problem is you are registering an object, assigning it a null pk, and then commiting the uow/transaction. TopLink uses registered objects to keep track of changes you make inorder to persist those changes on commit. So the simple fix is to not commit the UnitOfWork - call release() on it instead.
    Another solution is to use the session copyObject api. The simple form that only takes an object will work similar to registering the object as it will copy all persistent attributes but it will leave the primary key null. You can also use this method to specify a copyPolicy to customize the process. Using this method will be a bit more efficient, since a UOW makes both a working copy and a back up copy of objects registered, inorder to keep track of changes. Using the copyObject api will only make a single copy.
    Best Regards,
    Chris

  • How to add app to the dock,such as applications.

    i have a g4 running 10.4.1. how can I put applications and documents icons into the dock so I can open them from dock?

    When an application is running, it will automatically show up in the Dock.  If you click and hold on the applciation in the Dock it will present you with a popup menu with some options.  Among them is Keep in Dock.   
    To add a document to the Dock, note the divider between the section that contains windows and the trash, and the applications.   You can drag between the divider and the trash any documents you want instant access to.
    If you drag folders to that section, clicking on the folder once there will reveal a hierarchical menu of that folder's contents.   
    Note all shortcuts on the Dock are just that, shortcuts, and nothing more.   Don't make the novice mistake of removing the file from the hard drive or window after putting it in the Dock.  If you do, you will never be able to access that file once in the trash, or emptied.    The dock is there for instant access.  It is NOT a data storage folder.

  • I have entered a incorrect email address, so cannot update an app I purchased. The email does not exist. How do I delete and use my primary Apple ID

    I have used an incorrect email address for my Apple ID  when I punched an App. Cannot get updates. How do I delete and use my primary account email address?

    Delete and redownload that application when signed into the correct Apple ID. This may require repurchasing it.
    (127051)

  • HT204053 How to choose the rihgt Apple ID on the App Store when it keeps using a unfunctional one?

    How to choose the rihgt Apple ID on the App Store when it keeps using a unfunctional one?

    Are you saying you don't know how to sign out, then back in with the proper Apple ID to carry out the update?
    iOS: Changing the signed-in iTunes Store account
              http://support.apple.com/kb/HT1311

  • How to return the newly generated sequence id for an INSERT statement

    A record is to be inserted into a table with a sequence for the primary key. The newly inserted sequence value is to returned on successful insertion. Is it possible to do all this in a single statement (say executeUpdate or any other) using java.sql.* ?
    E.g.: - A student record is to be inserted into the STUDENT table. There is a sequence (by name Student_ID_SEQ) on the primary key Student_ID. Student_ID_SEQ.nextval will generate the new sequence id which will be provided as input to the SQL statement (say statement.executeUpdate) along with other student attribute values. On insertion the created sequence id should be returned. And all this should happen in a single statement (single call to database). Stored Procedures can accomplish this. But is this feasible without the use of Stored Procedures?
    Thanks.

    a better aproach is to generate the auto key on the
    database side, not on the application side.That's his problem - since the database is supplying the key for the new record his application which executed the SQL has no way to identify the record that was just added. I just create the key on the app server and accept the likelihood of overlap (which is extremely small).
    Here is a more technical explanation:
    Table Person
       ID,
       Name,
       Phone Number,
       Age
    }The field ID is an autonumber, and all other fields are not unique.
    Now, when this code executes:
    PreparedStatement pst = conn.prepareStatement("Insert Into Person (Name, Phone Number, Age) Values ?, ?, ?");
    pst.setString(1, "John");
    pst.setString(2, "405-444-5555");
    pst.setInt(3, 44);
    pst.executeUpdate();How can the app determine the ID of the person just added since no query is possible which is guaranteed to select just the record that was inserted?
    Since I am generally against Stored Procedures I would develop a way to insure that your keys were unique and generate them inside the app server.

  • Is there dvd software out there that allows you to create a dvd menu in which the viewer can choose to play different sequences of the videos offered?

    Is there dvd software out there that allows you to create a dvd menu in which the viewer can choose to play different sequences of the videos offered? It was described to me as a dvd matrix menu but I can't find anything like it for mac. The idea is that there are multiple videos on the dvd menu and you can choose to play "video A, then B, then C" or "video B, then C, then A", etc, in different orders each time. And it would play the sequence that you choose.

    meghanica wrote:
    I think that's on the right track but I'm wanting something that allows the viewer to choose the sequence when they're looking at the DVD menu. I only see how the creator of the DVD can make different sequences. It's a yoga tutorial DVD and we are wanting the viewer to be able to pick a sequence from the menu items as such: pick one of the 3 warm-up videos, then pick one of the 2 yoga practices and then pick 1 of the 3 cool-down videos and then the dvd will play the sequence of selected warm up, practice, then cool down. And it can be differently chosen every time the viewer uses the menu.
    You can do this on a DVD with DVD Studio Pro.
    DVD's have some very basic storage called SPRM/GPRM scripting IIRC.
    There are a few tutorials around for DVDSP…
    http://www.kenstone.net/fcp_homepage/dvd_language_nattress.html
    http://www.digitalproducer.com/article/DVD-Studio-Pro-Scripting-Part-4-28784
    You use scripts to set values that are stored in a tiny amount of memory on the player & then have to use additional scripts to respond to the values set, so that at the end of a sequence it will jump to the one a user previously chosen.
    Some things to consider…
    DVD's have limits on the number of chapters & titles, you need to plan around that.
    Some DVD players are terrible to navigate, the settings that a user selects will be forgotten when the player is powered off. Users will need to make the choices over & over, every time they use the DVD (computers may remember it - I haven't tested this in years).
    You will also need to setup many variations of menus to be able to indicate what selections they chose.
    It is not a trivial task, you may want to hire a programmer to set it all up.
    Testing is also a lot of work - too many combinations can quickly cause issues for testing, different players can also do odd things too.
    I have used scripting for basic, 'play all' or 'play chapter' menus where the video is encoded once on the DVD & the scripts will either play through, or simply play a chapter & return to the same menu.
    You may find that it would be better to invest in setting up a website with this. On a custom site it would be possible for users to save a playlist or several, they can also share playlists etc, it would be more flexible & usable IMO.
    See roaring apps for info on others who have used DVD Studio Pro with various OS's…
    http://roaringapps.com/app/dvd-studio-pro …it looks like 10.8 may be the last OS to work correctly with DVDSP.
    Other DVD authoring apps may be able to do GPRM scripting too, but you will have to search for them.
    I think the registers are part of the DVD spec, so devices should support them, https://en.wikipedia.org/wiki/DVD-Video

  • Re: how to get apps for iphone 3g 4.2.1

    Re: how to get apps for iphone 3g 4.2.1 all apps support higher version help....
    Sep 24, 2013 6:34 AM (in response to Rajmit)
    I still have an old 3G which I use mostly as a ipod/radio. By accident I found you can overide the i-tunes block.
    1. Select Apps in Apps store icon on the phone.
    2. Choose App to download
    3.  At "Instal" button press it QUICKLY in blocks of 3 presses, keep doing  this until it overides the i-tune warning, then if there were legacy  versions for os 4.2.1 it says something like "this app is for os 5 or  above", but gives you a choice to download an older version. Select  this.
    Sometimes  it says the Apps is for newer hardware, requiring motion sensors, front  camera's etc.. just got to accept these ones don't work on legacy  hardware.
    4.  Download does not work for all Apps, esp. newer ones written after os  4.21 or if the developer doesn't have the vintage apps archived- e.g.  Instagram downloads, but won't run (wants to update), or WSJ and Barrons  stalls and goes through a download loop.
    I am not making this up, as I bought this old 3g unit on e-bay, after a complete factory reset I now have:
    -  Tune-in, FB, Pandora,Skype, Twitter, Bloomberg, MSNBC, Forbes,  Marketwatch, Viber, amongst a host of other news apps like LATimes.
    Some Apps will download ok, and then at activation says its too old and no longer supported e.g Whats App.
    Otherwise,  good luck. Tune-in, Pandora, Skype and Twitter is all I need to keep me  happy with an old unit, even though I've got newer hardware. Never let  anything die unnaturally.

    I still have an old 3G which I use mostly as a ipod/radio. By accident I found you can overide the i-tunes block.
    1. Select Apps in Apps store icon on the phone.
    2. Choose App to download
    3. At "Instal" button press it QUICKLY in blocks of 3 presses, keep doing this until it overides the i-tune warning, then if there were legacy versions for os 4.2.1 it says something like "this app is for os 5 or above", but gives you a choice to download an older version. Select this.
    Sometimes it says the Apps is for newer hardware, requiring motion sensors, front camera's etc.. just got to accept these ones don't work on legacy hardware.
    4. Download does not work for all Apps, esp. newer ones written after os 4.21 or if the developer doesn't have the vintage apps archived- e.g. Instagram downloads, but won't run (wants to update), or WSJ and Barrons stalls and goes through a download loop.
    I am not making this up, as I bought this old 3g unit on e-bay, after a complete factory reset I now have:
    - Tune-in, FB, Pandora,Skype, Twitter, Bloomberg, MSNBC, Forbes, Marketwatch, Viber, amongst a host of other news apps like LATimes.
    Some Apps will download ok, and then at activation says its too old and no longer supported e.g Whats App.
    Otherwise, good luck. Tune-in, Pandora, Skype and Twitter is all I need to keep me happy with an old unit, even though I've got newer hardware. Never let anything die unnaturally.

  • How do I remove a number sequence using batch rename

    Hi
    I know I've done this in the past but cannot seem to work it out today.
    I have a series of images "_####_[layercompName].png".  I would like to remove the underscores and numbers.  The underscores removal is easy, but how do I remove the numbers (####) when they are different for each filename?  I would like the end result to be [layercompName].png
    The reason I have these filenames in the first place is that I have run the photoshop script "layer comps to files", and this adds a number sequence prefix.  I have tried to alter the script following various instructions I've found from trawling the internet (this one included How do you remove the number sequence when exporting layer comps to files? CS6. Windows 8.) but without any luck.  So now I'm resorting to batch renaming in Bridge.
    Thanks!

    Here you go, taken straight from: DesignEasy: How to Remove Sequence Numbers and Empty Spaces When Exporting Layers and Layer Comps
    Run Adobe Bridge and navigate to the folder with exported files.
    Select all files which have sequence numbers.
    Go to Tools > Batch Rename.
    Choose: String Substitution from the first drop-down list in New Filenamessection. From the second drop-down choose: Original Filename. In the Find: text field type: _\d{4}_ (underscore, backslash, letter d, open bracket, number four, closed bracket, underscore). Leave Replace with: text field blank. Ensure that you have Replace All and Use Regular Expression checked as shown on the screenshot below.
    Click on the Preview button in the top right corner and ensure that files will be renamed as you want.
    Click on Rename button and you are done.
    In case you are first time doing this and you still have doubts if everything will work as expected, check Copy to other folder option when renaming files. This option is located near the top left corner under: Destination Folder.
    Another thing I want to mention is to remove everything that you have below String Substitution options. In case you see additional renaming options just click on minus (-) sign on the right side to remove them.
    How to remove/substitute empty spaces in the file name using Adobe Bridge
    It is pretty similar process. The only difference is that you should type: \s (backslash followed with letter s) in the Find: text field. You can leave Replace with: text field blank or to type underscore.

  • How to erase apps from a iPad

    How to erase apps from a iPad

    Press and hold down the app until a black x appears then hit the x then choose delete

  • How to choose vendor's second account when MIR7/MIRO ?

    Dear All,
    Here is my question, one vendor has two account , when MIRO/MIR7, SAP default the first vendor account as IR 's default datas, how to change it to the second account which I have added in the vendor?
    In MIRO/MIR7 there only display the vendor bank details, canu2019t choose.  thx

    step1 :  XK02: In the display vendor: payment transactions I add 2 bank key with different bank account,
    step2 :  MIR7/MIRO: When after entering PO ,  system default the PO's vendor's first bank account as the new invoice datas, but sometimes I should choose the second bank account for the vendor's invoice .
    I have some try about how to choose the very bank account when entering invoice in MIR7/MIRO , but have no idea about this.  And now We have to change the vendor's bank account's sequence for this requirement.
    As there has a list for vendor's bank accounts in the payment transactions, then I think SAP should let me choose whick bank account when entering invoice in MIR7/MIRO, and how?
    thanks a lot

  • How to choose default calendar in iOS7?

    Anyone who know how to choose default calendar in iOS7?

    Have you tried a reset?
    Quit the settings app: Double tap the Home button and swipe the app preview page up
    Hold the Sleep/Wake and Home buttons and don’t let go until the screen goes dark and the Apple logo appears (no data will be lost)
    You can also try resetting All Settings:
    Settings > General > Reset > Reset All Settings
    You will not lose any data but it will remove any settings made in the settings app.

  • FCutExpress HD 3.5, HOw do I Treat an Image Sequence as a Video clip?

    And edit it as if it was a video clip
    My images are an animation i exported from a 3d program, but i exported as IMage sequence using PNG format.
    I know how to import into Final cut,, but I'm not sure how to edit them as a BLOCK, and drag them to the viewer so i can workr with them as if it was a video clip.( I tried selecting them all in the timeline and dragging to the viewer and it seemed to work but in the viewer it was only one image(one frame ) )
    Then also how would i add video transitions and effects as if the image sequence was actually a video clip?

    Hi -
    You can use Quicktime Pro to make the clip, if your images are sequentially numbered. Open Quicktime, choose File>Open Image Sequence, and select the first frame of your images. Quicktime will ask what your frame rate you want and then create the movie.
    Once it is done, go File>Export and choose Movie to Quicktime Movie. Then select Options, and select the codec etc, that you want to edit with (DV, HDV, Animation, etc.) and then export the file and save the exported file.
    Import that file into FCE and you should be ready to go, it will behave like any other movie clip.
    Hope this helps.

  • Hi where can I learn how to develop app for ios in Singapore?

    I am new to iOS development. Are there any courses from apple or elsewhere in Singapore that I can learn how to develop apps for iPad and iPhone  platform?
    Thanks.

    There are a number of good resources. Stanford did indeed start up the iOS development class again, but the registration period has passed. You can stilll download the material and do a self-study, though:
    https://itunes.apple.com/us/course/coding-together-developing/id593208016
    There are also Apple's materials, the primary source of development information:
    https://developer.apple.com/devcenter/ios/index.action
    If you do a web search for "iOS development", you'll find a number of other sites that should be of help.
    Regards.

Maybe you are looking for