Extensions in Package.appxmanifest are not installed from store

I use in my App the Microsoft AdMediatorControl, that has some problem with Nokia imaging and Microsoft OCR libraries. I gave "not registered" runtime errors.
To solve that, I modified the Package.appxmanifest manually, and everything works fine when I install my App from Visual Studio.
But when I create a package for the store, and install from there, the app crashes when it tries to use these libraries.
My extensions in Package.appxmanifest:
<Extensions>
<Extension Category="windows.activatableClass.inProcessServer">
<InProcessServer>
<Path>WindowsPreview.Media.Ocr.dll</Path>
<ActivatableClass ActivatableClassId="WindowsPreview.Media.Ocr.OcrEngine" ThreadingModel="both" />
</InProcessServer>
</Extension>
<Extension Category="windows.activatableClass.inProcessServer">
<InProcessServer>
<Path>Nokia.Graphics.Imaging.dll</Path>
<ActivatableClass ActivatableClassId="Nokia.Graphics.Imaging.StorageFileImageSource" ThreadingModel="both" />
</InProcessServer>
</Extension>
</Extensions>

Please keep the subject line reasonably short (same for you other two posts!). Don't duplicate the entire post.
It also helps readability if you would use an occasional comma or period. The post is completely incomprehensible without.
Let's assume you figured out how to do all this in the presence of an internet connection, there is really not much to change. Simply make sure that both computers are on the same local subnet and have a unique IP address. The rest stays the same. you can connect them to the same switch, ir you could even connect them directly to each other using a crossover cable (or even a regular ethernet cable if the adapters have atuo-crossover).
LabVIEW Champion . Do more with less code and in less time .

