windows-server-2008-r2

Changing owner of HKCR\\CLSID\\* key to Administrator on Windows Server 2008 R2

时光毁灭记忆、已成空白 提交于 2019-12-05 18:31:16
There is a registry key on Win Server 2008 R2, HKCR:\CLSID\{76A64158-CB41-11D1-8B02-00600806D9B6} whose owner is not Administrator. It is TrustedInstaller. Now to make Remote DCOM/WMI connection working, I need to give Administrator the permission to have Full Control over this key and ownership as well. As this needs to be done on several machines, I was hoping I could do this using Powershell. I followed these Controlling Registry ACL Permissions with Powershell Change the owner of directories with powershell but I still get this error Exception calling "OpenSubKey" with "3" argument(s):

JQuery to asmx fails on Windows 2008 R2 SP1

放肆的年华 提交于 2019-12-05 18:14:31
Since the installation of SP1 we are facing problems in calling asmx pages from JQuery client code. IIS is pointing the JQuery post call to his default 404 page. We did a roleback of our environment to assert this issue is caused by SP1 and tests confirm it. Waiting for a fix @MS Technologies used: ASP.Net 4.0 - JQuery - IIS 7.5 - Windows 2008 R2 SP1 --Bart Code Sample calling (front-end): // Code to load vars... $.ajax({ type: "POST", url: "/Handlers/ProductRating.asmx/RateProduct", data: "{'uniqueId':'" + uniqueId + "','productId':'" + productId + "','points':" + points.toString() + ",

An Error Has Occured while attempting to load the Crystal Reports runtime

自古美人都是妖i 提交于 2019-12-05 16:41:11
问题 I've been working on an internal website for quite some time now, maintaining it for a client. Other than a few bugs, the website is working as intended. But then, all of a sudden, the error in question appears. This has never happened before. Here are the software we used: Windows Server 2008 R2, 64bit Visual Studio 2005 as the IDE of choice ASP.net / C# for the website .NET 2.0 IIS, for the website hosting. CrystalReport10, it would appear (from the picture). Now, I have done some research

How to write in a registry key own by TrustedInstaller

一个人想着一个人 提交于 2019-12-05 13:42:39
问题 In order to install a new property page into the Active Directory SnapIn, I need to write into the following registry key of W2K8 R2 (as documented by Microsoft) HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MMC\SnapIns{E355E538-1C2E-11D0-8C37-00C04FD8FE93}\NodeTypes This key is own by a special user called TrustedInstaller . I found a lots of thing on the NET arround that. At the moment here is the way it works doing the following (user is member of administrator group): I give the user the

How can I give remote access to my visualsvn server

时间秒杀一切 提交于 2019-12-05 11:16:56
I am currently running VisualSVN Server Enterprise on a Windows Server 2008 R2 x64 machine and I had no problem installing and setting it up locally. I need to give remote access to a user in the UK and wanted to know how this is done on a Windows Server. I presume he will access it using https but I have no idea what I need to do on my end locally to grant remote access. Any help or direction would be much appreciated. Thanks. First can you please check the Visual SVN on what port and IP it's listening: To do so, go to Start > VisualSVN server manager > Right click on VisualSVN Server (local)

Services crashed with event name [CLR20r3] [duplicate]

强颜欢笑 提交于 2019-12-05 10:40:42
This question already has answers here : Deciphering the .NET clr20r3 exception parameters P1..P10 (2 answers) Closed 5 years ago . I have created a service in .Net c# that basically send emails periodically. The service works fine on my x32 XP machine but when i deploy the x64 build on an another 'x64' based Windows Server 2008 R2 machine, the service starts and just stops after few seconds and in event log it has this: Fault bucket , type 0 Event Name: CLR20r3 Response: Not available Cab Id: 0 Problem signature: P1: sentEmailDraft.exe P2: 4.2.0.0 P3: 538d3cf1 P4: mscorlib P5: 2.0.0.0 P6:

Register DLL file on Windows Server 2008 R2

喜你入骨 提交于 2019-12-05 09:40:19
问题 I'm trying to register a COM DLL file on Windows Server 2008 R2. Here are the steps I took: Run cmd as administrator c:\windows\system32\regsvr32.exe c:\tempdl\temp12.dll When I execute that command I get this error: The module temp12.dll failed to load. Make sure the binary is stored at the specified path or debut it to check for problems with the binary or dependent .DLL files. The specified module could not be found. I was able to register the same DLL file on Windows 2000. I also tried c:

How to Access Remote USB Smartcard during RDP

允我心安 提交于 2019-12-05 06:10:49
问题 [My set up] RDP Client (Win7) ------------------RDP------------------------> Remote Server (Win2k8R2) with SmartCard I've found countless answers that would suggest this is not possible. Alot of answers indicate that RDP was designed this way for security. The smartcards are locked which do not allow the device to be seen when connecting remotely with Remote desktop connection (RDP). However I've found a useful link which appears to work for some but not all. http://lifayk.blogspot.co.uk/2012

Allocating more than 4GB memory in a 64 bit system

随声附和 提交于 2019-12-05 04:17:46
I'm running this code, compiled on 64 bits vc++ 2005, on Windows Server 2008 R2 with 32GB. There is an access violation inside the for loop. #include <iostream> using namespace std; int main(int argc, char* argv[]) { double *x = new double[536870912]; cout << "memory allocated" << endl; for(long int i = 0; i < 536870912; i++) { cout << i << endl; x[i] = 0; } delete [] x; return 0; } So if there is no exception in new double[536870912], why am I getting an access violation when doing an assignment over a particular array position? Another point worth mentioning is that this program was

Could not load file or assembly 'System.Management.Automation'

拜拜、爱过 提交于 2019-12-05 04:13:05
I've written an asp.net MVC 3 web application ('ADReporter') on my local machine that uses Powershell to retrieve some data. If I run this application locally, everything works fine. Now I'm trying to run it on my Windows 2008 server but when i'm trying to access it, i get following stack trace: Server Error in '/ADReporter' Application. Could not load file or assembly 'System.Management.Automation' or one of its dependencies. Strong name signature could not be verified. The assembly may have been tampered with, or it was delay signed but not fully signed with the correct private key.