My app doesn't show up on Windows Store

Hi. I published an app and then removed the app's listing for a reason. After a few minutes, I restored the app's listing. Everything seems okay but whenever I clicked the link of my app, the website says "This product is not available". MSDN says
that it make take a while to list the app again in the Store. However, it has been one day, still no fix. No one can download my app. What should I do?

Hello hvarlik,
If your app is still not available in the store please reach out to
Dev Center Support.
-Miles
Windows and Windows Phone Dev Center Support
Send us your feedback about the Windows Platform

Similar Messages

  • I can't open my iPod library in iTunes, the app doesn't show the device at all, no error message, nothing, but windows 8 opens it like it would a flash drive. It has worked for me before just fine and both have the most updated software versions.

    I can't open my iPod library in iTunes, the app doesn't show the device at all, no error message, nothing, but windows 8 opens it like it would a flash drive. It has worked for me before just fine and both have the most updated software versions. HELP PLEASE!

    yeah i plugged in my iphone to my computer and itunes does not even notice that i plugged it in.

  • Our app doesn't show in some regions. Any ideas why?

    Hello.
    Our recently published Windows Phone app doesn't show in some regions.
    The app is free. During the publishing I have selected "Distribute to all markets at the base tier".
    But I can't see the app in Lithuanian, Latvian or Russian Windows Phone store. Any ideas why?
    It is visible in other stores - USA, Germany, Poland, Spain, Belgium...
    App name is "Kinetic Puzzle - Animals". Below are a few examples:
    Visible:
    http://www.windowsphone.com/en-us/search?q=kinetic+puzzle
    Not visible:
    http://www.windowsphone.com/ru-ru/search?q=kinetic+puzzle
    Any ideas why? We have spent half of a day trying to find where is the problem, but with no luck. Any help highly appreciated.

    Though its there, just not visible in search , try these : 
    For Russian marketplace :
    http://www.windowsphone.com/ru-ru/store/app/kinetic-puzzle-animals/ea5dd18e-147a-4ce8-8924-9052675935bf
    For Latvian marketplace :
    http://www.windowsphone.com/lv-lv/store/app/kinetic-puzzle-animals/ea5dd18e-147a-4ce8-8924-9052675935bf
    You can obviously raise the issue on Windows Phone app store support.
    http://developer.nokia.com/community/wiki/Using_Crypto%2B%2B_library_with_Windows_Phone_8

  • My weather app doesn't show the feels like temp or wind, etc.  How can I fix this?  I am running iOS 8.1.2

    My weather app doesn't show the feels like temp or wind, etc.  How can I fix this?  I am running iOS 8.1.2.

    is that really what it is?  this is the native iphone weather app.  the funny part is that when i use the actual weather channel app, it does provide it.
    is this an api issue with the weather channel and the iphone then?  i guess there's no fix?
    thanks for your help by the way.

  • IPhoto app doesn't show any photos from my photos app

    I just upgraded my new iPad to iOS 6 beta. Maybe that's the problem but suddenly my iPhoto app doesn't show any photos at all. All the tabs (albums, photos, events, etc) are empty.  When I open the app it says "updating photo library" briefly, but that's it. I tried rebooting, deleting the app and reinstalling it, basically everything I could.  Is this a known iOs6 bug?

    Ok, I have the release and I have the issue, photos are just boxes w no pictures, is there a way to remove library and reload? The photo app works fine and all pictures are there.

  • News feed on my Facebook app doesn't show the correct time. Can the time be set?

    News feed on my Facebook app doesn't show the correct time.  Can the time be set?

    Does your phone show the correct time?
    If not, change the time on your phone, see if it helps.
    If it does, then sign out, sign back in. If that fails, the delete and reinstall. If that fails, then contact Facebook, as they're the developers of the app and will have the proper documentation to help you further.

  • Does anyone know how to get the notification screen in iOS 7 to show the weather?  Not showing on my phone, and the weather app doesn't show in the notification dialog.

    I am not seeing the weather in the notifications for 'today'.  The weather app doesn't show up in the notifications dialog either.  What to do?

    Pappasbike wrote:
    First make sure that Weather is listed in Notification Center, mine is a the very end of the list. If it's not go below to the Do Not Include list and see if it's there. If it is manually turn it on to appear in the main list.
    Now when I swipe down from the home screen I get the date and any Today events, and below that a weather forecast stating the high and low for the day. If none of that is showing try shutting down and restarting your phone and see if that appears also make sure the Weather app is on one of your home screens, launch it from there and that alone may set everything up.
    The weather app is just not listed.  I did a soft reset, no improvement.  I'm at a loss for anything else to try.  Since the app is a system app, I can't delete and reload it.
    This is hardly an earthshattering problem, but it bugs me.

  • Printer Status in the Device Printer screen shows "Status: Device app install incomplete. Go to Windows Store for details."

    Tried to Print from Outlook, got printer error couldn't print, so went to Device and Printers screen, selected printer and it shows that the Status "Status: Device app install incomplete. Go to Windows Store for details."
    No answers in Windows store (LOL) did the trouble shooting tool and get 
    getting error 0x803C010B while runing printer troubleshooter. 
    Anyone know what MS is trying to say?

    Hi luke, I tried your script. However, it seems that once in a while srvnet crashes during the restart. Can you help me on this? Chris
    Hi Chris
    Not sure why that would be but - you could add some error-checking logic to the script to test whether srvnet has successfully started, and then if it hasn't - attempt to restart it again. I haven't tested this code because I haven't had that issue, but something
    along the lines of:
    @echo off
    set logfile="%TMP%\srvlog.txt"
    if exist %logfile% goto begin
    echo [%date:~4,10% %time%] logfile created>%logfile%
    :begin
    echo -->>%logfile%
    echo [%date:~4,10% %time%] srvnet check triggered>>%logfile%
    openfiles /Query 2>NUL | FIND /C "INFO: No shared open files found" >NUL
    if errorlevel 1 goto yes_opens
    echo [%date:~4,10% %time%] no open files, proceeding to check for srvnet driver block>>%logfile%
    powercfg -requests | find /C "[DRIVER] \FileSystem\srvnet" >NUL
    if errorlevel 1 goto no_srvnet_block
    echo [%date:~4,10% %time%] **block detected, restarting srv**>>%logfile%
    net stop /y srv >NUL 2>NUL
    ping -n 5 -w 1000 127.0.0.1>NUL
    sc query srv | find "RUNNING" >NUL 2>&1
    if errorlevel 1 goto SrvNotRunning
    goto :eof
    :SrvNotRunning
    echo [%date:~4,10% %time%] **srv did not autostart, attempting manual start**>>%logfile%
    set cnt=0
    :wait1
    if %cnt% GEQ 5 goto SrvCantStart
    set /A cnt+=1
    echo [%date:~4,10% %time%] **waiting for SRV service to start [%cnt%]**>>%logfile%
    sc start srv >NUL 2>&1
    ping -n 2 -w 1000 127.0.0.1>NUL
    sc query srv | find "RUNNING" >NUL 2>&1
    if errorlevel 1 goto wait1
    echo [%date:~4,10% %time%] **SRV service is now running**>>%logfile%
    goto :eof
    :SrvCantStart
    echo [%date:~4,10% %time%] **Tried 5 times to start SRV but failed**>>%logfile%
    goto :eof
    :yes_opens
    echo [%date:~4,10% %time%] open files detected, not restarting srv>>%logfile%
    goto :eof
    :no_srvnet_block
    echo [%date:~4,10% %time%] no srvnet block detected, not restarting srv>>%logfile%
    goto :eof
    Let me know if that works better for you!

  • I updated my iOS to 7 yesterday. But my music app doesn't show the 'Radio' button as the online videos and Apple website claims. What could be the reason and how to fix it. All other apps, swipe up/down seem to be working fine.

    I updated my iOS to 7 yesterday. But my music app doesn't show the 'Radio' button as the online videos and Apple website claims. What could be the reason and how to fix it. All other apps, swipe up/down seem to be working fine.

    Try to connect in recovery mode, explained in this article:
    iOS: Unable to update or restore
    Before that, back up your device, explained here:
    iOS: Back up and restore your iOS device with iCloud or iTunes
    How to back up your data and set up as a new device
    You can check your warranty status here:
    https://selfsolve.apple.com/agreementWarrantyDynamic.do

  • Since updating to OS7 the video app doesn't show any titles for movies I have downloaded on my iPad. Anyone have the same problem or a fix?

    Since updating to OS7 the video app doesn't show any titles for movies I have downloaded on my iPad. Anyone have the same problem or a fix?

    Many users have solved the problem by syncing several times; and if that doesn't work, perform a simple restore. Your titles will come back.

  • Console.app doesn't show up (window)

    Hi,
    a week or so after I've upgraded to 10.9.2 my console.app stopped opening any log file and it doesn't show even a (blank) window.
    I checked the activity monitor and it seems to be working.
    I've typed "tail -f /var/log/system.log" in a terminal window and opened the Console and it showed this lines:
            15  Foundation                          0x00007fff87c187ba -[NSNotificationCenter postNotificationName:object:userInfo:] + 68
            16  AppKit                              0x00007fff8da50cf9 -[NSApplication _postDidFinishNotification] + 289
            17  AppKit                              0x00007fff8da50a2c -[NSApplication _sendFinishLaunchingNotification] + 195
            18  AppKit                              0x00007fff8da4931a _DPSNextEvent + 1238
            19  AppKit                              0x00007fff8da48a2b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
            20  AppKit                              0x00007fff8da3cb2c -[NSApplication run] + 553
            21  AppKit                              0x00007fff8da27913 NSApplicationMain + 940
            22  libdyld.dylib                       0x00007fff89b0a5fd start + 1
    After readind some posts I've deleted com.apple.console* from ~/Library/Preferences and /Library/Preferences but no luck.
    Any idea how to solve this issue?

    Not sure if this is a typo in your post but:
    ref="networkmanagementconsole.jnlp"
    should be href= .......
    John

  • {Solved} Windows 8.1 Doesn't show users when windows loads, only shows options for accessibility and shutdown/restart

    I just recently come into a problem on a dell all-in-one, where the computer has been updated to windows 8.1 and doesn't show users, only a blue screen with the power options and accessibility options and here is how I fixed it.
    Note: you will lose your desktop apps
    1. Turn on computer and let load to the blue screen with the options
    2. While holding down shift click on the power button and then click restart (while still holding shift)
    3. Hold shift until the advanced recovery options comes up
    4. click on Troubleshoot>Refresh your PC
    5.Enter password for user account
    6. Let it do its magic

    Hi,
    Thanks for your sharing. And it will benifit others who encounter the similar issue as yours.
    This issue can be caused by corrupted winlogon components.
    You are right to refresh to repair the system.
    Kate Li
    TechNet Community Support

  • Argent help needed! Downloaded app doesn't show in...

    Need help! I downloaded Six-Guns into my newly bought NOKIA Lumia 720, but it doesn't show up in the App List, so I cannot play it nor uninstall it. Still it takes more than 800 MB and only left around 400 MB in my internal storage!!! An argent assistance is needed!!!

    Yes, it's under the Game.
    It can be better if the game also shows up in App List for my convenience.
    Cheers,
    Winston

  • Extras notes --- iPod works fine in iTunes, but doesn't show up in Windows

    Hi all!
    Gotta wierd situation.
    My iPod works fine in iTunes.
    I have had 'Enable for Disk Use' enabled for a long time. However, my iPod doesn't show up under My Computer on WinXP.
    I'd like to add some new Notes and remove some old ones, but you have to do that thru Windows, not thru iTunes.
    Any ideas how to fix this problem?

    hi marky!
    i noticed one thing. the iPod is formated as FAT32, but i have my HD in NTFS. could this be related?
    no, that one's normal. we need to leave her as FAT32. see:
    iPod no longer plays music after formatting or partitioning the hard disk
    hmmmmm. it's like the "enable disk use" setting is just refusing to stick for you.
    but maybe we've got a window of oppportunity while it's doing that initial sync. the rules seem to be different for you then.
    maybe try switching enable disk use off. then eject her, and plug her back in again (while you've got itunes already running).
    the second she shows up in the itunes sourcelist, try diving into the preferences tab, and re-enabling disk use.
    (i checked, and it's possible for me to do this with attractive beast ... hoping here that doing the "enable disk use" under these circumstances might get it to stick for you.)
    love, b

  • Apps doesn't show up in iTunes after Sync

    I synced my iPhone to a new Macbook, as my old PC had crashed, and the Apps in my iPhone doesn't show up in the iTunes. what should i do?

    Hi Ocean20,
    Thanks for your help!

Maybe you are looking for

  • Share without invitation

    Post Author: anderea CA Forum: crystalreports.com Hi, I'm interested in buying a cr.com account and I'm using trial version. I'd like to know if it's possible to share a report to everybody without inviting, just using a link (like https://na.crystal

  • Group by Address

    Hello All, I have a requirement for a report in XML publisher. We have a report which now has 15 columns and it gives the information of employees. But due to the space restriction on (A4 paper) the business wants the report in a different format. pr

  • Wrong icons on files

    Some of my files in OS 10.3.9 take on the wrong icons. Nothing I know to do straightens this out. For example, one of my pdf's currently has the custom icon from one of my jpg's iMac 400 & 600; iBook 700; Beige G3; Others   Mac OS X (10.3.9)  

  • Drop command takes time

    Dear All, I am using Oracle 9.2.0.3.0 database server. I have just issue the drop command as following: SQL> drop table bss.lookup; and I am waiting since 1 hour for the result and there is no response. Can anyone tell me what is the issue? Thanks in

  • Regarding last_day function

    Hi, in the below code SELECT ADD_MONTHS(LAST_DAY(SYSDATE), -7) + 1 AS hence_6 FROM dual; O/P 01-10-2011 12:29:31I want the o/p to be only "10-2011 12:29:31" how can i modify the above query ?