windows-server-2003

LoadLibrary: The specified procedure could not be found

◇◆丶佛笑我妖孽 提交于 2021-02-11 05:55:33
问题 I need to extract some things about system process in a windows 2003 server (yeah, in 2019), I made that code in python, and compiled it with auto_py_to_exe When I run the .exe file on the server, I recevbe an error saying "LoadLibrary: The specified procedure could not be found." referring to python37.dll I try to compile like one directory (with the specific dll included), and I try to compile like one file, and I get the following output. 回答1: There'a too big gap between Python 3.7 and Win

C++ MoveFile giving ERROR_ACCESS_DENIED inconsistently for directory moves on Windows Server

醉酒当歌 提交于 2021-01-29 13:24:15
问题 I am having a problem moving a directory to a new location, specifically one I create with CreateDirectory . Here is the code: if (FALSE == CreateDirectory(strDestination, NULL)) { dwError = GetLastError(); if (ERROR_ALREADY_EXISTS != dwError) { strError.Format("Error creating %s: %i", strDestination, dwError); LogIt(strError); } } if (FALSE == MoveFile(strSource, strDestination + strID)) { dwError = GetLastError(); strError.Format("Error moving %s to %s: %i", strSource, strDestination +

Error 1314 when I call AuthzRegisterSecurityEventSource() in Windows 2008 but works in Windows 2003

不打扰是莪最后的温柔 提交于 2021-01-29 10:57:25
问题 New to windows programming here, and I am looking at code that was written for Windows Server 2003 that fails with Windows Server 2008. The code essentially does the following: Calls LookupPrivilageValue(NULL, _T("SeAuditPrivelage"), &luidSeAudit)); to get the LUID struct. Please note, I check the return code of every API call to make sure no problems are encountered. It then adjusts the TOKEN_PRIVELAGES: OpenProcessToken(...); TOKEN_PRIVILEGES tp; tp.PrivilegeCount = 1; tp.Privileges[0]

Send email in VB.Net with tls enabled server

一笑奈何 提交于 2020-02-06 08:44:17
问题 I am developing application for sending an email with TLS enabled SMTP server and this application I want to run on windows server 2003. When I run this same application on window server 2012 R2 its working perfect but it wont work on window server 2003. Is there any specific reason it wont work on window server 2003? Error: SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.7.1 Client was not authenticated. I used below code in my

Send email in VB.Net with tls enabled server

℡╲_俬逩灬. 提交于 2020-02-06 08:43:08
问题 I am developing application for sending an email with TLS enabled SMTP server and this application I want to run on windows server 2003. When I run this same application on window server 2012 R2 its working perfect but it wont work on window server 2003. Is there any specific reason it wont work on window server 2003? Error: SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.7.1 Client was not authenticated. I used below code in my

NHibernate, MySQL, Windows Server 2003 — connection problems

别等时光非礼了梦想. 提交于 2020-02-05 03:40:06
问题 We're using MySQL (5.0.x) on Windows, in an ASP.NET MVC app. Recently, we started using NHibernate in a lot of places, and it works great in the ASP.NET app. On Vista and Windows Server 2008, it still works great everywhere. We've also got a couple command-line tools that use the same codebase, and they work everywhere except on our Windows Server 2003 boxes (otherwise identical to the WS2K8 in every way we can imagine). It seems to be having trouble making connections: TIMESTAMP_HERE [1]

How to enable TLS 1.2 protocol on windows 2003?

不想你离开。 提交于 2020-02-02 13:24:06
问题 I am aware that Windows 2003 SP 2 doesn't support TLS 1.2 protocol. However, is there any workaround to enable this for paypal integration avoiding migrating to windows 2008? Thanks. 回答1: If you mean the usage of IIS with TLS 1.2 on Windows 2003 then the answer will be "You can't". The only way, which I could recommend you is the usage of some another web server on Windows 2003, which uses an alternative SSL/TLS library like OpenSSL for TLS. For example nginx web server. You can download and

Connecting to MySQL from other machines

旧时模样 提交于 2020-01-24 12:29:40
问题 I have MySQL installed on a Windows 2003 server on our domain. I cannot connect to it from other machines on the domain. I open up the MySQL Administrator panel and try to change the server name from localhost to the machine name it does not recognize it. I have tried fully qualifying the name also. Any ideas what I need to change? 回答1: What sort of error, a total inability to connect? Windows Firewall is the first place I'd look, to make sure port 3306 is open. 回答2: have you double checked