x64

PHP Configuration file won’t load IIS7 x64

using Fast CGI I can't get it to read the php.ini file. See my phpinfo below. System Windows NT WIN-PAFTBLXQWYW 6.0 build 6001 Build Date Mar 5 2009 19:43:24 Configure Command cscript /nologo configure.js "--enable-snapshot-build" "--enable-debug-pack" "--with-snapshot-template=d:\php-sdk\snap_5_2\vc6\x86\template" "--with-php-build=d:\...

Create x86 and x64 installers using the same vdproj file?

I want to build an x86 msi package as well as an x64 package using the same Visual Studio 2008 deployment project. I see a TargetPlatform in the project properties dialog and I know I can use this to select either x86 or x64 (or Itanium for that matter). The problem is that I cannot seem to associate this property with a project config...

Signing Windows x64 drivers to work without the test mode enabled

Hi, I would like to make my drivers to install on x64 Windows without the need to switch to Test Mode. Could you please advise how to achieve this? Thanks ...

.NET Client Profile on x64

I know that the .NET Client profile does not target x64 or ia64. However I do not know what that means? There are two parts that it affects If I set my application to use the .NET Client Profile in VS, and it is run on x64 will it work? If I set my setup project prerequisites to need the .NET Client Profile rather than the .NET Fram...

NUnit does not run on Vista x64 in Visual Studio 2003

I am trying to run NUnit in Visual Studio 2003 on 64-bit Vista but with no success. I have set the Debug Mode of the Project to "Program" and the Start Application to "C:\Program Files (x86)\NUnit 2.4.8\bin\nunit.exe". The Test Project is set as the StartUp Project. All the code is in .NET 1.1. Unlike .NET 2.0 the processor architecture...

.NET File.Exists doesn't work in Windows\System32\Drivers folder?

The process is elevated and I ensured that the path was correct in VS debugger (I'm using Environment.GetFolderPath(Environment.SpecialFolder.System) not hard coding it in) but File.Exists still returns false. The reason I need this is a workaround for ensuring some 3rd party drivers are installed because their registry settings aren't ...

How to have all .Net dlls loaded via Wow64 on a 64 bit machine

I have a 64-bit machine and a bunch of .Net binaries compiled as Any CPU. By default they all get loaded as 64-bit. I thought I remembered a way to set a machine level flag so that all the Any CPU .Net dlls would be treated as 32-bit and not 64-bit by deafult, but I can't seem to find it again. Can someone please point me in the right...

c2593 error (operator identifier is ambiguous) when compiling for x64 platform

I'm trying to compile a C++ project using Microsoft VisualStudio 2008. This particular project compiles fine if you use Win32 as target platform. If I try to compile the same project for the x64 platform I get a C2593 'operator identifier' is ambiguous error in this line: case 't': os_ << (size_t)path->rnode->char_type; break; An...

How to access SQL Server 2005 FROM a guest XP OS running in Virtual PC

I am running as my Host OS - Win 7 x64 and running an instance of SQL Server 2005 (developer, x64). I am also running an instance of Virtual PC XP and am trying to connect to the Host OS Sql Instance without alot of luck. I can ping the Host from the Guest OS and vice versa. The Virtual PC Guest is not using the NAT network adapter, bu...

Access VPN connection on guest Virtual PC from Host OS

Hello, I am running as my Host OS - Win 7 x64 and running an instance of Virtual PC XP. I am running the Cisco ISPec VPN Client on the Guest XP VPC OS and can successfully connect to my company's corporate network. I cannot run the Cisco IPSec client sw on the Host, because it is 64-bit, Cisco doesn't support 64-bit on its IPSec clien...

.net remoting dependency / reference issue

I’m doing maintenance on an asp.net web app that uses remoting to call a remote server object to order a credit report. The call “works on my machine” but throws an exception “could not load file or assembly ‘choicepointClue’” when run from the production server (which is running the 64 bit version of the .net framework). I resolved the...

Why doesn't Edit and Continue work on the x64 CLR?

Microsoft have explained that they won't be supporting Edit and Continue under the x64 CLR in Visual Studio 2010: When creating a new Visual C# Console Application in VS2010 for .NET 4.0, the default target settings for the project is to target the x86 platform instead of Any CPU (MSIL) like Visual Studio 2008 does [...] Ad...

VS2008 C++ app fails to start in Debug mode: This application has failed to start because MSVCR90.dll was not found

I've got a minimal app I just created, using VS 2008 SP1 on Vista x64. Its a Console app, created with the wizard, no MFC or anything, I'm building it in 64bit. When I run the debug exe, on my development box, by pressing F5 in Visual Studio 2008, I get this error: TestApp.exe - Unable To Locate Component This application has failed ...

Detecting multiple linked C runtime on windows

Hi, I have some problems with one of the projects I am working on on windows (64 bits). The program sometimes crash, sometimes does not, and I suspect the problem to be linked with multiple linked C runtime. How can I detect this on windows ? I tried with depends.exe, but it did not report the CRT ...

How and what version of SSMS do I have to install after installing VS 2010?

Hi I installed VS 2010 on a plain Vista x64 OS, now I need to install SSMS as well. Based on your experience, what version do I have to install? Thanks in advance! ...

Are there any advantages to compiling an assembly as x64?

Suppose I have a .Net Framework 3.5 SP1/CLR 2.0 application which needs to run on both x86 and x64 platforms. Suppose as well that for whatever reason, I need to create separate x86 and x64 installation programs. As I have an x64-specific installer anyway, would there be any benefit to recompiling the application itself as x64 rather th...

Win32 API to tell whether a given binary (EXE or DLL) is x86, x64, or ia64

Hello, I am trying to find a programmatic way to tell if a binary is x86, x64, or ia64. Platform: Windows. Language: c/c++. Background: Before trying to load a third-party dll, I need to find out its bitness. Appreciate any pointers. ...

Running 32 bit app using 32 bit com on a 64 bit Windows machine

Hi, I have a C# application using C++ COM object both build on a 32 bit machine. Now I have to run them on a 64 bit machine. I registered the COM object. A corresponding entry was created in the register under computer\hkey_classes_root\wow6432node\clsid{xxx}. However, when I try to run the application it says that |"Retrieving the COM ...

Forcing VS to compile using x86 on x64 platform

Possible Duplicate: compling assemblies on a 64bit plaform for a 32bit Currently I want to compile my project using x86 option since the application uses a 32-bit COM dll which fails since by nature 64-bit OS prefers 64-bit app. But the option of x86 to compile on VS2005 on a x64 platform is disabled. Any idea ...

check if unmanaged dll is 32-bit or 64-bit?

How can I programmatically tell in C# if an unmanaged dll is x86 or x64? ...