resource dll
3 Topics2k16 Clustering - Error loading custom resource DLL
Hello All, I'm trying to add a custom resource dll into a 2k16 cluster; I'm seeing the same result using both powershell and the failover cluster manager. I have followed the documentation in for creating custom resource types https://docs.microsoft.com/en-us/previous-versions/windows/desktop/mscs/creating-resource-types I took the skeleton from the clipbookserver example and the examples in the cluster api doc cited above. The command 'Add-ClusterResourceType -Name MyTypeBeta -Dll "C:\Windows\cluster\garbagee.dll"' and am receiving the following prints: INFO [RCM] rcm::RcmApi::CreateResType: (MyTypeBeta, MyTypeBeta, C:\Windows\cluster\garbagee.dll)* INFO [RCM] rcm::RcmGum::CreateResType(MyTypeBeta,C:\Windows\cluster\garbagee.dll,MyTypeBeta) ERR [RHS] s_RhsRpcCreateResType: (126)' because of 'Error loading resource DLL c:\windows\cluster\garbagee.dll.' INFO [RCM] result of first load attempt for type MyTypeBeta: 126 WARN [RCM] The DLL for resource type 'MyTypeBeta' is not present. INFO Received notification on resource type that was not findable: mytypebeta The def file is as follows: LIBRARY GARBAGEE EXPORTS Startup PRIVATE Dll is built for x64. I've tried 'extern "C"' for Startup, combining '__declspec(dllexport)'. I've turned off the Props->c/c++->Language 'Conformance mode' and not using precompiled headers. I'm placing the dll and lib directly in the C:\windows\cluster directory on all nodes. I believe this is something fundamental but cannot figure this out? Any help is very much appreciated. Thanks, BLC1.2KViews0likes0CommentsCreating a Cluster Resource DLL (Part 4): IsAlive & LooksAlive
First published on MSDN on Aug 18, 2010 Hi, In this series of blog posts we will help you to design, develop and debug the Resource DLL you are developing to give your application high-availability with Windows Server 2008 & 2008 R2 Failover Clustering.3KViews0likes0CommentsCreating a Cluster Resource DLL (Part 5): Logs
First published on MSDN on Aug 23, 2010 Hi, In this series of blog posts we will help you to design, develop and debug the Resource DLL you are developing to give your application high-availability with Windows Server 2008 & 2008 R2 Failover Clustering.795Views0likes0Comments