windows64

Configure ASP.NET to use x86 on x64 Windows

痞子三分冷 提交于 2019-12-05 08:30:18
I am trying to deploy GAL Modifier , which is an ASP.NET website which uses Microsoft Access on a Windows 2003 x64 machine. However there is no JET driver on x64 (see here ), so the change is to use change the target CPU to x86. However as it is a web site there is no option in Visual Studio except Any CPU, so how can I change the settings to force it to use x86? You may want to put a 1 or 0 on the end of that statement rather than "true" http://support.microsoft.com/kb/894435/en-us You should make the application pool 32 bit. Go to Application Pools in IIS7 Management Console, right click

Windows 64位下 PostgreSQL的编译

橙三吉。 提交于 2019-12-04 03:40:04
首先本文是根据 权宗亮先生 的 Windows 平台编译PostgreSQL 进而完成的,特此说明。 由于编译Windows下64位的 PostgreSQL(下面简称PG ),所需的依赖包,大部分无法直接使用,所以 这里着重讲一下依赖包的编译过程(没有这些包也是可以完成编译的,但是这些辅助包能更好地将PG的)。 一、编译环境: Windows 7 旗舰版 Service Pack 1,VS2008 Express版。 二、所需下载的依赖包: 1、 Perl : 是一种脚本语言,在字符串匹配等方面有很突出的优点。 2、 Openssl : SSL 是 Secure Socket Layer (安全套接层协议)的缩写,可以在 Internet 上提供秘密性传输。 3、 Zlib : 是一种事实上的 业界标准 ,以至于在标准文档中,zlib和 DEFLATE 常常互换使用。数以千计的应用程序直接或间接依靠zlib压缩函式库。我所使用的是1.2.7,这里只有源码包,没有直接可用的,所以必须进行编译安装。安装过程如下:(1)打开VS 2008 x64命令提示 (2)进入zlib目录里边的masmx64目录下(C:\zlib-1.2.7\contrib\masmx64),运行bld_ml64.bat (3)进入zlib-1.2.7\contrib\vstudio\vc9\目录

pyserial for Python 2.7.2

假如想象 提交于 2019-12-03 08:39:43
问题 I'm new to Python. According to the internets I was looking for the module pyserial after receiving this error: ImportError: No module named serial I first tried to install pywin32, it went well. But it seems not to contain pyserial. :-( Then I found a single module installer for pyserial, I was not able to install it, it says it did not found the path to python in the registry. :-( After that I found this module on python.org, but I don't know what to do, it does not come with an installer.

How to install VB6 SP6 on Windows 8.1 x64?

血红的双手。 提交于 2019-12-03 06:09:55
Need to support some old projects directly in the newest OS, not in a virtual machine. I've installed VB6 from the VS6 disk #1 successfully, but I cannot install the SP6 for this development environment. When I launch it, an information window that informs me about the installation progress appears for some milliseconds, but the required files (ADVPACK.DLL, msvbvm60.dll, ...) aren't updated in the system folder. The About dialog in VB6 IDE also proves that - I do not see "SP6" anywhere in it. How to install the SERVICE PACK 6 (not the VB IDE itself) in this OS? Solved my "problem" - very

pyserial for Python 2.7.2

随声附和 提交于 2019-12-02 21:12:20
I'm new to Python. According to the internets I was looking for the module pyserial after receiving this error: ImportError: No module named serial I first tried to install pywin32 , it went well. But it seems not to contain pyserial. :-( Then I found a single module installer for pyserial, I was not able to install it, it says it did not found the path to python in the registry. :-( After that I found this module on python.org, but I don't know what to do, it does not come with an installer. :-( How can I add pyserial to Python (64) 2.7 on Windows 7 64 ? Constantinius You could try it with

“The command line is too long” — when running maven test

戏子无情 提交于 2019-12-01 06:39:10
Running $mvn test on a 64-bit Windows gives me the following error, even if I do $mvn test -Dgwt.genParam=false : The command line is too long Make sure you are using version 2.16 and that you have the useManifestOnlyJar option (as documented here). For example: <project> [...] <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.16</version> <configuration> <useManifestOnlyJar>true</useManifestOnlyJar> </configuration> </plugin> </plugins> </pluginManagement> </build> [...] </project> This will

Solving install issues with Python 3.4 on Windows

别来无恙 提交于 2019-11-29 22:14:52
I have recently tried to install Python 3.4 as an alternative installation on my system in an attempt to familiarise myself before migrating code. My main Python installation is 2.7.6. I tried the 64 bit installer for Windows, but it came up with an error message There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor. After this the install is rolled back (from the point shown below): I have eventually found a solution to this posted below and decided to share in case anyone else

Wrapper for `__m256` Producing Segmentation Fault with Constructor - Windows 64 + MinGW + AVX Issues

走远了吗. 提交于 2019-11-29 10:37:11
I have a union that looks like this union bareVec8f { __m256 m256; //avx 8x float vector float floats[8]; int ints[8]; inline bareVec8f(){ } inline bareVec8f(__m256 vec){ this->m256 = vec; } inline bareVec8f &operator=(__m256 m256) { this->m256 = m256; return *this; } inline operator __m256 &() { return m256; } } the __m256 needs to be aligned on 32 byte boundary to be used with SSE functions, and should be automatically, even within the union. And when I do this bareVec8f test = _mm256_set1_ps(1.0f); I get a segmentation fault. This code should work because of the constructor I made. However,

Solving install issues with Python 3.4 on Windows

家住魔仙堡 提交于 2019-11-28 18:39:27
问题 I have recently tried to install Python 3.4 as an alternative installation on my system in an attempt to familiarise myself before migrating code. My main Python installation is 2.7.6. I tried the 64 bit installer for Windows, but it came up with an error message There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor. After this the install is rolled back (from the point shown

Why can't 64-bit Windows unwind user-kernel-user exceptions?

泄露秘密 提交于 2019-11-28 16:27:17
问题 Why can't 64-bit Windows unwind the stack during an exception, if the stack crosses the kernel boundary - when 32-bit Windows can? The context of this entire question comes from: The case of the disappearing OnLoad exception – user-mode callback exceptions in x64 Background In 32-bit Windows, if i throw an exception in my user mode code, that was called back from kernel mode code, that was called from my user mode code, e.g: User mode Kernel Mode ------------------ -------------------