How to remove bought app from app store 'archive'

since a while in the App store (both on iPhone or on the computer) it's possible to re-install old purchases of apps that you once downloaded and deleted. that's cool.
more than two years ago i downloaded viber, deleted it, never re-installed or used it again.
now a friend bought a smartphone, installed viber, and his viber app tells him i'm one of the 10 people out of all his phone contacts that is using viber.
when he tries to message or call me of course it doesn't work, but still i'd love to have myself removed from the servers of viber, so that people don't see me anymore as one of their contacts so called using viber.
i found an article (in Dutch) here that explains me how to remove viber from showing up in the "all purchases - not on this iPhone" part of the app store, but it explicitly tells that won't have my Apple ID disconnected from the app, it will just hide the app (it even explains how to make it show up again too)
can somebody please tell me how i CAN have this purchase removed from my apple ID history - and thus hopefully have my 'link' removed at the Viber servers
much thanks in advance!!

You cannot
You can only hide it.
The entire point of this service is that you ahve acces to all prior purchases.

Similar Messages

  • HT201209 How to remove residue app store cards

    I don't remove residue app store cards!

    If you want to remove the balance from your account so that you can change countries then you can try contacting iTunes Support and ask if they can remove it for you : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption
    If you are asking something else ... ?

  • How do I remove my App store information from a Mac about to be sold

    How do I remove my App Store information from
    a Mac about to be sold ?

    Before you sell or give away your computer, in addition to the steps mentioned in this support article, take these steps:
    Run Apple Diagnostics or the Apple Hardware Test. The buyer will do this (or he should), and you don't want to be surprised by the results.
    Reset the PRAM and the SMC, which might contain personal information.
    If you set a firmware password, remove it by running Firmware Password Utility in Recovery mode.
    If you activated FileVault in OS X 10.7 or later, turn it off.
    If you use Boot Camp, the partition must be deleted.
    If you created any other data partitions on the internal drive, remove them in Disk Utility.
    Erase the data partition(s) with the option to zero out data. An SSD doesn't need to be zeroed.
    You can't legally or practically transfer any software downloaded from the Mac App Store to the new owner of the machine, even if it was free. That includes OS X, so if you upgraded to OS X 10.7 or later, you must reinstall an older OS, either from the installation media, if applicable, or by starting up in Internet Recovery mode (option-command-R at the startup chime.) If you installed from physical media, deliver those to the new owner.
    If you're selling the machine, or donating it in working order, and it originally shipped with OS X 10.4 or 10.5, then you have the option of installing either from the discs that came with it or from a retail Snow Leopard disc (which you must then transfer with the machine.) The buyer should understand that if he doesn't get the original discs from you, he won't get the bundled iLife applications or the Apple Hardware Test. Replacements for the original discs can be ordered from Apple.
    The new owner will have to redownload any software that came from the App Store, including OS X upgrades, under his or her Apple ID. If you ever updated the bundled iLife applications (Garage Band, iMovie, and iPhoto) through the App Store, you can't transfer those either.
    Remove the machine from your list of registered products. If it's still covered by an AppleCare Protection Plan, transfer the coverage to the new owner by following the instructions in the AppleCare Terms and Conditions (under the heading "Transfer of Plan.")

  • Remove non app store application from Launchpad Mac OS X v10.7.2

    As I remember, to remove app from lunchpad in mac os x lion 10.7.1, I just have to drag the app from the lunchpad to trash. But in mac os x 10.7.2, i couldn't do that anymore. How to remove the app actually?

    The firmware in Apple's sytems for the past few years disallow the user from running or installing a version or build of OS X that predates the original version and build that came on the computer when it shipped. This is to prevent situations wherein the OS doesn't have the requisite drivers to support the graphics subsytem or other components crucial to functioning.
    The current build in the online store is much earlier than the version that shipped on your 2012. It is likely that the only build you will be able to use on your machine, that you could directly download form the online store will be Mountain Lion, when it becomes available.
    As such, if you need to restore the system before then, you will need to use the Recovery Partition on your system, or Internet Recovery, to reinstall the OS.

  • How can I completely remove my App Store purchases ?

    How can I completely remove my App Store purchases ? I delete certain apps from the iPod but they still are listed under 'purchased apps'.
    I need to completely remove then from history as well

    You can't permanently delete any items from you purchase history, all you can do is hide them so that they don't show in the Purchased tab for re-downloading : hiding and unhiding.

  • I just bought my iPad air and I would like to know how to get the App Store on it

    I just bought my iPad air and I would like to know how to get the App Store on it?

    It is included.

  • How to remove an app from my printer

    How to remove an app from my hp5510 printer

    EdnaM,
    Below are a few instructions that should help you with your issue:
    Log into your ePrintCenter account at HP ePrintCenter .
    Click the Printers tab, and then click My Print Apps .
    Place your mouse over the Print App that you want to remove, and then click Remove .
    If you have any further question feel free to repost!!!! Hope all goes well!!!!
    If I have SOLVED your issue, please feel free to provide KUDOS and make sure you mark this thread as SOLUTION PROVIDED!
    Although I work for HP, my posts and replies are my own opinion and not those of HP.

  • [iPhone development] How to load the App Store directly from an app?

    I need to figure out how to load the app store from one of my applications by clicking a button. The code is relatively easy to load say a website. But when I use this code:
    -(IBAction)goToAppStore;
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://itunes.com/apps/appname"]];
    it does not work, because it says too many redirects occurred.
    Is there a way to load the app store (and load into a specific app info view) directly from the app, instead of loading a website to load the app store?
    Thanks very much,
    LOQ123

    Thank you.
    But I using the one line code I had too many redirects. So, I needed the latter code, which didn't load the app store until all the redirects have happened. Unfortunately I don't understand this code:
    // Process a LinkShare/TradeDoubler/DGM URL to something iPhone can handle
    - (void)openReferralURL:(NSURL *)referralURL {
    NSURLConnection *conn = [[NSURLConnection alloc] initWithRequest:[NSURLRequest requestWithURL:referralURL] delegate:self startImmediately:YES];
    [conn release];
    // Save the most recent URL in case multiple redirects occur
    // "iTunesURL" is an NSURL property in your class declaration
    - (NSURLRequest *)connection:(NSURLConnection *)connection willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)response {
    self.iTunesURL = [response URL];
    return request;
    // No more redirects; use the last URL saved
    - (void)connectionDidFinishLoading:(NSURLConnection *)connection {
    [[UIApplication sharedApplication] openURL:self.iTunesURL];
    I'm know where to implement the code, however I don't know where to put my link in inside the specific code up above.
    Please help me
    Thanks very much

  • HT2534 How to change an App Store from US to South Africa

    How to change an App Store from US to South Africa

    Unknown 1234 wrote:
    I have a voucher it will only work in the French app store and I am in the Australian app store how do I change it to the french store
    iTunes Gift Cards are only Valid in Country of Issue
    Sorry... But... You cannot use other countries itunes stores.
    You must be within the Country with a Valid Billing Address and Credit Card for that Country to use the iTunes Store of that Country..
    iTunes Store Terms of Service
    http://www.apple.com/legal/itunes/us/terms.html#SERVICE

  • How do you remove credit card from apple store ios7

    How Do You Remove Credit Card From Apple Store With IOS7

    After establishing the Credit Card account (i.e. after you have made purchases), you can remove the credit card information by editing your payment info, choosing "None".
    Settings>iTunes and App Stores>Apple ID>View Apple ID>Sign-in>Payment Information

  • How can you download App Store  on iTunes?

    How can you download App Store on iTunes

    App Store is preinstalled and cannnot be removed from iOS so there is no need to download it. If you don't see it, check to be sure that restrictions are not.

  • How can i register app store without credit card

    how can i register app store without credit card

    You need to follow the instructions on this page when creating a new account : http://support.apple.com/kb/HT2534
    If you don't use those instructions when creating an account then you will need to enter credit card details (which you should be able to remove after entering it) before the account can be used to download any item from the store.

  • Can someone tell me how to restore my App Store and iTunes Apps on my iPad 2?

    Can someone tell me how to restore my App Store and iTunes Apps on my ipad 2?

    If you had a backup either in iTunes or iCloud of the iPad you can restore from it by following this article:
    iOS: Back up and restore your iOS device with iCloud or iTunes
    If not you can go into the Purchased section of the App Store App, and download your Purchased Apps from there for free. However their data will not be restored.

  • How to verify my app store account without having to use a credit card ?

    How to verify my app store account without having to use a credit card ?

    - Whenn Yhuu First Gett A Iphonee &&'d Wanna Set Uhpp A App Storee Account Will Thee Credit Card Stuff Bhee Ohnn There ?'. &&"d Do Yhuu Havee oo2 Confirm Thee Apple Account From Yahoo .com ?'.
    Some Plz Help Lbvs I'vee Madee Likee 5 Alreadyy Ihmm Neww Do Ihtt '.

  • HT1848 how to download the app store?

    how to download the app store on iphone4 ?        

    The App Store app is on your iPhone now and cannot be removed, so there's nothing to download. If you can't find it, it may be on another home screen or inadvertently hidden in a folder. Either do a search for it or try the Reset Home Screen Layout in the Settings/General/Reset area. Also, check the Restrictions to see if purchasing apps has been turned off, and if so turn that back on.
    Regards.

Maybe you are looking for

  • Table hierarchy in a schema

    Hi, How to find the tables hierarchy in a schema? the output show independent tables first then primary key tables then foreign key tables. I am not asking for single table.we need overall the tables in a schema in hierarchy manner.

  • Dual Core Macbook (2006) and Snow Leopard

    I was ready to pre-order Snow Leopard, but now I'm not sure. I accept that it won't work with my ancient G4, or my old Mac Mini. But ... My wife's Macbook has Dual Core 2. No problem. Mine, however, is the very first Macbook - with only a Dual Core p

  • How do I correct a typo on my id address?

    How do I correct a typo on the ID address?

  • Using mysql jdbc driver leads to exception

    I try to use com.mysql.jdbc.Driver with JDeveloper 9i business components. The following is the code I use to test if mysql driver works with business components: package test; import oracle.jbo.*; import java.util.Hashtable; import javax.naming.*; p

  • "Missing InfoCube 0COPA_C01 in Version A" during migration to BI7.

    Hi, I get "Missing InfoCube 0COPA_C01 in Version A" error message when trying to migrate ZCOMP_CODE Object ( in RSEC_MIGRATION program) when migration from BW3.5 to BI7.0. Does anybody have an idea how I could fix this issue. Thanks, Sruthi.