Windows server 2012 r2 core interface disable - windows-server-2012-r2

I successfully installed windows server 2012 R2 .After setting admin password,and login,I am getting command window instead of GUI.
Can anyone please help me come out of this issue.I tried several methods but still in midst of problem.
Waiting for reply..

It seems like you did infact install Windows core version. Make a new installation and select Windows server (with GUI) from the menu. If youre not prompted this during installation, then it is most likely not the correct install media.

Related

Windows Phone Emulator not running on Windows 8.1 on VirtualBox on Mac Book Pro

[
My configuration is:
Mac Book Pro running Virtual Box running Windows 8.1,
There I am getting error.
I have checked in Control Panel>>Programs and Features >> Hyper-V: all the components are checked.
Also, I have checked the services (run>> services.msc) all hyper-V services are running perfectly.
Tried with Windows 10 and Windows 8.1, but no luck.
Any Help will be appreciated !
According to the suggestion given, I uninstalled Hyper-V and tried it again, I got this error "Hyper-V is not enabled"
Thanks !
Windows HyperV and Virtual Box are trying to do the same job and will conflict with each other. Since HyperV takes control on boot, you'll need to uninstall HyperV to use the emulator in Virtual Box.

remote debugging windows 8.1 driver Visual studio 2013

I'm trying to set up remote debugging on Visual studio 2013.
I think I installed everything on my computer and the hyper-v machine too + updated.
So whats happening:
I open a microsoft UMDF driver sample. (I can build it without any errors).
I select Debugging tools for windows remote debugger.
Then a message box pops up named Deployment not configured.
I select I know what I'm doing continue debugging.
Then the Computer configuration wizard starts add new computer.
I select provision computer and automatically configure debuggers.
Then the configuration process configure my hyper-v machine fine.
Installs the necessary files restart the computer and log in with the name WDKRemoteUser.
Then I Click Finish then this error pop-up.
The required property 'DbgengRemoteCommand' is missing or empty. (OK)
So I need to fill up the package property pages->configuration properties->debugging->
Remote Command, Remote Command Arguments, Remote Working Directory, Remote Computer name manually?
And if I had to what should I write there or I miss something else?
You only need to specify the "Remote Working Directory" parameter and you can just give it the same path as your build directory and you should be good.

wamp server not working on 8.1

I just upgrade to win8.1 from win8 and I can't start wamp server (2.2 x64)
It was working fine on win8
Try checking that the Apache and MySQL services are still registered as services.
Look in Windows Services for services called - 'wampapache' and wampmysql'
Or if you have WAMPServer 64bit wampapache64 and wampmysqld64
If they dont exist do the following:-
wampmanager -> MySQL -> Service -> Install Service
wampmanager -> Apache -> Service -> Install Service
Then try to restart all services.
After Upgrading of window to window 8.1.
Please click on the wamp icon go to apache then services and then click on install services. And then go to mysql and services and click on install services and the restart your wamp. And enjoy your coding. Hurry
I've also gone through this situation. I checked the services and there "wampapche" and "wampmysqld" services are disable I've tried to start the services and the service didn't start stating a 1058 error. Then I changed the startup type from manual to automatic and now it's working.
all of your's answers are wrong, not only wampserver but also xampp is not working on windows 8.1 because apache server is not running in windows 8.1 with port 80, becouse port 80 is system reserved port.
#Ahmed that has been what described on the above posts. The simple answer is after upgrade we need to restart the services as they are stopped and yes it depends on the user whether they are going to keep it running or closed as they can choose whether to start manually or automatically.
Apparently Windows 8/8.1 are missing some essentials. The solution is to install Microsoft Essentials for Windows 8/8.1. This adds the .NET framework with all the necessary APIs that allow Wamp to function as designed. You can download Windows Essentials from herE: http://windows.microsoft.com/en-us/windows-live/essentials . I have already tested this out on several devices, including my laptop and desktop running both Windows 8 and 8.1. Good luck! :)

Can you install vmware server 2 on the Windows 8 preview?

Apologies if this has been asked already, searching the web reveals lots and lots of threads about installing the Win8 beta on VMware but not the other way around.
I am trying to install VMware Server 2.0.2 on a Windows 8 Preview machine. It appears to install correctly but I cannot then reach the web based homepage to configure virtual machines, i.e.
https://localhost:8333/ui/
gives the error that the "connection attempt to localhost was rejected. The website may be down or your network may not be properly configured".
Has anyone had any success running VMware Server 2.0.2 on Windows 8 Preview? If so were there any gotchas you needed to avoid?
I don't think it will ever be resolved. VMware Server was declared End Of Availability in January 2010; There will be no support for Windows 8.
Your best try would be trying launching the services in compatibility mode, but why would you do that? Why not use the much more advanced VMware Player or VMware Workstation products?
I've found a way to run it on Windows 8.
On my PC with a x64 version of Windows 8, when I installed VMware Server 2, I found there was a service called VMware Host Agent that cannot be run. When I opened the system Service Manager and clicked to launch this service, it gave me the error.
My solution is to create a service with the same command string and set it to start automatically by using the "sc create" command in cmd.exe. And it worked for me!

Has VS 2010 SP1 changed where the .config file is picked up from in VSTO add ins?

I have an outlook 2010 add-in that has a service reference to a simple web service we have set up.
The config for the service is in the app.config file.
This add-in is deployed using windows installer into the program files folder.
This has been working without a problem until yesterday.
Yesterday I installed VS 2010 SP1 and now when the add-in tries to access the web service it has the error "Could not find default endpoint element that references contract in the ServiceModel client configuration section."
Does anyone know what has changed and what is causing this problem?
If I open the project in VS, build and then run from within VS the config is picked up fine.
Thanks
Gavin
The actual solution is more simple. There was a breaking change made to VSTO 4 sp1 in that the manifest has to be a fully qualified URI. So when building your setup project, you must prefix the path to the manifest with file:/// and everything works as you'd expect again. They didn't get the documentation and tutorial pages updated in time for the release. I'm not sure that they have been yet.
Perhaps you're hitting a problem with extensionless services after installing SP1? http://support.microsoft.com/kb/2468871 - Issue 16?
I had this exact same problem. After installing Visual Studio sp1 (which installs VSTO 4 sp1), my Outlook addin could no longer find its config file for service endpoints. The only solution I've found so far is to run the VSTO setup (the new one) and choose uninstall, then run the old version that was previously installed and rebuild the setup package. If the new version is installed on the client machine, that machine will have this issue. Your setup may not detect it because typically you specify a minimum version for it to look for. I haven't found any other info about others having this problem besides yourself or anything official from MS about the problem.