Developing apps for all windows desktop OS's

I want to develop an app in VS 2012 for windows 8 (windows store apps), 
but i have some questions and doubts that needs to be put to rest by your advice
1. Any app created in this IDE will it work on windows xp, vista and above?
2. If yes, what is the work around it for it to work on all windows platform?
3. If no, should i use win forms to develop the app i.e VS 2012 for windows desktop?
4. if i use VS 2012 for windows desktop (winforms) will be deployable on windows 8-8.1?
Thank you in advance and reply soon
Jayjay john

Windows Store Apps are only supported in Windows 8 and later (depending on what OS you target - Windows Store Apps can be targeted to 8.0 or 8.1 and likely 10 soon). They won't be able to work on Windows XP, Vista or Windows 7. There is no workaround - users
need at least Windows 8.
You could use Win Forms or WPF in order to develop Desktop Applications. Desktop Applications are still supported on Windows 8 and later. They don't however support Windows RT tablets, Windows Phones or the Xbox One.

Similar Messages

  • Adding a domain user to the admin role within the local user management breaks all metro apps for all users!!

    Hi,
    I have posted this in another large thread under the "Windows 8 General" group but have not had any appropriate feedback from MS.
    After hours of testing and working with other users I have managed to isolate a simple situation that breaks all metro ui applications within Windows 8 for all users on the machine. Here are my exact steps and notes.
    Before continuing if you are running Avast then your solution may be to turn of the behaviour shield functionality as this also breaks metro apps. This is NOT the problem we are having!
    I have performed 3 cleans installs after isolating the problem and am able to reproduce the issue every time using the same steps on two different machines. 
    First thing to say is that for us it has nothing to do with simply joining the domain, domain/group policies nor does it appear to have anything to do with the software we installed, the problem here is much more simple but the result is pretty terrible.
    Here are my exact steps of what I did to reproduce our problem:
    Complete format of HDD in preperation for a clean install
    Clean install performed
    Set up the machine initially with a local account
    Test metro apps - all working fine
    Open control panel from the desktop, click on System, change the system to join the domain, click reboot
    Log into the system using my domain account
    Test metro apps - all working fine
    Here's were the problem starts. I need my domain account to have admin rights on the local machine so I can install programs without the IT men having to come over and enter their password every 5 mins.
    I go to control panel via the desktop and click on User Accounts. From with here I then click on "Manage User Accounts". This requires the IT guys to enter their details to give me access to such functionality. This is fine
    In the dialog box that opens I can only see the local user that was initially created during setup. The "Group" for this local account shows as "Administrators" - Image included below (important to note that metro apps are working at this point)
    I click add and then add my domain account - also giving it administrator access
    Sign off or reboot to ensure the new security is applied
    Sign back in to the domain account
    Test metro - ALL BROKEN
    Sign out
    Sign in as local account
    Test Metro - NOW ALL BROKEN FOR THIS USER ALSO
    So as soon as I add my domain account to the local user accounts and set it as admin it breaks all metro apps for all users. This is on a totally clean install with nothing at all installed other than the OS.
    Annoyingly if I go back and change the domain account to a standard user or if I totally remove the domain account from the local account management system the problem does not go away for either user. basically it is now permanently broken. The only fix I
    could fathom was a full re install and not giving the domain user admin access to the local  machine.
    Screen one - this is the local user accounts window AFTER joining the domain and logging in with my domain account (All metro apps working at this point)
    Screen 2: User accounts AFTER joining the domain and AFTER adding domain account to local user management (METRO BROKEN)
    I have isolated my machine from all group policies so nothing like that is affecting me. Users I have spoken to in different companies have policies that automatically add users to the local user management. This means that metro apps break as
    soon as they join the domain which leads them to wrongly think it is group policies causing the error. Once they isolate themselves from this they can reproduce following my steps.
    Thanks

    Hi Juke,
    Thank you for the response and apologies for the delay in getting back to you. My machine was running a long task so I couldn't try your suggested solution.
    I had already tried running the registry merge suggested at the top of the thread to no avail. I had not tried deleting the OLE key totally so I did that and the problem still exists. I will post all the errors I see in event viewer below. For
    your info, since posting my initial comment I have sent out my steps to 7 different people and we can all reproduce the problem. This comes to 10 different machines (3 of them mine then the other guys) in 3 different businesses / domains. We see the same errors
    in event viewer.
    Under "Windows Logs" --> "Application" : I get two separate error events the first reads "Activation of app winstore_cw5n1h2txyewy!Windows.Store failed with error: The app didn't start. See the Microsoft-Windows-TWinUI/Operational log for additional
    information." The second arrives in the log about 15 seconds after the first and reads "App winstore_cw5n1h2txyewy!Windows.Store did not launch within its allotted time."
    Under "Windows Logs" --> "System" : I get one error that reads "The server Windows.Store did not register with DCOM within the required timeout."
    Under "Applications And Services Logs" --> "Microsoft" -->  "Windows" --> "Apps" --> "Microsoft-Windows-TWinUI/Operational" : I get one error that reads "Activation of the app winstore_cw5n1h2txyewy!Windows.Store for the
    Windows.Launch contract failed with error: The app didn't start."
    If you require any further information just let me know and I will provide as much as I can.
    Thanks

  • Sideloading metro apps for all users

    I am having problems with my sideloaded metro app…… Doesn’t seem to work anymore on any of my machines.
    For the first few months, I originally installed my Metro app by first installing the app’s signed certificate to the local machine root store (All OK), then running the following command logged on as the actual user I wanted the app run
    under.
    Add-AppxPackage
    -Path "MyMetroApp.appx"
    -ForceApplicationShutdown
    While this method sort of worked, it had two problems:
    I needed to manually renew the developer licence every 30 days running
    Show-WindowsDeveloperLicenseRegistration
    and I had to do this logged on as the user on the actual console, couldn’t to this using remote PowerShell.
    I want to install the app properly for all users without needing to keep renewing the developer license. I have now run the following to install the app for all users:
    #Allow Trusted Apps
    New-Item
    -Path "HKLM:\Software\Policies\Microsoft\Windows\Appx"
    New-ItemProperty
    -Path "HKLM:\Software\Policies\Microsoft\Windows\Appx"
    -Name AllowAllTrustedApps
    -PropertyType DWord
    -Value 1
    #Install the app for all users
    Add-ProvisionedAppxPackage
    -Online -PackagePath
    "MyMetroApp.appx"
    -SkipLicense
    This method – even though it seemed to complete successfully, a couple of issues:
    there’s no shortcut added to the start screen on one of my machines, so I can’t open the app
    I am getting a message popup upon opening my app “The app can’t open: There's a problem with {app name}. Contact your system administrator about repairing or reinstalling it. [Close].” on another machine
    Can someone please point me in right direction to get my app working again? I don’t think it’s anything major, I think I’m on the right track.

    The main steps are detailed here:
    https://technet.microsoft.com/en-us/library/hh852635.aspx
    It sounds like the app needs to be un-provisioned on your troublesome machine ?
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • Missing Feature in Lion: Expose for all Windows

    Hello!
    I've written a feedback to apple, that says it all:
    =================================================
    Since Mac OS X 10.7 (Lion) there was one Feature removed,
    which was a very important time saver for me:
    Expose for all Windows
    I'm missing this feature very much. In Mission Control you only see one window completly of every app, the other window are hidden behind. You can't entirely see, what is in that windows behind. There isn't a text Info when you float the mouse pointer over the window.
    In Mac OS X 10.6. (Snow Leopard) I loved this time saving feature. I would be so happy and grateful, if this feature were to resurface in Mac OS X 10.8. (Mountain Lion).
    Please let "Expose all Windows" return! :-)
    =================================================
    What do you think about it? Should / Could Expose return in the next Mac OS X? (I hope so)
    Greetings from Germany,
    Matthias B.

    Hello Rysz and Captfred!
    Rysz:
    I already have send this to Apple feedback.
    Captfred:
    There are two problems:
    1. I want to see all windows of all applications at once.
    2. Even the windows seperate a little bit, there are (even with only three Windows) most parts of the windows hidden because of the front window shown.
    Greetings,
    Matthias B.

  • Any way to remove all "apps" for all users?`

    I get that the new start menu is a compromise, and it's neat that it's "back."
    What I'm not clear on, is if it's possible to remove/hide the "apps" for all users.
    I'm not keen on having all users have all of these, especially in a corporate environment.
    Would be preferable to have none, except for perhaps what's "allowed" by admins.
    Standard office users, power users, devs, artists, accountants, most folks at work simply don't have a use for most of these apps. I also don't want bandwidth constantly being used by any of the live tiles. If a user wants to know the weather, they can go to
    weather.com. If they want news, this is also available via any number of sites.
    The other compromise of having apps "windowed" is also nice, but for an office environment, I just don't see people firing up a sandboxed calculator app (or, any of the other built-in ones).
    Sorry, but honestly, I'd honestly just like to know if it's possible to set up a GPO, or use some other method to get the "apps" out of the way of the "standard office user."

    Hi techresource0,
    Use export-startlayout cmdlet to export the start menu configuration first:
    Export-StartLayout
    http://technet.microsoft.com/en-us/library/dn283401.aspx
    Windows 10 Technical Preview has a new policy under start menu  and taskbar:
    Meanwhile, I have two thoughts on this if you are planning your environment:
    One: a customized image.
    Two: customize default profile.
    For the first thought, you can uninstall all provisioned windows store app and then deploy this image to your environment. Of course, you can do this in an online system as well.
    Removing Windows 8.1 Built-in Applications
    http://blogs.technet.com/b/deploymentguys/archive/2013/10/21/removing-windows-8-1-built-in-applications.aspx
    For second thought, you may prepare default profile, it would always copy to new created user profile:
    Customize the default local user profile when preparing an image of Windows
    http://support.microsoft.com/kb/973289
    Alex Zhao
    TechNet Community Support

  • Learning to develop apps for SharePoint

    Hi All,
    I am completely new to anything Dev/Code but am really interested in learning to develop apps for SharePoint (predominantly SharePoint Online).
    Does anyone have any tips or resources I could review for someone starting completely from scratch with no prior knowledge?
    Thanks in advance...
    Paul

    Hi,
    there are 2 types of apps
    for SharePoint hosted, u need to learn javascript,htlml for provider hosted apps u need to learn ASP.net MVC
    in addition to learning about SharePoint development (APIs)
    you can find the necessary courses here
    http://www.microsoftvirtualacademy.com/product-training/office-development
    http://www.microsoftvirtualacademy.com/training-topics/web-development
    http://www.microsoftvirtualacademy.com/training-topics/html5
    http://www.microsoftvirtualacademy.com/product-training/sharepoint
    Kind Regards,
    John Naguib
    Senior Consultant
    John Naguib Blog
    John Naguib Twitter
    Please remember to mark this as answered if it helped you

  • How can I create a magazine web app for all devices?

    How can I create a magazine web app for all devices?

    magazine web app is not supported in DPS as of now. You can share the contents to preview it on web content viewer.

  • Am unable to download itones app for my windows pc that site says like "Now that you've downloaded iTunes, you're just a few steps away from starting a digital entertainment collection and enjoying it on your Mac, PC, iPad, iPhone or iPod." but i couldn,t

    Dear Apple,
    I am unable to download itones app for my windows pc that site says like "Now that you’ve downloaded iTunes, you’re just a few steps away from starting a digital entertainment collection and enjoying it on your Mac, PC, iPad, iPhone or iPod." but i couldn,t find in system.
    please send the itones downloads link.
    Thanks
    suresh

    Hi Suresh,
    Thank you for your reply.
    Devices should appear in the top right of iTunes, as seen in this image:
    From:
    iTunes 11 for Windows: Connect a device
    http://support.apple.com/kb/PH12449
    If you do not see your iOS device in this menu when you connect it to your computer, it may not be recognized by iTunes. In this case, I recommend the troubleshooting steps in this article:
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    Best,
    Jeremy

  • How can I resize and reposition the Date Created window for All windows?

    When setting view options for a finder window set to list view, I cannot get column resizing or positioning to hold. When making those changes, the option for "All Windows" automatically shifts to "This window only" and it then does not hold.
    How can I resize and reposition the Date Created column for All WIndows?

    Hi Harmz,
    Try dragging this file to the Îesktop & reboot...
    /Users/YourUserName/Library/Preferences/com.apple.finder.plist

  • Hello , how r u,  can i ask 1 question about xcode, i have mac os x 10.7.5 , n xcode version 4.6.3 i want build apps for ios 7.1 n mac os 1.9 ,, , but my macbook is old late 2008 macbook 4,1,  so can i develop apps for ios7 n 1.9 using xcode 4.6.3, bcz my

    hello , how r u,
    can i ask 1 question about xcode, i have mac os x 10.7.5 , n xcode version 4.6.3 i want build apps for ios 7.1 n mac os 1.9 ,, , but my macbook is old late 2008 macbook 4,1,  so can i develop apps for ios7 n 1.9 using xcode 4.6.3, bcz my machine cant upadte on 1.8 n 10.9,, ihave 2gb ram . core 2 duo pr, plz rely asap,
    thnxs

    Please type complete sentences and words.  This isn't an instant message program.
    https://developer.apple.com/support/ios/ios-dev-center.html

  • I am looking to start developing apps for the iTunes Store, but I have no previous experience. What is the best way for me to start on this? As in which programs and materials must I need and what I need to know. Thanks!

    I am looking to start developing apps for the iTunes Store, but I have no previous experience. What is the best way for me to start on this? As in which programs and materials must I need and what I need to know. Thanks!

    You will need a Mac, with OS X 10.6+ on it, to be able to develop iOS apps.
    There is some info on these pages :
    developer site : https://developer.apple.com
    developing for iOS 7 : https://developer.apple.com/ios7/
    developer support : https://developer.apple.com/support/
    developer forums : https://devforums.apple.com/index.jspa (you will need to be a registered developer to access them)

  • Control-Shift-W activates Snow Leopard-Like exposé for all windows. Can this be disabled/changed?

    Running Mac OS X 10.7.2 on my MacBook Air, Control-Shift-W produces a Snow Leopard-like expose for all windows.
    While useful, this keyboard shortcut is wreaking havoc with my BBEdit settings. (Control-Shift-W is used to toggle "Selected text only" in the "Find" window.)
    Does anyone know a way to alter or disable this system shortcut? I haven't been able to find any information regarding this shortcut and I fear I may have altered an underlying property (using "defaults write…" at the command line) and I don't know how to revert what I (may) have done.
    Thanks in advance.

    I suspect that it's busy trying to mount a network file system of some type.
    Are there any errors in your logs that seem appropriate (viewable via Applications->Utilities->Console?)

  • 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.

  • Request to make a free iwork apps for all ios device users

    I am using iphone 4s & ipad 4th gen, i have request you to make a free all iworks apps for all ios devices, these apps are really good for daily use in business & college also.
    Thank you

    You are not talking to Apple here, just us users. You can give feedback to Apple if you like, but most companies are unlikely to start giving away core products to everybody.

  • Apps for all devices?

    I am a freelance deisgner with a Individual account through Creative Cloud. If Iwant to create apps for all devices, not just iPad, through DPS what do I need to do, or is this possible with the set up I have?

    CC accounts provide only Single Edition for iPad. For any other device
    you'll need a Pro account at a minimum.

Maybe you are looking for

  • I'm running OS X 10.6.8 on a MacBook Pro and cannot connect to the App store. How do I fix this?

    I'm running OS X 10.6.8 on a MacBook Pro and cannot connect to the App store. How do I fix this? I have downloaded and installed the 10.6.8 V1.1 Combo pack but this didn't fix the problem.

  • Difference b/w At-selection-screen and onfield

    Hi,      What is the difference between at-selection-screen and at-selction-onfield?

  • Pricing screen pop up

    Hi Gurus, Here is my client's requirement for Sales order creation My client is a logistics service provider. Some of the services he out sources to others. In this scenario, when he enters the service, the system should give a pop up screen which wi

  • Dock and slow down

    I'm experiencing a slow down throghout all my system; the system has an especially slow response when typing with the keyboard or when moving windows. The curious thing is this: if I have a bouncing icon in my dock, the slow down is gone and my syste

  • Says "did not respond", but works with test servers...

    Hi all, This one is driving me crazy! I recently bought an iSight camera and I'm now wanting to get it working with iChat and AIM. I'm behind a Linux firewall of my own construction (ClarkConnect / Fedora based) and at first I couldn't get it to conn