I'm trying to get URL Rewrite 2.0 installed using this Dockerfile: FROM microsoft/aspnet:4.6.2 WORKDIR /inetpub/wwwroot COPY obj/Docker/publish . ADD https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi /install/rewrite_amd64.msi RUN net start MSIServer RUN msiexec.exe /i c:\install\rewrite_amd64.msi /quiet /passive /qn /L*v "C:\package.log" When I build the container image, I see this error message: The Windows Installer Service could [...] read more
My WCF service returns this error, when I start or recycle my App Pool. It only happens during automatic deployment, just after I change website settings. When I recycle manually, it works fine. [COMException (0x80040150): Could not read key from registry (Exception from HRESULT: 0x80040150 (REGDB_E_READREGDB))] System.Runtime.AsyncResult.End(IAsyncResult result) +607194 System.ServiceModel.Activation.HostedHttpRequestAsyncResult.End(IAsyncResult [...] read more
While executing the following script on server1: powershell.exe invoke-command -computerName server2 -scriptblock{cmd.exe "/c d:\scripts\start_SXXX_S012.bat"} we'll get the following error (on server1), but only if no user is logged on at the server server2: > The shell cannot be started. A failure occurred during initialization: Could > not read key from [...] read more
For a project at work we use Castle Windsor as our inversion of control container. In my team's project we depend on another team's WCF web services. The config for consuming these web services are set up in such a way that we will simply constructor inject the necessary interfaces [...] read more
My managed bootstrapper application as of yesterday fails to run on some machines, with the following error: [07F4:13CC][2013-12-12T12:20:31]e000: Error 0x80040150: Failed to create the managed bootstrapper application. [07F4:13CC][2013-12-12T12:20:31]e000: Error 0x80040150: Failed to create UX. [07F4:13CC][2013-12-12T12:20:31]e000: Error 0x80040150: Failed to load UX. [07F4:13CC][2013-12-12T12:20:31]e000: Error 0x80040150: Failed while running ... ... [07F4:13CC][2013-12-12T12:20:31]e000: [...] read more
I am trying to install the Web-WebSocket feature using powershell but I am getting the following error PS C:\Windows\system32> Install-WindowsFeature -Name Web-WebSockets Install-WindowsFeature : An unexpected error has occurred. Could not read key from registry Error: 0x80040150 At line:1 char:1 + Install-WindowsFeature -Name Web-WebSockets + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : InvalidResult: [...] read more
I have a custom interface defined in a type library and implemented in my code. I have not created my own proxy/stub. I have successfully marshaled the interface pointer from my main thread (STA) to a background thread (STA), in my case using IGlobalInterfaceTable. From that background thread, I want [...] read more
So I created a windows 8 application and it runs correctly but when I run it on a 8.1 system it crashes. I also tried upgrading my application to target 8.1 and it didn't fix the issue. This is the exception it throws: An unhandled exception of type 'System.Exception' occurred [...] read more
I have a project in aspx with vb.net and this app calls a COM + DLL, and this DLL reads a registry key, in my VB6 app uses this DLL correctly, but adding this DLL's references on my .NET project, i get this error below: Somebody help me with this [...] read more
I've created a very simple program and exposed it as an ActiveX Control. What I'm trying to do is to embed this control into a PowerPoint slide. The code for the program is as follows: namespace WindowsFormsApplication1 { [ProgId("Tomor.Form1")] [ClassInterface(ClassInterfaceType.AutoDispatch)] public partial class Form1 : Form { public Form1() { [...] read more
During a deployment of an update to our Web Service that QuickBooks Web Connector calls, we are not having a bunch of issues related to the Interop.QBFC13.IQBSessionManager. Note our code all works in development environment and has worked in the past on our production server. We are running on a [...] read more