[Windows 8.1] Installing Microsoft Store Application Developer Program (MSADP) Applications

Hi,
In the Windows 8.1 Enterprise Device Management Protocol document, the installation of MSADP applications is mentioned.
I tried to obtain the information in regard to MSADP on the internet, but not success.
Are there any web sites or official documents available for MSADP?
I don't even know if the program is available to all the countries in the world...

The program is designed to help facilitate the pre-install of apps in large institutional device deals, currently piloted for Education.
To give you some background, Windows Store apps are obtained by individuals logging into the Windows Store and obtaining apps on an individual basis through a Microsoft Account (MSA). The Microsoft Application Deployment Program was created to help facilitate
unblocking Educational customers where MSA restrictions prevent institutions from obtaining apps.
Elbrinner

Similar Messages

  • Windows 8.1 Install blocked by Application Virtualization Desktop Client

    When I try to install Windows 8.1 from the store I get an error message that I need to uninstall the Microsoft Application Virtualization Desktop Client.  But when I check control panel to uninstall the application it does not exist in the list. 
    When I choose to have the installation uninstall it doesn't work.
    Bottom line I am stuck where the install is asking me to uninstall another application which I don't believe I have installed.

    The Application Virtualization client will be related to Microsoft Office Home and Student 2010. Here's how to update that version of Office: http://office.microsoft.com/en-au/excel-help/update-repair-or-uninstall-office-click-to-run-products-HA010382089.aspx
    Ensure any available updates are applied (I'd also check Windows Update) and reboot before trying the Upgrade Assistant again.
    This
    page suggests that this version of Office 2010 should be compatible with Windows 8, so hopefully ensuring you've installed all available updates should fix the issue.
    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

  • I bought windows 8 from the Microsoft store. How do I download it on my mac to burn on a dvd as it is an exe file?

    Hello,
    I just bought Windows 8 and have now got a downloadable link with a product key. How can I download it on my mac so I can burn it on a DVD to start the Bootcamp? When I press to download, it wont as it is an exe file. I tried to download it on a windows computer so I can burn it but it asked to input the Product key, so was quite weary as it might have registred windows on that laptop.
    Any suggestions?
    Cheers
    Yiannis

    mine was an exe too but it's an upgrade from windows7
    so one had to install windows7 and then run the exe file from there
    not sure if you also bougth an upgrade if so then you need a win7 too

  • Voip application for windows phone 8.1 fails store submission

    A voip application with the new 8.1 architecture based on a separate process for the voip server is not accepted by the store.
    Voip architecture is based on 8.1 sample: https://code.msdn.microsoft.com/windowsapps/ChatterBox-VoIP-WP81-64921ad4
    Errors during submission:
    3011: The package is missing RpalManifest.xml. Update it and then try again.
    1028: The native API api-ms-win-core-processthreads-l1-1-2.dll:ExitProcess() isn’t allowed in assembly doubango.BackEndServerHost.exe. Update it and then try again.

    Update.  I am currently working with the sample team to update the sample.   We found the problem to be in the way the BackEndServerHost VIsual studio 
    project was created.   While we work on re-creating that from scratch, testing, and re-publishing I wanted to post what we have done so far in case anyone 
    wants to move forward.
    First there are a couple bugs in the sample, maybe you worked around those already in your development but in case not here they are.
    In the backendaudio.cpp BackEndCapture::InitCapture I changed the code:
    if (SUCCEEDED(hr))
    WAVEFORMATEX format = {};
    if (SUCCEEDED(hr))
    FillPcmFormat(format, m_pwfx->nChannels, m_pwfx->nSamplesPerSec, m_pwfx->wBitsPerSample);
    m_sourceFrameSizeInBytes = (format.wBitsPerSample / 8) * format.nChannels;
    hr = m_pDefaultCaptureDevice->Initialize(AUDCLNT_SHAREMODE_SHARED, 0x88140000, 1000 * 10000, 0, &format, NULL);
    The m_pwfx was already retrieved via GetMixFormat earlier, just use that.  Don’t create a custom one.
    In the BackEndAudio::Stop routine change the order of cleanup:
    if (m_pDefaultRenderDevice)
    m_pDefaultRenderDevice->Release();
    m_pDefaultRenderDevice = NULL;
    if (m_pDefaultCaptureDevice)
    m_pDefaultCaptureDevice->Release();
    m_pDefaultCaptureDevice = NULL;
    if (m_pCaptureClient)
    m_pCaptureClient->Release();
    m_pCaptureClient = NULL;
    The next step is to basically delete the BackEndServerHost project and create a new one with the following steps.
    1)  Add a new C++ Dirext X App (Windows Phone) to the solution and name it VoipBackendServerHost  NOTE: using "." in the name causes problems, so don't use the same name as the original sample.
    2)  Remove the Common and Content Folders
    3)  Remove App1Main.cpp and App1Main.h
    4)  Contents of app.cpp should be:
    #include "pch.h"
    #include "App.h"
    #include <windows.applicationmodel.core.h>
    #include <wrl.h>
    #include <string>
    #include <stdexcept>
    using namespace ABI::Windows::ApplicationModel::Core;
    using namespace ABI::Windows::Foundation;
    using namespace Microsoft::WRL;
    using namespace Wrappers;
    HRESULT __cdecl MyGetActivationFactory(_In_ HSTRING activatableClassId, _COM_Outptr_ IInspectable **factory);
    class GetCustomClass : public RuntimeClass<RuntimeClassFlags<RuntimeClassType::WinRtClassicComMix>,
    IGetActivationFactory,
    CloakedIid<IAgileObject >>
    public:
    IFACEMETHODIMP GetActivationFactory(_In_ HSTRING activatableClassId, _COM_Outptr_ IInspectable **factory)
    return MyGetActivationFactory(activatableClassId, factory);
    private:
    HMODULE m_hMod;
    [Platform::MTAThread]
    int main(Platform::Array<Platform::String^>^)
    HRESULT hr = Initialize(RO_INIT_MULTITHREADED);
    if (FAILED(hr))
    throw std::runtime_error(std::string("Failed to Initialize(RO_INIT_MULTITHREADED), HRESULT: ").append(std::to_string(hr)));
    // Scoping for smart pointers
    ComPtr<ICoreApplication> spApplicationFactory;
    hr = GetActivationFactory(HStringReference(RuntimeClass_Windows_ApplicationModel_Core_CoreApplication).Get(), &spApplicationFactory);
    if (FAILED(hr))
    throw std::runtime_error(std::string("Failed to GetActivationFactory(RuntimeClass_Windows_ApplicationModel_Core_CoreApplication), HRESULT: ").append(std::to_string(hr)));
    ComPtr<IGetActivationFactory> spGetActivationFactory = Make<GetCustomClass>();
    spApplicationFactory->RunWithActivationFactories(spGetActivationFactory.Get());
    Uninitialize();
     5) Right click and bring up Project properties.  go To Linker->Input.
     6) Set the Configuration and Platform dropdowns to change all configurations all platforms at the same time
     7) Choose Edit for Additional Dependencies and set to this:
    $(SolutionDir)$(PlatformTarget)\$(Configuration)\BackEnd\PhoneVoIPApp.BackEnd.lib
    WindowsPhoneCore.lib
    RuntimeObject.lib
     8) Under Cofniguration Properties->General Set the Target Name to PhoneVoIP.BackEnd.HostServer and Output directory to $(SolutionDir)UI
     9) APply the settings. Then click OK
    10) Build the Proxy Stub
    11) Build the Agents
    12) Build the new Project
    13) Expand the UI (Windows Phone Silverlight 8.1) Project and find the PhoneVoIP.BackEnd.HOstServer.exe and remove it.
    14) Right click UI and Choose Add Existing and add the PhoneVoIP.BackEnd.HostServer
    This should hopefully get you moving forward.  Please test and make sure your application is working. The end result should pass WACK now.  Please let me know if there are any issues.  It is a lot of steps and I hope I didn't miss any.
    Bret Bentzinger (MSFT) @awehellyeah

  • Installing Microsoft Office on Windows Server 2008 R2

    Can I install Microsoft Office on Windows Server 2008 R2?
    I'm not trying to use this installation from client machines, I just want to use this installation from the same machine.
    It's a Home LAN, I need to develop some applications, but basically, the server should be used as any other machine by any member of the family.
    Each machine will have it's own suite of Office Applications. It's just 3 machines
    Believe you can do it, and you will!!

    Yes, I've done that successfully, but I use the Volume Licensing edition (Professional Plus).
    http://technet.microsoft.com/en-us/library/ee624351(v=office.14).aspx
    If you have a Retail edition, it might not be as successful...
    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!)

  • HT203421 Since installing Yosemite 10.10 the Apps Store application on my iMac does not work

    installing Yosemite 10.10 the Apps Store application on my iMac does not work properly. Applications show up in the App Store window to be updated but in fact most of them do not download and install. Some 3rd party software does download and install but most Apple and HP Applications do not. They appear in some cases in both the Ready to update or install list and in the "Installed in the last 30 days list". In some cases when I click on "Update" it shows in the "Installed in the Last 30 Days list" but it is not installed.  In the case of the latest Yosemite 10.10.3 beta down load, it momentarily show up like it is downloading but then disappears and does not install.

    I am now using Yosemite 10.10.2 and am trying to install the beta Download Yosemite 10.10.3 hoping it will resolve my problem but starts to download from the App Store snd then quits.

  • What is the alternative for DisplayMemberPath="Value" for Windows Store applications?

    I think there is a bug with Windows Store Applications when it comes to using DisplayMemberPath="Value".
    Here is my code
    <ComboBox Height="40" VerticalAlignment="Stretch" SelectedValuePath="Key" DisplayMemberPath="Value" x:Name="comboBox1" FontSize="25"/>
    var source = new Dictionary<string, double>();
    source.Add("Item1", 0.4);
    source.Add("Item2", 0.3);
    source.Add("Item3", 0.1);
    source.Add("Item4", 0.1);
    var formateDSource = new Dictionary<string, string>();
    foreach (var item in source)
    formateDSource.Add(string.Format("[{0}, {1}]", item.Key, item.Value), item.Key);
    comboBox1.ItemsSource = source;
    If you use this code in WPF in works perfectly. However if you use this code in a Windows Store Application then the Combo Box is empty and an error is thrown. So is there an alternative way to do this in Windows Store Applications and have I unearthed a
    bug? Because I have researched the Web for days and found no solution to this.*please do not comment unless you have tried my code as a Windows Store App not a WPF in Visual Studios. Can Someone post an example based on my code that works in Windows Store
    Apps please because this is terrible.
    Thanks

    It looks like you got an answer on SO:
    http://stackoverflow.com/questions/29817124/what-is-the-alternative-for-displaymemberpath-value-for-windows-store-applicat
    This does look like a bug.
    Matt Small - Microsoft Escalation Engineer - Forum Moderator
    If my reply answers your question, please mark this post as answered.
    NOTE: If I ask for code, please provide something that I can drop directly into a project and run (including XAML), or an actual application project. I'm trying to help a lot of people, so I don't have time to figure out weird snippets with undefined
    objects and unknown namespaces.

  • In XP Mode on Windows 7, after installing application as like I would normally on an actual XP system, application will not start in windows XP mode itself.

    Just did a clean install of windows 7.  I then downloaded windows XP mode and Windows Virtual Mode.  Everything ran flawlessly and everything is updated.  I needed to Install a program called Dentrix 10.5 which can only be installed on Windows
    XP for numerous reasons and one including it needing to use Microsoft .NET 1.0.  I installed this program on Windows XP Mode as I would as if I were installing it with a computer with windows XP.  The Install of the program went fine and completed.
     Still being in Windows XP Mode I wanted to see how it would run.  I hit Start Menu, All Programs, Startup Programs, and clicked on the Dentrix Application.  Once I clicked it the time glass on the  mouse was there for a few seconds and
    then went away without the application starting up at all.  One thing that I'm thinking is why after I clicked Start Menu, All programs, is why was Dentrix not in its own folder and instead in the Startup programs after All programs?  Any Ideas how
    to get the program to run?  Like I said, I am trying to run the program in Windows XP Mode and not Windows 7 as I have found many Q's and A's on only how to do that.  Also this is the second application which I downloaded and the first being Microsoft
    Security Essentials so I know I don't have some virus from keeping from opening the Dentrix Application.  Incase you are wondering the Microsoft Security Essentials opens and runs fine in Windows XP Mode.  So Pretty Much My Main question is: Why
    my application not starting up in Windows XP Mode?  Any help is greatly appreciated! 

    Once I clicked it the time glass on the mouse was there for a few seconds and then went away without the application starting up at all.
    A couple times a week I open Dentrix 11.0 in a virtual machine on Windows 7. I experience the same thing almost every time I open the VM. I must first get Windows to "reconnect" my network for me. Do this by opening Start | My Computer, and
    double-click on the mapped network drive leading to the Dentrix data. After I can see the Dentrix data drive, Dentrix will be able to read it too and will open correctly.
    In Dentrix, seeing nothing (or briefly seeing a hourglass and then seeing nothing) is a classic sign that either:
    - The database files are marked as Read Only
    - The program cannot access the data files (probably the folder it is pointed to does not contain any data).
    - Or possibly the database path does not point to the right location where the data files are located
    Open the folder where you installed the program files of Dentrix (probably c:\program files\dentrix\) and double-click to run EP.EXE. The database path will be revealed. You can "Browse" to the correct location, and "OK" through the dialog to
    close them. Then try opening Dentrix again.
    Should that not work, open Start | My Computer, and try to open the path (starting with the drive letter, then the folder structure you saw in EP.EXE).
    By the way, if your path uses UNC (starting with two back-slashes and then the computer name of the server), you'll need to map a network drive and replace your path with a mapped drive path. (Map a drive in Start | My Computer | Tools | Map Network
    Drive). Dentrix really doesn't like UNC paths.
    Dentrix 10.5 can only be installed on Windows XP
    Microsoft .NET 1.0
    Just FYI, Microsoft .Net Framework 1.0 is required only for the "Time Clock" feature of Dentrix. Windows 7 already has .NET Framework features up to version 3.5 built in, and Time Clock (in my experience) works great under Windows 7 without installing
    .NET 1.0.
    Have you tried installing directly in Windows 7? I have a specific reason why I don't (I have a newer version of Dentrix installed on my Win 7 machine, and use the VM to go back to an older database occasionally - so I can't mix two different program versions
    on the same machine). If you were to try installing this program under Windows 7 directly, Dentrix will launch the Microsoft .NET Framework install after the Dentrix install is completed. Just cancel out at that point (Windows will probably give you an "incompatibility"
    error message anyway before allowing the install to go through) and I believe you can run it under Windows 7. That might eliminate the networking-through-the-VM issue. So, if you have no other reason not to install Dentrix on your Windows 7 machine directly,
    I'd try it. You might be surprised and if it works, you'd save yourself some headache with connecting the to network through the virual machine.
    Is why was Dentrix not in its own folder and instead in the Startup programs after All programs?
    During the installation, on the Select Program Folder screen, you must have clicked the "Startup" option under Existing Folders. By default, "Dentrix" will be typed into the box at the top. If you simply clicked Next, it would have gone
    to the correct location. The screen is a little confusing, because something in the list will be highlighted by default, but what is typed into the box at the top will actually be used.

  • Why can't I install iTunes on windows RT? Is Microsoft deciding what software I can use?

    Why can't I install iTunes on Windows RT? Is Microsoft deciding what software I can use?

    Welcome to Apple Support Communities
    Theoretically, Microsoft is deciding what apps you can install. In Windows RT, you can only install apps from the Windows Store and they must be ARM-based, things that Apple and iTunes don't meet, so you can't use iTunes in Windows RT

  • If I were to buy the 7 Home Premium SP1 64bit, System Builder OEM DVD 1 Pack from Amazon to install Microsoft Windows 7 on my Mac, would it be compatible with my computer when I put it in bootcamp? (I have all of the current software updates)

    If I were to buy the 7 Home Premium SP1 64bit, System Builder OEM DVD 1 Pack from Amazon to install Microsoft Windows 7 on my Macbook Pro, would it be compatible with my computer if I put it in bootcamp? (I have all of the current software updates)

    In order to run Windows Applications, you must own the applications and, since they require Windows, you must own Windows. There are technologies like wine that will allow Windows applications to run without Windows, but they tend to be flakey at best.

  • Detailed walkthrough of Installing Microsoft Windows 7 or Windows 8 on your Mac

    This is for anyone wanting the step by step instructions for installing Microsoft Windows 7 or 8 on their Mac. I have the Mid 2010 model iMac with the bluetooth keyboard and touch gesture mouse. If you have similar or just want to know how to do it step by step, please watch my tutorial. Hope it helps.
    http://youtu.be/rTPoyElIgZg

    My guess, you have not seen the threads and posts about Windows 8 on here before posting.There are no stuck threads and people tend to not look or when they do not find threads that are helpful (try search and "month" means "Aug" not the last 30 days and it is harder now to do searches than it use to be or than just using Google!
    Common issues? Trouble just downloading drivers. Burning ISO. Using external USB-DVD or flash installer drive. Lack of internet access!! audio, graphic drivers, graphic switching between Intel and ATI.
    Someone wrote a nice guide "How to install Windows on Mac Using Boot Camp" o weeks ago, it was nice, but I CANNOT find it again (I should have bookmarked it and put the link in the quick reference cheat sheet. They seemed to not be aware of the help on the Boot Camp Support page.
    Mac 101: Using Windows on your Mac via Boot Camp
    https://support.apple.com/kb/HT1461
    Boot Camp 4.0, OS X Lion: Frequently asked question
    http://support.apple.com/kb/HT4818
    http://manuals.info.apple.com/en_US/boot_camp_install-setup_10.7.pdf
    http://manuals.info.apple.com/en/Boot_Camp_Install-Setup_10.6.pdf 
    create a Windows support software (drivers) CD or USB storage media
    http://support.apple.com/kb/HT4407
    Boot Camp Assistant can burn Windows software (drivers) to a DVD or copy it to a USB storage device, such as a flash drive or hard drive. These are the only media you can use to install Boot Camp software.  https://support.apple.com/kb/HT4569
    Installation Guide Instructions for all features and settings.
    Boot Camp 4.0 FAQ Get answers to commonly asked Boot Camp questions.
    Windows 7 FAQ Answers to commonly asked Windows 7 questions.
    http://www.apple.com/support/bootcamp/
    when trying to launch the "Boot Camp Control Panel", but I just stumpled upon a solution.
    I created a new Windows user, that was not Administrator. When I logged in Boot Camp updateded something and asked me to restart the computer.
    After restarting and logging in with my new user, I could start the "Boot Camp Control Panel" configure tap to click and use F1-F12 as function keys.
    Then I changed the new account to Administrator and now the control panel can not be startet again... but my settings remained... only on the new user only though.
    ============ 
    I had problems with windows 7 after the installation using boot camp. The GT 650M was not showing up as the graphics adapter. I fixed the problem by inserting my windows support software CD a second time. I did not let it use auto run.  I went into the Windows 7 directory and then into the Nvidia directory and ran setup.exe. This installed the Nvidia drivers for me. If this works correctly, you will have an Nvidia control panel available to you. I set the resolution to 2880x1800. I also set windows to 200% magnification.
    I think what happens is that after you install windows, and then run the windows support CD, the main boot camp setup script seems to stop on the nvidia driver install--everything else installed correctly.
    The 2012 MacBook Air suffers from an EFI firmware bug that under Windows blocks turbo mode.
    Disable Windows 8’s Adaptive Brightness to Fix Dark Screen Problems
    2012 MacBook Air plagued by audio noise with Apple's Thunderbolt display
    Intel Windows 8 Graphic Driverhttp://www.guru3d.com/news/intel-whql-graphics-driver-windows-8-download/
    http://www.zdnet.com/blog/hardware/windows-8-an-installation-walk-through/14768
    http://huguesval.com/blog/2012/02/installing-windows-7-on-a-mac-without-superdri ve-with-virtualbox/
    I did manage to make the trackpad work. You need to install trackpad++
    (http://www.techspot.com/downloads/4967-trackpad-control-module.html), it will enable the trackpad driver on boot camp. After you install the trackpad++, trackpad++ will complain something. ingnore it.  You should be able to enable trackpad. And you can now even uninstall the  trackpad++, the trackpad will sill work. 
    brightness, what graphics card are you using? It might be due to the auto adjusting brightness running there. You can go to your power options, edit the one you are using  (Change plan settings >> Change advanced power settings) and look for Batteries >> Enable adaptive brightness and disable the one you are using. After that, the scrollbar for adjusting brightness in power options should work again.
    HDMI audio in Windows 7 64 bit 
    reinstalled the Intel video drivers and audio worked immediately.
    My config:  2011 Mac Mini 2.3, Intel 3000HD video
           .   .       upgrade to 8GB ram
    Samsung 8000 series LED TV connected with HDMI
    Memorex external BluRay writer(USB only power)
    For Windows 7 install, I tried installing with the 64 bit DVD but this failed as documented elsewhere.
    Instead, setup with USB drive, follow instructions available in bootcamp
    After partitioning drive with boot camp and reboot, install Windows 7 with install wizard.
    When asked whether to allow automatic updates say 'no', then complete installation and run boot camp tools for Windows.
    Because the network driver gets installed prior to the Intel video driver, Windows will install the Windows Update Intel video driver which breaks HDMI audio.
    When auto updates are off, the Intel video driver that is correct gets installed last.  HDMI audio works with this driver.
    Apple should install the Intel video driver first and it would solve this problem.
    I now have full blown 3D BluRay support on the MacMini with TruHD audio, fantastic!
    https://discussions.apple.com/thread/3408749
    Boot Camp: FireWire devices may affect Windows 7 responsiveness if connected to an Apple Thunderbolt display
    http://support.apple.com/kb/TS4190Products Affected
    Apple Thunderbolt Display (27-inch), Boot Camp, Windows 7
    Symptoms -
    When using Boot Camp and Microsoft Windows 7, FireWire (IEEE 1394) devices may affect system responsiveness if they are connected to the FireWire port of an Apple Thunderbolt display.
    MacBook Pro audio sound fixhttp://realitypod.com/2010/07/macbook-pro-no-sound-in-windows-7-final-fix/
    bluetooth connection is incredibly unreliable/intermittent when in Windows (I run Windows 7 64-bit and Boot Camp 4.0, and got both devices connected without any trouble via Bluetooth).
    https://discussions.apple.com/thread/4079148
    After much testing, I have found the cause of lagging/jumpiness on the Bluetooth Magic Mouse and Magic TrackPad in Boot Camp. Hopefully this will help others:
    The drivers for the Broadcom 802.11n Wireless Adapter have a setting called "Bluetooth Collaboration" that is Disabled by default. Enabling this option removes the problem instantly. My Magic Trackpad now works flawlessly, even if I stand 6 metres from the machine. It now works just as well as under Mac OS. The setting can be found under:
    Control Panel > Device Manager > Network Adapters > Broadcom 802.11n Network Adapter (right click and choose "Properties".
    Under the "Advanced" tab, highlight the setting named "Bluetooth Collaboration", then change it to Enable. Then click OK.
    I narrowed the problem down to the wireless card by disabling ALL startup services and processes for Windows, then re-enabling one by one.
    As soon as I enabled the Windows Wireless Service, the problem came back.
    Similarly, disabling the Wireless Card inside the Network and Sharing Center (or Device Manager) removes the problem.
    This led me to believe it must be a driver issue with the wireless card, since the problem didn't occur with the Magic TrackPad under Mac OS, or on my mother's Windows 7 64-bit computer.
    So when I went into the Driver Properties to check for an update, I found this setting about Bluetooth Collaboration.
    All Apple notebooks use the Broadcom card (and have done for years), so this driver is installed for almost anybody using Boot Camp on an Apple notebook. I'd assume this problem would affect anybody using Boot Camp + wifi + a Bluetooth device.
    Wireless Connection problem using windows in a Mac.
    Re: Connection problem using windows in a Mac. 
    May 4, 2012 10:08 PM (in response to Chris9393)
    Windows 8 to manage your mobile broadband use for you
    By Peter Bright
    Windows 8 will contain built-in support for mobile broadband devices and smarter use of metered Internet connections, as detailed in the lastest post on Microsoft's Building Windows 8 blog.
    Most 3G mobile broadband connections are subject to usage limits, and keeping track of data usage at the moment normally means running an application from the mobile operator, or even checking on their website. Windows 8 will have its own usage counters so that users can keep track of how much data they've burned through over the current billing cycle.
    Windows 8's faster Wi-Fi connectivity, with hot spots being found and connected to in under a second, and its new support for Wi-Fi hotspots that use authentication portals. Instead of having to open a browser to enter a username and password, it will be possible to type credentials directly into Windows itself.
    How to view error message:
    From Control Panel-> Admin. Tools-> Event Viewer-> Windows logs:
    Check Application and System Folders for Red highlit messages. Note that you can right-click clear these log folders.
    Memtest
    This is a step by step guide with audio and video to explain how to use memtest to see if your memory is defect:
    Another thing to add is that some errors will not be found on the first pass, best to do at least 3 passes.
    http://www2.corsair.com/training/how_to_memtest/
    Memory that "seems" to work in OS X (Lion, ML and earlier) but fails and does show errors with Windows and shows up in memtest - so don't trust your RAM just because it seems okay.

  • Installation of any Windows Store Application.

     Can I install some Windows Store Applications to the
    optional directories and or drive.

    Unfortunately, no.  You can define a different path to install Store Applications to, but they all have to go to that location.  You cannot have some in one directory, and some in another.
    To change the default path, you'll need to head into your registry and change a key - see the screenshot below for more info: 
    Keep in mind:  if you change the path, and you already have some apps installed, you will no longer be able to update them.  This is because they'll exist in the old path - not the new one.  To prevent this, you'll need to uninstall all apps
    (built-in as well as apps you've installed), then change the path.  See
    this link for more information.
    Hope that helps!

  • Migrating a legacy VC6 application to Windows Store application

    Hi,
    I have a legacy VC6 application. It is developed purely in C++ and MFC.
    I need to run this on Windows RT tablet.What should I do?
    Is it possible to migrate the old application to Windows Store application?
    Also, what are the system specifications and tools required to develop the Windows Store application?

    You will have to rewrite at least the UI portion of your application. Further changes depend on what system functionality you are using. The more of your code is dealing with system calls the more changes will be necessary.
    So basically you will likely be able to reuse parts of the code implementing your business logic but everything dealing with file accesses or presentation will likely need to be reworked. There is no automated process to transform Applications from targeting
    Win32/MFC to WinRT.
    As development tool I would suggest to use Visual Studio 2013 running on Windows 8.1.

  • If i install microsoft office after partitioning my hard drive for windows, will it be available on both sides of the partition?

    If i install microsoft office after partitioning my hard drive for windows, will it be available on both sides of the partition? Will it be universal for the computer or would i have to install it on both operating systems? Or, if I install office BEFORE partitioning, will it be available on both platforms after i partition?

    If I understand your questions correctly, then I'm inclined to say no. Office for Windows and Office for Mac are two completely different applications. if you run via BootCamp, only one partition will boot.
    If you want to run Mac and Windows at the same time, you could do what I did:
    Get Parallels
    Install Windows as VM on top of Parallels
    Install Office in Windows
    Now, you can run your OS X, jump into Parallels' WIndows and use Office that way.
    It needs a lot of RAM, 4 is a bare minimum to realy make it sensible, 8 wouldn't hurt.

  • Error while installing Microsoft Identity Extensions Setup during installation of SharePoint Foundation 2013 on Windows Server 2012

    Hi All,
     When i try to manually (no internet connection on the server) install SharePoint 2013 Prerequisites on Windows Server 2012 I get the below error
    I have installed .Net Framework 3.5, 4.0 and Windows Identity Foundation using Add server roles or features from the server manager.
    From Software & Hardware requirements for SharePoint 2013 give
    Prerequisites for SharePoint 2013 I can see that the identity extensions are available only of Windows Server 2008 R2 and not for windows server 2012. Can you please provide the link for windows server 2012? 
    I have installed all the prerequisites required except Microsoft Identity Extensions.
    Raghavendra Shanbhag | Blog: http://moss-solutions.blogspot.com
    Please click "Propose As Answer " if a post solves your problem or "Vote As Helpful" if a post has been useful to you.
    Disclaimer: This posting is provided "AS IS" with no warranties.

    I fixed it by installing Microsoft Identity extensions from command line, please find command line below.
    C:\Windows\System32>msiexec.exe /i "C:\SharePoint2013ServerFiles\prerequisiteinstallerfiles\MicrosoftIdentityExtensions-64.msi" /quiet /norestart
    Note: In the above command C:\SharePoint2013ServerFiles\prerequisiteinsTallerfiles is the path where I had downloaded all the prerequisites for SP2013
    This will install Microsoft Identity Extensions and creates registry entries, which will help the SharePoint 2013 Prerequisite installer to complete the setup
    For more details check out
    here
    Raghavendra Shanbhag | Blog: http://moss-solutions.blogspot.com
    Please click "Propose As Answer " if a post solves your problem or "Vote As Helpful" if a post has been useful to you.
    Disclaimer: This posting is provided "AS IS" with no warranties.

Maybe you are looking for

  • How can I return an xml file to normal print?

    I typed out a list of CD and saved it but it is filed in xml format and I don't know how to return it not normal print so that I can print it out.  As you may realise I am not very computer literate! Please can someone help.Thanks

  • How can i remove the line between columns?

    I'm laying out poetry and I only want one column--even in landscape mode. But in landscape mode there's still the line between columns that cuts through my text. I've tried dragging the line, clicking on it and deleting it. When I click on it two Xes

  • Returning a remote interface as a polymorphic form of its superinterface.

    Hi all I have a remote interface 'remoteinterface1' of a statless session enterprise java bean extending an interface 'BusinessInterface' that has some business methods. Can a business method 'getObj()' of the bean return a polymorphic form of the ab

  • SG Audigy 4 Pro hangs on Win XP shutdo

    This only happens with full installation of software. I used the web site to update everything. Maybe I did it out of order. I don't know, but I've tried 3 times. Same results. I like to use all the full functions of the hardware & software, but I ha

  • TTG photoFlow Gallery

    TTG photoFlow Gallery 1.0 is now available. photoFlow provides a gallery interface similar to Apple's cover flow for iTunes/iPod. The photoFlow component must be purchased for $59.95 in order to use TTG photoFlow Gallery, which is a free download. De