windows-server-2012-r2

Migrating C++CLI wrapper from .NET 4.0 to 4.5 cause winsock error on Windows Server 2012 R2

喜你入骨 提交于 2020-01-15 23:55:47
问题 I have build a C++ CLI wrapper for a communication middleware we use. The wrapper has been in .NET 4.5 and works fine in Windows 7 and Windows Server 2008 R2. But in Windows Server 2012 R2 it crashes with an "Access violation" error in mswsock.dll The interesting part is that if I build the wrapper and test application to target .NET 4.0 it works. But when I re-target them to .NET 4.5.x it triggers the exception. I've tried to investigate security, strong naming, hot-fix'ing .NET, but to no

Cannot launch SSMS (SQL Server 2014 Express) - Invalid license data. Reinstall is required

拜拜、爱过 提交于 2020-01-14 17:54:34
问题 I've got a new server running Windows Server 2012 RS and IIS 8.5. I've installed SQL Server 2014 Express and was having problems getting sites under IIS to connect to (initially placeholder) databases. In an effort do get the Visual Studio 2010 Shell to display the debug information, I ran subinacl as per this question (How do I fix an "Invalid license data. Reinstall is required." error in Visual C# 2010 Express?) but now SSMS itself no longer launches! When I try to launch it I get a box

Cannot launch SSMS (SQL Server 2014 Express) - Invalid license data. Reinstall is required

限于喜欢 提交于 2020-01-14 17:53:49
问题 I've got a new server running Windows Server 2012 RS and IIS 8.5. I've installed SQL Server 2014 Express and was having problems getting sites under IIS to connect to (initially placeholder) databases. In an effort do get the Visual Studio 2010 Shell to display the debug information, I ran subinacl as per this question (How do I fix an "Invalid license data. Reinstall is required." error in Visual C# 2010 Express?) but now SSMS itself no longer launches! When I try to launch it I get a box

Cannot launch SSMS (SQL Server 2014 Express) - Invalid license data. Reinstall is required

佐手、 提交于 2020-01-14 17:53:10
问题 I've got a new server running Windows Server 2012 RS and IIS 8.5. I've installed SQL Server 2014 Express and was having problems getting sites under IIS to connect to (initially placeholder) databases. In an effort do get the Visual Studio 2010 Shell to display the debug information, I ran subinacl as per this question (How do I fix an "Invalid license data. Reinstall is required." error in Visual C# 2010 Express?) but now SSMS itself no longer launches! When I try to launch it I get a box

Trying to find the MSI product code for Java 8 Update 25 in to work with WSUS Package Publisher

半城伤御伤魂 提交于 2020-01-13 07:14:29
问题 I'm trying to create a 3rd party custom update through WSUS Package Publisher however I can't manage to get the MSI code for Java as there is no MSI installer to use MSIReader on. If anyone knows how I can find this code then it would be much appreciated. It's managing to make me look bad as a Sys Admin at work. Cheers, Glympse. 回答1: Two solutions : Install the product and search in : HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall Or to be aware that Oracle always used

Trying to find the MSI product code for Java 8 Update 25 in to work with WSUS Package Publisher

…衆ロ難τιáo~ 提交于 2020-01-13 07:14:09
问题 I'm trying to create a 3rd party custom update through WSUS Package Publisher however I can't manage to get the MSI code for Java as there is no MSI installer to use MSIReader on. If anyone knows how I can find this code then it would be much appreciated. It's managing to make me look bad as a Sys Admin at work. Cheers, Glympse. 回答1: Two solutions : Install the product and search in : HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall Or to be aware that Oracle always used

Accessing amazon ec2 windows instance web server from public ip

安稳与你 提交于 2020-01-07 09:05:11
问题 I am new to amazon web services and i want to access amazon windows instance from public-ip. I have created ec2 instance with windows server r2 2012 and add a load balancer to listen HTTP requests and also add a elastic ip to that instacne. It also has been assigned to a security group which has all-tcp, all-udp, http and HTTPS from anywhere(0.0.0.0). There is a carbon web server started as a windows service inside with (http://localhost:9443/). what i want is to access it from my web browser

How to set share permissions on a remote share with Powershell?

ε祈祈猫儿з 提交于 2020-01-06 19:49:14
问题 I need to set the share permissions of a remote share from a Powershell 4 script. I've looked at this page, specifically the command Grant-SmbShareAccess but that cmdlet sets permissions on local shares, I would love to have seen a -ComputerName parameter but, alas, there isn't one. I want to do something like: Grant-SmbShareAccess -ComputerName MYREMOTESERVER -Name <share_name> -AccountName <domain_account> -AccessRight Full Any ideas on how to do this? My remote server could be a Windows

DataStax Opscenter Agent doesn't connect: “Unable to locate cassandra.yaml configuration file”

落花浮王杯 提交于 2020-01-06 14:52:11
问题 I have installed Datastax Community Edition v2.0.3 on a Windows Server 2012 R2 Datacenter machine. After a vanilla install, I can't connect to the database with OpsCenter because the agent failed to start: it says "0 of 1 agents connected" in the top of the page. I can connect to the database itself using CQLSH. This problem does not occur with v2.0.2. My datastax_opscenter_agent-stderr.log file contains the following: 2013-12-05 16:16:54 Commons Daemon procrun stderr initialized Exception in

C++ crash when using OpenCV's Canny function in Windows Server 2012 R2

天涯浪子 提交于 2020-01-06 07:09:08
问题 while (true) { cap.read(frame); if (frame.empty()) { cap.release(); break; } cv::cvtColor(frame, frame, CV_BGR2GRAY); cv::GaussianBlur(frame, frame, cv::Size(3, 3), 1.8); cv::Mat edgeImage; cv::Canny(frame, edgeImage, 120, 255, 5); imshow("window", edgeImage); cv::waitKey(15); } Visual Studio 2015 with Update3. Build it x64 with OpenCV 3.4.3(x64). This is very strange error. When run this app in Windows7, It's OK. But in Windows Server 2012 R2, Not working. App crash and dead. After app crash