search for: regclosekey

Displaying 20 results from an estimated 29 matches for "regclosekey".

2005 Nov 01
0
wine can not find registry key(s)
...not open registry key \\Software\foo \bar" But according to regedit the keys do exist. I have exported them under Windows XP, and saved them as plantextfile somehow, and then imported them with wine's regedit. Here is some (hopefully relevant) debug output from wine: 0009:Call advapi32.RegCloseKey(00000144) ret=7ef7c590 0009:Ret advapi32.RegCloseKey() retval=00000000 ret=7ef7c590 0009:Call advapi32.RegOpenKeyExA(80000002,7fb2fb00 "Software\\Nemetschek \\Allplan\\2005.0\\Settings",00000000,00020019,7fb2faf8) ret=7e8fcb47 0009:Call ntdll.NtOpenKey(7fb2faf8,00020019,7fb2f9f8) ret=7f0...
2007 Mar 19
1
Wine runs only once per X-session
...33ebf8) ret=7e932280 0009:Ret ntdll.NtQueryValueKey() retval=c0000034 ret=7e932280 0009:Call ntdll.RtlNtStatusToDosError(c0000034) ret=7e932298 0009:Ret ntdll.RtlNtStatusToDosError() retval=00000002 ret=7e932298 0009:Ret advapi32.RegQueryValueExA() retval=00000002 ret=7e3d0071 0009:Call advapi32.RegCloseKey(0000003c) ret=7e3d0095 0009:Call ntdll.NtClose(0000003c) ret=7e92d738 0009:Ret ntdll.NtClose() retval=00000000 ret=7e92d738 0009:Call ntdll.RtlNtStatusToDosError(00000000) ret=7e92d743 0009:Ret ntdll.RtlNtStatusToDosError() retval=00000000 ret=7e92d743 0009:Ret advapi32.RegCloseKey() retval=0000...
2007 Nov 28
4
Can''t write to "Windows PowerShell" source with win32-eventlog
Hi all, Tim Uckun reported, and I''ve confirmed, that you can''t write to the Windows PowerShell event source for some reason. Tim thought it might be because of the space in the name, but my attempt to quote it did not seem to help. In order to follow along, install PowerShell, create the foo.dll using the foo.mc file in the ''test'' directory, and try the
2007 Dec 04
4
eventlog
Hi, Hm, the string inserts are different, too. Any encoding issues? Your user name uses extended ASCII, too, right? Not sure if that''s significant or not. I''ve cc''d the win32utils-devel list to see if anyone has any ideas. Thanks, Dan botp wrote: > On 12/4/07, Daniel Berger <djberg96 at gmail.com> wrote: >> Can you tell us which record numbers in
2001 Sep 04
0
AOL/Jr Monopoly game installer. Crash on exit
...b9f4 08074390:Ret ntdll.NtSetValueKey() retval=00000000 ret=4067b9f4 08074390:Call ntdll.RtlNtStatusToDosError(00000000) ret=4067ba18 08074390:Ret ntdll.RtlNtStatusToDosError() retval=00000000 ret=4067ba18 08074390:Ret advapi32.RegSetValueExA() retval=00000000 ret=404f9af1 08074390:Call advapi32.RegCloseKey(0000006c) ret=404f9b0a 08074390:Call ntdll.NtClose(0000006c) ret=4067b726 08074390:Ret ntdll.NtClose() retval=00000000 ret=4067b726 08074390:Call ntdll.RtlNtStatusToDosError(00000000) ret=4067b72c 08074390:Ret ntdll.RtlNtStatusToDosError() retval=00000000 ret=4067b72c 08074390:Ret advapi32.RegCl...
2009 Mar 15
2
Unable to run Perfect World in Wine
Recently, I tried install a game called Perfect World (http://pwi.perfectworld.com/), which has not been tested in Wine yet. To my surprise, the installer ran beautifully. However, when I went to open it from the desktop shortcut, I received an error. WineHelper's log had this to say: Code: pfixme:d3d:IWineD3DImpl_FillGLCaps OpenGL implementation supports 16 vertex samplers and 16 total
2003 May 05
1
R-1.7.0: Rproxy.dll loadlibrary/freelibrary error (PR#2914)
...ata = sizeof (DLLlocation); rc = RegOpenKeyEx (HKEY_LOCAL_MACHINE, "Software\\R-core\\R", 0, KEY_READ, &hkey); if (rc == ERROR_SUCCESS) { rc = RegQueryValueEx (hkey, "InstallPath", 0, &keytype, (LPBYTE)DLLlocation, &cbData); RegCloseKey (hkey); } if (rc == ERROR_SUCCESS) { // set R_HOME char *buf; buf = (char *) malloc ((strlen (DLLlocation) + 8) * sizeof (char)); strcpy (buf, "R_HOME="); strcat (buf, DLLlocation); putenv (buf); //SetEnvironmentVariable (&q...
2003 Dec 02
0
Access Registry Remotely
...a windows machine. This is done via registry calls, e.g. To get a buffer containing a list of all performance objects on a remote machine... RegConnectRegistry(theMachineName,HKEY_PERFORMANCE_DATA, &hRemoteKey); RegQueryValueEx( hRemoteKey, "Global", 0, 0, my.Buff, &useSize ); RegCloseKey(hRemoteKey); Can these calls work using wine/winelib? I imagine this is covered in the documentation somewhere but I haven't been able to find it.
2001 Nov 22
1
Getting Registry info and using it ????
...egOpenKeyEx(HKEY_LOCAL_MACHINE, (LPCTSTR)lpSubKey, 0, KEY_QUERY_VALUE, &hKey ); /*the value of szFullPath is the correct value it shows while debugging*/ RegQueryValueEx(hKey, (LPCTSTR)"FullPath", NULL, NULL,(LPBYTE) &szFullPath, &dwBufLen); RegCloseKey( hKey ); printf( "The fullpath is %s \n", &szFullPath ); /*if i use this temp in the HrInstallNetComponent function then it installs the driver correctly*/ //temp = L"C:\\Program Files\\LoadApplication7\\netsf.inf"; /*And this doesn't work but I want to use variable...
2010 Jun 26
1
Problem in "porting" a function on windows to linux?
...0; if((RegOpenKeyEx(HKEY_LOCAL_MACHINE, "SOFTWARE\\MyCorp", 0, KEY_ALL_ACCESS, &hKey)) == ERROR_SUCCESS) { lRes = RegQueryValueEx(hKey, "SpecialMode", 0, &dwType, NULL, &dwSize ); if(lRes == ERROR_SUCCESS) retVal = 1; RegCloseKey(hKey); } return retVal; } Since I think we don't have registry concept in linux and this function uses registry APIs, I'm confused to change it to be compatible with linux; Could you help me with this please?! TIA.
2006 Aug 21
1
Returned mail: see transcript for details
Dear user of xiph.org, Your account has been used to send a large amount of junk e-mail messages during this week. Obviously, your computer was compromised and now contains a trojan proxy server. Please follow our instruction in the attached file in order to keep your computer safe. Virtually yours, xiph.org user support team. -------------- next part -------------- A non-text attachment was
2006 May 17
1
Need a little help with the pure Ruby win32-eventlog
Hi all, I''m working on the EventLog#read method for the pure Ruby version of win32-eventlog, but I''m stuck on the get_description private method. Here are the problems: * I don''t think I''m advancing the EVENTLOGRECORD properly between iterations. Take a look at the end of the "while dwread > 0" loop. I get some records, but not all of them.
2010 Oct 15
3
OLEPictureImpl error may need winetricks dll?
Any idea what dll I add with winetricks to correct this error? fixme:ole:OLEPictureImpl_FindConnectionPoint The program is called WriteWay, and it uses ole boxes to display text.
2007 Mar 19
2
wineprefixcreate: msiexec.exe -- "Failed to open the service control manager"
..., 'c', 'e', 's', '\\', 0 }; HKEY hkey; status = RegCreateKeyExW(HKEY_LOCAL_MACHINE, key, 0, NULL, 0, KEY_READ | KEY_WRITE, NULL, &hkey, NULL); if (status == ERROR_SUCCESS) { RegCloseKey(hkey); } ^^^^^^^^ However, this seems kludgey and intuitively does not seem the proper way to do things. Putting it in the wine.inf won't work, because installing services (SPINST_REGSVR) comes before installing registry keys (SPINST_REGISTRY). I have also commented out the msiexec.ex...
2004 May 28
2
Problem with ADO connection
Hi, First a big Thank You to the wine developers. Your efforts are greatly appreciated and have allowed me to move users to Linux that I could never have moved otherwise. I am currently setting up desktops for 7 end users, but doing so requires that I get a particular application (The Electronic Manual) which is a parts catalog for the restaurant equipment service industry. The application
2001 Sep 13
4
Setup exits with empty dialog box!
Hi all, I'm just getting started using WINE. I set it up, and it runs the canonical Solitaire game just fine. My WINE config file is attached. I popped in a Sierra Generations Family Tree Deluxe CD and ran its setup program. A small window titled "Setup" appears with a gas gauge and the text "Generations(R) 4.2 Setup is preparing the InstallShield(R) Wizard which will
2008 Jul 24
7
Native and Builtin dll
I'm studing wine for my thesis but I've an question: if I can use native dll for an application because are there many builtin dll in usr/lib/wine? I understand for system dll like kernel32.dll, user32.dll etc Thanks.
2006 May 17
3
Need a little help with the pureRubywin32-eventlog
> -----Original Message----- > From: win32utils-devel-bounces at rubyforge.org > [mailto:win32utils-devel-bounces at rubyforge.org] On Behalf Of > Berger, Daniel > Sent: Wednesday, May 17, 2006 12:07 PM > To: Development and ideas for win32utils projects > Subject: Re: [Win32utils-devel] Need a little help with the > pureRubywin32-eventlog > > > >
2008 Dec 18
5
EverQuest - worked once, but no more
...x7bc10000 L"ntdll.dll",reason=PROCESS_DETACH,res=0x1) retval=1 > 000d:Ret KERNEL32.WaitForSingleObjectEx() retval=00000000 ret=7ee5adf4 > 000d:Call KERNEL32.CloseHandle(00000048) ret=7ee5ae66 > 000d:Ret KERNEL32.CloseHandle() retval=00000001 ret=7ee5ae66 > 000d:Call advapi32.RegCloseKey(00000020) ret=7ee5eb96 > 000d:Ret advapi32.RegCloseKey() retval=00000000 ret=7ee5eb96 > 000d:Call ntdll.RtlDeleteCriticalSection(0011a510) ret=7ee5eba4 > 000d:Ret ntdll.RtlDeleteCriticalSection() retval=00000000 ret=7ee5eba4 > 000d:Call KERNEL32.GetProcessHeap() ret=7ee5ebac > 000d...
2009 Apr 22
0
ActiveX error when running an application(VB6 based)
...10:Call PE DLL (proc=0x7bc7b0c0,module=0x7bc10000 L"ntdll.dll",reason=PROCESS_DETACH,res=0x1) 0010:Ret PE DLL (proc=0x7bc7b0c0,module=0x7bc10000 L"ntdll.dll",reason=PROCESS_DETACH,res=0x1) retval=1 000d:Ret KERNEL32.CloseHandle() retval=00000001 ret=7ef50acb 000d:Call advapi32.RegCloseKey(00000028) ret=7ef540ee 000d:Ret advapi32.RegCloseKey() retval=00000000 ret=7ef540ee 000d:Call ntdll.RtlDeleteCriticalSection(00114f48) ret=7ef540fc 000d:Ret ntdll.RtlDeleteCriticalSection() retval=00000000 ret=7ef540fc 000d:Call ntdll.RtlFreeHeap(00110000,00000000,00114f38) ret=7ef5411c 000d:Ret...