Similar Messages

  • The latest versions of iWork are not installing from the AppStore

    I have a new iMac with the bundled copies of Pages 5.0, Keynote 6.0 and Numbers 3.0
    The AppStore showed Updates so I updated these and AppStore now things I have Pages 5.1, Numbers 3.1 and Keynote 6.1 installed.
    However the versions in my Applications folder stubbornly remain the old versions.  When I open the Apps they say "A new version is available" so I click on Update which takes me to the App Store which says the software is all up-to-date!
    How do I get the latest versions
    (Other apps seem to owrk OK - e..g latest update to iMovie worked fine)
    Thanks

    Pretty much the same - https://discussions.apple.com/message/24697344#24697344.
    Today, the App Store is again offering me updates to these iWork apps (for the 4th time, now) e.g. Pages 5.1. etc
    Although it said it had updated to 5.1 last time, the /Library/Receipts/InstallHistory.plist indicates that Apple downloaded 5.0.1 again! So of course when I opened it after updating, it was still 5.0.1.
    These forums seem to be quite angry still about these latest versions of iWork vs the previous '09 versions, see also this in the Pages forum https://discussions.apple.com/message/24701724#24701724. Not sure that there is much interest in getting 5.1 issues solved?
    Cheers

  • Extensions Are Not Installed and Then Shown Again

    Hi,
    I am updating Jdeveloper 11.1.1.1.4 and there are 4 extensions that are not installed and show again every time:
    Repository Harverster
    AIA Service Constructor
    AIA Composite Application Framework 2.4
    Fusion Developer Guide update
    The problem is much more in that this kind of issue with updates was in Jdeveloper since its beginning, than is the immediate need for this 4 extensions. Is there a reliable way to manage this issues? Why One should rely on a software with so basic and persistent problems?
    Thanks in Advance
    Fabio D'Alfonso
    http://www.fabiodalfonso.com

    Hi Fabio,
    I'm sorry to hear that you're having troubles with these extensions. After looking at each of the extensions, it appears that they are being installed, but they are not placing a jar file into the /jdev/extensions folder which is what JDeveloper is looking for in order to determine if they are up to date or not.
    I've filed a bug against each of the extensions.
    This is not an issue with the larger IDE itself, or even the functionality of these 4 extensions actually. It's a bug in how these extensions are being packaged by their development team.
    Thanks for pointing out the issue. We'll get it take care of as quickly as possible.
    --jb                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • [SOLVED by xyne] Search for packages I have but are NOT installed?

    Hi all,
    I run a couple of computers on Arch (both 64-bit), was just wondering if I could copy the /var/cache/pacman/pkg from one computer to the other, and then run some command to install from the cache all packages that are not currently installed. Basically it would be something like "go through all the packages in /var/cache/pacman/pkg, if any are installed ignore them, if a newer version is installed ignore them, but if no version of this package is installed then install it.
    Last edited by ngoonee (2009-06-26 05:17:35)

    Try this:
    #!/usr/bin/perl
    use strict;
    use warnings;
    exit(1) if not @ARGV;
    my $cachedir = $ARGV[0];
    $cachedir = substr($cachedir,0,-1) if substr($cachedir,-1) eq '/';
    opendir(my $dh, $ARGV[0]) or die $!;
    my @cache_pkgs = map { s/-[^-]+-[^-]+(?:-i686|-x86_64|-any)?\.pkg\.tar\.gz$//; $_ }
    grep {/\.pkg\.tar\.gz$/}
    readdir($dh);
    closedir($dh);
    my @installed_pkgs = split(/\s*\n\s*/, `pacman -Qq`);
    my %cache_pkgs;
    $cache_pkgs{$_} = 1 foreach @cache_pkgs;
    my %installed_pkgs;
    $installed_pkgs{$_} = 1 foreach @installed_pkgs;
    foreach (keys(%cache_pkgs))
    delete($cache_pkgs{$_}) if exists($installed_pkgs{$_});
    # uncomment these lines if you just want a list of uninstalled packages
    # without filtering dependencies
    # @cache_pkgs = keys(%cache_pkgs);
    # print "$_\n" foreach @cache_pkgs;
    # exit();
    my $pkg_files;
    foreach my $pkg (keys(%cache_pkgs))
    opendir(my $dh, $cachedir) or die $!;
    my @pkg_files = grep {/^\Q$pkg\E/} readdir($dh);
    closedir($dh);
    foreach my $pkg_file (@pkg_files)
    if ( $pkg_file =~ m/^(.+)-([^-]+-[^-]+)(?:-i686|-x86_64|-any)?\.pkg\.tar\.gz$/ )
    $pkg_file = $cachedir . '/' . $pkg_file;
    if (not exists($pkg_files->{$1}))
    $pkg_files->{$1}->{'ver'} = $2;
    $pkg_files->{$1}->{'file'} = $pkg_file;
    else
    my $ver = $pkg_files->{$1}->{'ver'};
    if (&compare_versions($2,$ver))
    $pkg_files->{$1}->{'ver'} = $2;
    $pkg_files->{$1}->{'file'} = $pkg_file;
    foreach my $pkg (keys(%{$pkg_files}))
    my $pkg_file = $pkg_files->{$pkg}->{'file'};
    my $pkginfo = `tar -O -zxf $pkg_file .PKGINFO`;
    foreach my $line (split(/\s*\n\s*/, $pkginfo))
    if ($line =~ /^depend\s+=\s+([^>=\s]+)/)
    delete($cache_pkgs{$1}) if exists($installed_pkgs{$1});
    @cache_pkgs = keys(%cache_pkgs);
    print "$_\n" foreach @cache_pkgs;
    sub compare_versions
    my ($a,$b) = @_;
    return -1 if not defined($a) and defined($b);
    return 1 if defined($a) and not defined($b);
    return 0 if not defined($a) and not defined($b);
    my ($rel_a,$rel_b) = (0,0);
    if ($a =~ m/(.*)-(.+)$/) {($a,$rel_a)=($1,$2);}
    if ($b =~ m/(.*)-(.+)$/) {($b,$rel_b)=($1,$2);}
    my @a = split(/\./,$a);
    my @b = split(/\./,$b);
    my $len_a = scalar @a;
    my $len_b = scalar @b;
    my $n = ($len_a < $len_b) ? $len_a : $len_b;
    for (my $i=0; $i<$n; $i++)
    my ($int_a,$alph_a,$dash_a) = ($a[$i] =~ m/^(\d*)(.*?)(_.*)?$/);
    my ($int_b,$alph_b,$dash_b) = ($b[$i] =~ m/^(\d*)(.*?)(_.*)?$/);
    $int_a = 0 if $int_a eq '';
    $int_b = 0 if $int_b eq '';
    if ($int_a != $int_b)
    return $int_a <=> $int_b;
    if (length($alph_a) and not length($alph_b))
    return -1;
    if (not length($alph_a) and length($alph_b))
    return 1;
    if ($alph_a ne $alph_b)
    return $alph_a cmp $alph_b;
    return 1 if defined($dash_a) and not defined($dash_b);
    return -1 if not defined($dash_a) and defined($dash_b);
    if (defined($dash_a) and defined($dash_b))
    my $dash_cmp = $dash_a cmp $dash_b;
    return $dash_cmp if $dash_cmp != 0;
    return $len_a <=> $len_b if not $len_a == $len_b;
    return $rel_a <=> $rel_b;
    Save it as "list_pkgs", make it executable and then run it with
    ./list_pkgs /var/cache/pacman/pkg
    It should spit back a list which contains all packages in the cache which are currently uninstalled, minus any packages which are dependencies of others. To install those packages, combine it with pacman:
    pacman -S $(./list_pkgs /var/cache/pacman/pkg)
    This doesn't completely solve the issue of explicit versus implicit installation, but I expect that this would be more manageable than installing everything explicitly. I've commented on lines which can be uncommented to get a simple list which ignores dependency relationships.
    Btw, the script isn't really as long as it might look. The compare_versions function, which I copied over from another module, nearly doubles the size of the script.
    *edited for typos*
    Last edited by Xyne (2009-06-26 04:30:12)

  • Roaming Profiles hiding desktop shortcuts from programs that are not installed on PC

    Hi Technet, 
    I am in the middle of a GPO review and I am making a few changes to the roaming profile policy on my network. It is currently working but I have come across an issue that I am unsure how to correct. I am trying to hide desktop shortcut
    that are not installed on the end users PC while roaming profiles is enabled. 
    Let me explain further
    Let’s say I have two PC but with different program installed (as an example one PC has Adobe Photoshop and one does not) I want the end user to be able to log into both PC and only see desktop shortcuts that match the software which is
    installed on that PC but while using a roaming profile. Currently when the user logs into the PC that doesn’t have Adobe Photoshop installed they are presented with a blank desktop icon as the roaming profile has cached this icon from the first PC. Is there
    a way to hide program icons that do not exist on another PC while still using roaming profiles.     
    Any assistance would be most appreciated. 
    Thanks Nick 

    > Let’s say I have two PC but with different program installed (as an
    > example one PC has Adobe Photoshop and one does not) I want the end user
    > to be able to log into both PC and only see desktop shortcuts that match
    > the software which is installed on that PC but while using a roaming
    > profile.
    Remove all related shortcuts from the user's desktop dir and recreate
    them on the all users desktop dir. These will NOT roam :)
    Martin
    Mal ein
    GUTES Buch über GPOs lesen?
    NO THEY ARE NOT EVIL, if you know what you are doing:
    Good or bad GPOs?
    And if IT bothers me - coke bottle design refreshment :))

  • Why my apps are not transferring from PC to iPhone 5? When I connected to PC the icon shows when I select apps it show 'will install' but it never show on iPhone, I re installed iTunes, deleted all apps and downloaded again but its not working pls help.

    Why my apps are not transferring from PC to iPhone 5? When I connected to PC the icon shows when I select apps it show 'will install' but it never show on iPhone, I re installed iTunes, deleted all apps and downloaded again but its not working pls help.

    Next time an app update gets stuck try a reset. Press and hold both the home and power buttons for10-15 seconds till the Apple logo appears. Then release both buttons. Wait till your iPad starts on it's own. Try now. Also YouTube is still available. If you can't find it the the app store go to the bottom of the app store page and tap purchased. All your deleted apps will be listed and you can reinstall YouTube from there.

  • I have got a lot of apps, which are not installed on any of my iDevices anymore. is there a possibility to remove all those apps from iTunes without searching which ones are, and which ones aren't installed on one of my iDevices?

    I have got a lot of apps, which are not installed on any of my iDevices anymore. is there a possibility to remove all those apps from iTunes without searching which ones are, and which ones aren't installed on one of my iDevices?

    Assuming all the device(s) have been synced to this computer as its Home computer. The easiest way would be to delete all the apps from iTunes. After which connect your device(s) to the computer (iTunes) and transfer purchases from the device(s) by right click (control click) the device name in the left sidebar and the click transfer purchases. When done only the apps on your device(s) will be in you iTunes library.
    Hope that helps

  • [svn:fx-trunk] 8417: Remove themes from the package that are not compiling cleanly

    Revision: 8417
    Author:   [email protected]
    Date:     2009-07-07 04:50:21 -0700 (Tue, 07 Jul 2009)
    Log Message:
    Remove themes from the package that are not compiling cleanly
    bug: https://bugs.adobe.com/jira/browse/SDK-21144
    qa: yes
    doc:
    checkintests: pass
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-21144
    Modified Paths:
        flex/sdk/trunk/build.xml

  • SCCM 2012 SP1 drivers are not installed

    Hi
    I've the problem that drivers are not installed by PXE staging. I'm 100% sure I've the correct drivers. I've installed them over a pendrive without any problem but, SCCM doesn't install any driver, also I receive no error message. I see that the drivers
    are downloaded during the staging process but after the driver installation step nothing is installed. I have this problem on all hardware types and devices. It's ever the same. The task sequenze is also correct. We checked that again and again.
    First I loaded the whole driver package (including all drivers for this hardware tag) => dosen't work.
    Have deleted all drivers and assigend just the exact network driver to the categorie ==> dosen't work.
    Had also an SCCM specialist in the house which analyzed this issue but, he also cannot explain what could be the reason. He has never seen such a problem and he has installed a lot of SCCM2012 environments.
    Has anyone an idea or maybe similar problems?
    Thank you!
    Sacha

    Hello Andre,
    I got now an answer from Microsoft. It really seems like the setup installation is no longer supported for Windows 7 like Thomas said.
    The better formulation in the WhatsNew in SP1 (http://technet.microsoft.com/en-us/library/jj591552.aspx#BKMK_WhatsNewSP1_Software) would be:
    The build and capture task sequence was updated to apply an operating system image instead of running Setup.exe for installation. You can only
    still run Setup.exe for Windows 8 deployments by editing the task sequence in the task sequence editor.
    First I thought this would be a joke but seems so. I was able to very that it will work if you use an image. With the image all drivers were installed and the task sequence ended without any error.
    I loaded the install.wim from the original CD as image install and used the OSDPreserveDriveLetter setting like Thomas said.
    I asked Microsoft for an official statement if this install type would be supported by Microsoft or what the recommended way is to create the golden image by using SCCM. At the moment I’m waiting for the final answer. I don’t want to use
    unsupported installation methods for my customers.
    I will post the answer from Microsoft after I got it.
    We all could be happy that we now have Windows 8 and all Company want to install Windows 8 at all systems otherwise we have to wait until we get a supported way. ;.)
    regards
    Christoph

  • AAMEE packaged suites are not including Acrobat Professional X

    I've been using the AAMEE tool to package all of our CS5 and CS6 media.  Overall, I haven't had many issues.
    Unfortunately, an end-user has noticed that our larger suites (Design and Web Premium CS6, Master Collection CS6) are not installing Acrobat X Professional. All other applications from these suites are installed and in work without a hitch.
    I repackaged the software to ensure I didn't accidentally uncheck the box to include Acrobat.  I am definitely requesting the AAMEE software to include Acrobat.
    Additioanlly, I'm noticing that the payloads in the created package don't even include Acrobat (although they are included in the downloaded media), so it's no surprise the MSI file is not installing the product.
    I am package the software using AAMEE 3.1.108.  No errors in the installation log.
    I appreciate any insight!

    Hi,
    The reason acrobat is not getting installed is because the Acrobat is not the part of the main MSI. The acrobat goes in the Exceptions folder of the AAMEE created package and that needs to be installed separately using the exception deployer Application (XDA). The exceptionDeployer.exe is also present in the exceptions folder. You need to invoke it in pre mode for Acrobat installation, then install the main MSI and then invoke ExceptionDeployer.exe once again in post mode to install remaining exceptions. The documentation of Exception deployer is present at http://wwwimages.adobe.com/www.adobe.com/content/dam/Adobe/en/devnet/creativesuite/pdfs/Ad obeExceptionsDeployer.pdf . Please go through this once to see the exact command line to be used for Acrobat installation and for other exceptions too.
    Feel free to revert back in case you see some issue.
    Thanks
    Saransh Katariya | Adobe Systems | [email protected]

  • "One or more field types are not installed properly" when I try to add a second discussion board web part to a page

    I have a SharePoint 2010 site with two discussion boards. I added one additional field to each of the boards: a lookup to another list to link the discussions to individual projects. I need 2 different boards because they have different posting permissions
    (one is open to all for comments, and one is open only to the project team to post but everyone can read).
    When I go to the pages for each of the discussion boards, they work fine.
    But I'm putting together a page for individual projects, and want to have web parts for both discussion boards on the same page, showing the discussions related to the selected project.
    I am able to add one of the discussion boards to a web part in the page, but when I add the second discussion board to the page, the new web part contains:
    One or more field types are not installed properly. Go to the list settings page to delete these fields.
    Correlation ID: blah blah blah
    I've searched for similar postings, but mostly I see this error message related to migration from 2007 to 2010 -- this is not the case here: I created both discussion boards, and the whole site, in SP 2010. I've also found this message related
    to coding errors using SPQuery. I am not doing any coding here, just using the built-in SharePoint 2010 Edit Page -> add a web part -> select the discussion list.  I tried doing it from SPD with the same result. 

    I figured it out. I was using ?FilterField1=fieldname&FilterValue1=value on the URL to the page to pick out one project number. The web part I was trying to add was for a list that did not have that particular fieldname. I didn't realize that would matter
    since I was using the Connections -> Get Filter Values From to get my filter values from the main web part, which does have that fieldname.
    I added a field with that fieldname to the other list and set a workflow to copy the lookup value of the project number lookup field into the new field. Now all is working fine.  Sorry for the wild geese in my original question.

  • One or more field types are not installed properly. Go to the list settings page to delete these fields. nativehr 0x81020014 /nativehr nativestack /nativestack

    Hi ,
    I am working in sharepoint 2013, This is a custom timer timer Execute method where i am moving a document item from one library to other once its expired,it was running fine and suddenly giving following error:-
    One or more field types are not installed properly. Go to the list settings page to delete these fields.<nativehr>0x81020014</nativehr><nativestack></nativestack>
    StackTrace = "   at Microsoft.SharePoint.SPGlobal.HandleComException(COMException comEx)\r\n   at Microsoft.SharePoint.Library.SPRequest.GetListItemDataWithCallback2(IListItemSqlClient pSqlClient, String bstrUrl, String bstrListName,
    String bstrViewName, String bstrView...
    I have filled all the meta data(site column) for the item but still same error, Please help me out as i have no clue why it is giving this error
    public override void Execute(Guid targetInstanceId)
    SPSecurity.RunWithElevatedPrivileges(delegate()
    using (SPSite site = new SPSite(sourceUrl))
    using (SPWeb web = site.OpenWeb())
    //gets the document lib
    SPList listFrom = web.Lists[sourceList];
    //gets the expired documents items
    SPQuery query = new SPQuery();
    query.ViewFields = "<FieldRef Name='Expiration_x0020_Date'/>";
    query.Query = @"<Where><Leq><FieldRef Name='Expiration_x0020_Date'/><Value Type='DateTime' ><Today /></Value></Leq></Where>";
    SPListItemCollection items = listFrom.GetItems(query);
    //if expired items found
    if (items.Count > 0)
    SPFile oFile = null;
    foreach (SPListItem item in items)
    string strfile = item.File.Name;
    oFile = web.GetFile(sourceList + "/" + strfile);
    //oFile.CopyTo("Archive/" + strfile);
    oFile.MoveTo(destinationList + "/" + strfile);

    Hi,
    I think the issue is related to the internal name of the Expiration Day.
    In the caml query code lines, we should use the right internal field name to retrieve and filter the list items.
    To avoid such mistake, we can use the CAML Designer tool to generate the caml query code.
    We can download the tool here: http://www.camldesigner.com/?p=594
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • "One or more field types are not installed properly. Go to the list settings page to delete these fields" while accessing website pages

    We have a publishing website in SharePoint 2010. There are total 4 environments - Development, Test, Stage and Production. For some enhancements, we had to create some new lists and libraries. When we moved changes from Development to Test environment, everything
    worked fine. Relevant lists and libraries in lower environments were saved as templates (in .stp format) including content, imported to higher environment, lists/libraries were created in higher environment using imported templates. 
    Things worked fine from Development to Test. We did similar exercise from Test to Stage environment. Now in Stage, when we access some pages, we get error message - "One or more field types are not installed
    properly. Go to the list settings page to delete these fields.". ULS logs don't tell which exact list has got problems. 
    On searching for this error, I got many articles that explain how this could happen when we migrate from SharePoint 2007 (MOSS) to 2010. Though our case different (as all our environments are in 2010), we still tried following steps. 
    De-activate 'SharePoint Server Publishing Infrastructure' Site Collection feature
    Go to https://site-name/relationships%20list/allitems.aspx. This is a hidden list. Delete this list. 
    Re-activate 'SharePoint Server Publishing Infrastructure' Site Collection feature.
    Make sure that new hidden list with one item is created at https://site-name/relationships%20list/allitems.aspx
    However, this didn't help as we are still getting same error message. Appreciate if someone can suggest how this issue can be resolved. 
    Following are ULS logs:
    Unable to execute query: Error 0x81020014
    One or more field types are not installed properly. Go to the list settings page to delete these fields.
    System.Runtime.InteropServices.COMException: One or more field types are not installed properly. Go to the list settings page to delete these fields.   
     at Microsoft.SharePoint.Library.SPRequestInternalClass.GetListItemDataWithCallback2(IListItemSqlClient pSqlClient, String bstrUrl, String bstrListName, String bstrViewName, String bstrViewXml, SAFEARRAYFLAGS fSafeArrayFlags, ISP2DSafeArrayWriter pSACallback,
    ISPDataCallback pPagingCallback, ISPDataCallback pPagingPrevCallback, ISPDataCallback pFilterLinkCallback, ISPDataCallback pSchemaCallback, ISPDataCallback pRowCountCallback, Boolean& pbMaximalView)    
     at Microsoft.SharePoint.Library.SPRequest.GetListItemDataWithCallback2(IListItemSqlClient pSqlClient, String bstrUrl, String bstrListName, String bstrViewName, String bstrViewXml, SAFEARRAYFLAGS fSafeArrayFlags, ISP2DSafeArrayWriter pSACallback, ISPDataCallback
    pPagingCallback, ISPDataCallback pPagingPrevCallback, ISPDataCallback pFilterLinkCallback, ISPDataCallback pSchemaCallback, ISPDataCallback pRowCountCallback, Boolean& pbMaximalView)
    Thanks!

    Hi Shrishail ,
    Some time this issue occurs if you have any custom filed types in the list or library and that field type is not installed on server .
    Can you please check that if you are having any custom field types column on the list and library and if that is the case you need to install that field type on the server. sometimes it happens if field types are not properly deployed / Installed then
    you have to uninstall that field types (retract solution) and deploy it again.
    Thanks,
    Ujjwal

  • I have a HP-6210 Laptop with Windows 8.1 ... and Videos are not playing from youtube espn etc

    I have a HP-AMD A4-6210 Laptop with Windows 8.1 ... and Videos are not playing from youtube espn etc
    This question was solved.
    View Solution.

    Hi,
    Try a clean installation of the flash plugin/activeX as follows.
    First, download the Flash uninstall utility on the link below and save it to your Downloads folder.
    Flash Player Uninstaller.
    When the download has completed, close all browser windows, open your Download folder and run the uninstaller.  After this has completed, restart the notebook.
    When windows has reloaded, download and install the latest version of Adobe Flash.  Note: You may want to deselect the option to include McAfee Security Scan Plus before downloading.
    When the installation has completed, restart the notebook.
    If the above doesn't correct the issue, then try the following.
    First of all, download and run the Shockwave uninstaller on the link below.
    http://fpdownload.macromedia.com/get/shockwave/uninstall/win/sw_uninstaller.exe
    After this has completed, restart the notebook.
    When windows has fully reloaded, download and install the latest version of Shockwave on the following link.
    http://get.adobe.com/shockwave/
    Again, after this installation, restart the notebook.
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • How do I install purchased apps on ipad2?  It says I have purchased the apps but they are not installed.

    I have just purchased an ipad2 and purchased 2 apps.  This is my first ipad.  The ipad says I have purchased these apps but they are not installed. I don't know how to install them.  Also I can only see them if I go to either the app store or the game center and click on purchased.  I would like them to show up on screen that shows when I open the ipad but maybe that only happens when they are installed?

    Did you purchase them directly on the iPad or on your computer's iTunes ? If on your iPad in the App Store app then have you checked to see if they are on a different homescreen by swiping the homescreen to the left ? If they are on a different screen, and there are spaces on the first homescreen then you can move them :
    Touch and hold any icon for a couple of seconds until the icons jiggle .
    Arrange the icons by dragging them (don't drag too quickly). You can't leave gaps between icons on a page
    to move them to a different screen drag them (not too quickly) and then hold them so that they are overhanging the edge of the screen - after a couple of seconds or so the display should change to the next/previous screen (depending on which edge you are holding it) and you can then place the icon.
    Press the Home button to save your arrangement.
    If you downloaded them on your computer then you can either connect your iPad to your computer and sync them across, or go into the App Store app on the iPad and re-download them via the Purchased tab (http://support.apple.com/kb/HT2519)
    You can download a copy of the iPad manual from here http://support.apple.com/manuals/#ipad

Maybe you are looking for

  • Error in tutotial "How to ...  Build a Web Dynpro Application"

    Hi, I deployed this tutorial in my WAS 6.40 and had the configuration in the SLD and in the Jco connection. When I tried to execute it I received the messages below: Error stacktrace: com.sap.tc.webdynpro.services.exceptions.WDTypeNotFoundException:

  • Plugin Register Error - Assembly file name is in invalid format. Only file name is allowed.

    Hi, when I add a step in a plugin registered in disk using the 2013 or 2011 tool for CRM 2013. it got a error as below. Assembly file name is in invalid format. Only file name is allowed. Anyone know this? thank you. Detailed log as below Unhandled E

  • Send a mail with ppt file as an attachment

    Hello,   I need to send an email which has a PPT file as an attachment. The file is on the hard drive of computer. I tried SO_DOCUMENT_REPOSITORY_MANAGER  FM. It is asking for a dialog box but I need to design a scheduler which will send this email.

  • Using accents/special characters in keyboard WAY TOO SLOW!

    I'm often using french, and thus many words have many accents (just a short phrase exemple : l'été passé j'ai dû boire l'amère potion de la déception... A short sentence, 5 accents. Can be worse). I'm typing pretty fast, and already getting frustrate

  • Data upload through IDOC

    Hi Friends,                I want to upload data to ME01 (source list) and ME11 (info record) transaction using IDOC please guide me how to handle it programatically. Thanks in Advance Gayathri