windows2012

sonar qube installation on windows server 2012

你。 提交于 2019-12-19 07:34:20
问题 Installing sonarqube on windows server 2012 I have followed the following steps to install sonar on Windows Server 2012 Downloaded sonarqube4.4 and extracted to C:\Sonarqube Downloaded Java JDK 1.7.0_60 and jre 1.7.0_67 as well as jre7 Installed Windows SDK 7 and .NET Framework 4 Navigated to C:\sonar\bin\windows x86-64 and ran StartSonar.bat as an administrator, this ran ok with no output and i had to hot ctrl- Z to break I then ran \windows-x86-64\InstallNTService.bat as an administratot

sonar qube installation on windows server 2012

回眸只為那壹抹淺笑 提交于 2019-12-19 07:33:07
问题 Installing sonarqube on windows server 2012 I have followed the following steps to install sonar on Windows Server 2012 Downloaded sonarqube4.4 and extracted to C:\Sonarqube Downloaded Java JDK 1.7.0_60 and jre 1.7.0_67 as well as jre7 Installed Windows SDK 7 and .NET Framework 4 Navigated to C:\sonar\bin\windows x86-64 and ran StartSonar.bat as an administrator, this ran ok with no output and i had to hot ctrl- Z to break I then ran \windows-x86-64\InstallNTService.bat as an administratot

Microsoft Access Database Engine 2010 Redistributable 64 bit only works if Enable 32-bit set to true

流过昼夜 提交于 2019-12-13 07:39:35
问题 I have an ASP classic application that I'm migrating from a Windows 2000 to Windows 2012 Server. It uses the following code to import xls files Set objConn = Server.CreateObject("ADODB.Connection") objConn.Open "DRIVER={Microsoft Excel Driver (*.xls)}; IMEX=1; HDR=NO; Excel 8.0; DBQ=" & Server.MapPath("\Imports\") &"\"&fn& "; " and the following for csv files Set objConn = CreateObject("ADODB.Connection") Set objRS = CreateObject("ADODB.Recordset") objConn.Open "Provider=Microsoft.Jet.OLEDB.4

ASP Classic Text Driver For Windows 2012

旧时模样 提交于 2019-12-13 05:45:43
问题 We have an old ASP Classic website which has been running on Windows 2003 and needs to be moved to 2012. Most of the site works apart from a section where we need to be able to upload CSV or Excel documents full of categories to the server. I know no Microsoft Driver existed at the time of Windows 2008 which is why we have had to leave the site on 2003 for so long but we are trying to solve this issue now either by -finding the correct MS Text/CSV/XLS driver for Windows 2012 -buying a

How can I make SHA2 CSR file for IIS web site on windows 2012R2?

纵然是瞬间 提交于 2019-12-12 18:49:14
问题 I need SSL cert for a web site but CA did not accept my CSR and told me, that is SHA1 algorithm and you should send SHA2 based CSR file. How can I create SHA2 CSR file for IIS web site on windows 2012R2 ? 回答1: I had same problem and this helped me: http://day.ir/en-us/articles/ssl/create-csr-sha2-algorithm SHA2 CSR *RUN > MMC > FIle> Add Remove Snap -In... > Certificates > Add *Select Certificates from left panel and click Add button *click on Add button Certificate Snap-in window will pop-up

Powershell scripts in Windows 2012R2 not running

痴心易碎 提交于 2019-12-11 23:51:20
问题 I just migrated my powershell scripts from 2003 to 2012R2 server. But when I try and run my powershell scripts it gives me foll errors: I cant set time, I cant set date, I cant access some files,I cant run scheduled tasks from the script. It keeps giving me access is denied error. However when I right click on powershell and run as administrator it works fine. I am confused as I have all the admin rights on the PC and I have set my powershell execution policy as unrestricted as well. Any Help

Manage web farms from powershell v3.0

。_饼干妹妹 提交于 2019-12-10 22:27:47
问题 I have been searching for a way to create new web farms add add servers to it with PowerShell. I stumbled on this link http://www.iis.net/learn/web-hosting/microsoft-web-farm-framework-20-for-iis-7/web-farm-framework-20-for-iis-cmdlets-for-windows-powershell which says that you should add a snapin called WebFarmSnapin. But this does not seem to work at all in powershell v3.0 because it only says: Add-PSSnapin : No snap-ins have been registered for Windows PowerShell version 3. Does anyone

Unable to Access Owin Self hosted RestApi - Deployed to AWS EC2 - Windows 2012 R2

丶灬走出姿态 提交于 2019-12-10 08:49:03
问题 Following is the sample self hosting RestApi code, i have created with OWIN. It is working in my local machine. i have hosted it in aws-ec2, and started as administrator. I am able to access the RestApi from inside the instance (using chrome/IE) giving localhost as url. But getting a Bad request invalid hostname, when i replace the localhost with public DNS of Instance (running within Instance's browser). when i tried to access the RestApi from outside the instance browser from my local

JAVA application randomly crashes with DLL issues

做~自己de王妃 提交于 2019-12-08 10:32:33
问题 I have a JAVA application which communicates with .Net application via com. Offlate (since we have migrated from windows 2003 server to Windows 2012 server R2 ) the java application keeps on crashing randomly. Some times we will see the application crashed and all related consoles closed where as sometimes we observer the application and console are still there but that it has hanged. A restart of the application resolves the issue most of the time. The event views in the windows system will

The PowerShell provider xWebAdministration does not exist at the PowerShell module path nor is it registered as a WMI provider

人走茶凉 提交于 2019-12-07 18:29:58
问题 I have made this very simple DSC script. Which basically creates web application in default website. Configuration ConfigureWebApp { param ($MachineName) Import-DscResource -Module xWebAdministration Node $MachineName { xWebApplication NewWebApplication { Name = "MyApp" Website = "Default Web Site" WebAppPool = "DefaultAppPool" PhysicalPath = "C:\Inetpub\wwwroot\MyApp" Ensure = "Present" } } } cd "C:\Dsc\scripts" ConfigureWebApp -MachineName "WIN-KPURIN2B87H" When I run generated MOF file, it