I am not able to install msxml6.msi on windows server 2012. when i try to install the same it shows finish screen and not install the msi.
is this compatibility issue?
due to this not able to access assembly reference from GAC to access the classes in vb.net
getting this error while running the code "171 Type 'MSXML2.XMLHTTP' is not defined."
thanks in advance.
Yes SAM this issue related with compatibility.
As per Microsoft installation steps:
It will only works on: Windows 2000 Service Pack 4, Windows Server 2003, Windows Server 2003 Service Pack 1, Windows XP Service Pack 1, Windows XP Service Pack 2
Related
I have downloaded the IIS Powershell snapin IISPowershellSnapin.26IISPowershellSnapin.exe
Unfortunately installing on a windows 2012 Remote desktop doesn't succeed.
The error is:
Microsoft Webinstaller couldn't find the product you tried to install.
Either the link you clicked is incorrect or you may be overwriting
your feed with different feed.
I have downloaded it from the site:
http://www.iis.net/downloads/microsoft/powershell
The manual gives the following Prerequisites:
The IIS PowerShell Snap-in requires the following prerequisites:
•Windows Server 2008, Windows Server 2008 R2, Windows Vista Service
Pack 1, or Windows 7 •Microsoft PowerShell 1.0 or 2.0
So nothing is said about Windows Server 2012.
Is there another executable for Windows Server 2012 or is there another problem.
http://www.iis.net/learn/manage/powershell/installing-the-iis-powershell-snap-in
I have allready checked whether the IIS Management Console is installed and it is installed.
Maybe this executable needs internet connection to install?
On our RDP we have no internet connection so this could be the cause as well.
Simply don't. PSSnapIns are obsolete; everything runs on modules now. The IIS Snap-In has been superseded by the WebAdministration module, which provides a superset of functionality.
Install the module on a >2008R2 server with the following PS:
Add-WindowsFeature Web-Scripting-Tools
This will not cause a service interruption. If it needs a reboot, it will tell you so. You might need to restart your PowerShell console, although this is unnecessary in my experience. After installation, run the cmdlet:
Import-Module WebAdministration
I installed VS2013 in my machine having the following details: OS Name: Microsoft Windows 7 Enterprise Version: 6.1.7601 Service Pack 1 Build 7601
While creating a sample ASP.NET MVC 5 application I am unable to see the Windows Azure (Host in Cloud) option as shown in the screenshot below:
Can anyone help me to know is there any other component I am missing to install so that Windows Azure (Host in Cloud) option is visible to me.
I had the very same problem. I fixed it by going to the Tools -> Extensions and Updates and chose to update all installed. Once the updates were applied the Azure Host in Cloud panel was back.
I had to go through this even though I had re-installed VS 2013.
I had the same problem, but in my case it may have been a combination of the answer provided by Paul Mooney, but ALSO that I had selected .Net Framework 4 instead of 4.5+
I register msado15.dll for my VB6 app in windows XP and app run successfully on windows XP and windows 7.
But when I register msado15.dll for my app in windows 7 then it is not running on both XP and windows 7.
What's the issue in windows 7?
With Windows 7 Service Pack 1, Microsoft changed one or more GUIDs of ADO interfaces. They've released a hotfix that allows programs linked with ADO on Windows 7 to run on Windows 7 and earlier versions.
Install the hotfix, then recompile your program, and it should work fine.
With Windows 7 SP1 I compile my project by adding in references msado15.dll in Microsoft ActiveX data objects 6.0 library. Now my app will run in all Windows 7 versions(32 or 64bit).
For windows XP i just make a .bat file in which i register msado15.dll .I put it in project and it is working successfully in windows xp as well.
I have a problem when i try to connect my SQL server 2008 express edition to visual studio 2010 and i was try to create web service.
When i am try to install server it show error message like it is not suit for windows 8 operating system.
but i can't connect my SQL server to windows 8 system.
i am using windows 64 bit operating system.
please fix my problem and please suggest correct structure query language version for windows 8.
Thanks advance.....
Using C++ Builder under Rad Studio XE I have created a simple Datasnap server service from scratch. I wanted to test the service installation process before adding any functionality, and found that while it will install successfully on a range of Windows machines, I haven't been able to get it to Start under a clean installation of Windows 7 x64.
The error message trying to start the service is: Windows could not start the service on Local Computer. Error 2: The system cannot find the specified file.
I have turned off both dynamic linking and run-time libraries. It starts fine under Windows XP and 2003 operating systems, just not this single Win7 machine that I have. I have opened the firewall for the specified ports, and confirmed no other app is using them as well. The service was installed under Administrator, and logs on as Local System account.
Is there a problem with a C++ Builder compiled service under Windows 7, or maybe 64 bit? Hopefully someone can point me in the right direction so I don't have to bang my head against the wall too many more time.
Thanks!
Since C++ Builder creates 32bit applications only, make sure you install the service in the c:\Windows\SysWOW64 folder on 64bit Win7 systems. Windows 7 x64 expects to find only 64bit files/services in the system32 folder.