similar to: Samba-EventLog-HOWTO

Displaying 20 results from an estimated 200 matches similar to: "Samba-EventLog-HOWTO"

2005 Oct 14
1
smbcacls add acl fails 3.0.20
Hi all! I have a problem setting ACLs on a remote file on a Windows XP Pro SP2 box. I issue the following command: smbcacls -a 'ACL:BBI-DEV\beakid:ALLOWED/0/0x00100116' -U 'BBI-DEV \Admin' //BBI-DEV/Data /Niva.txt And I get this response from debug level 3. Password: Connecting to host=BBI-DEV Connecting to 192.168.1.124 at port 445 Doing spnego session setup (blob
2005 Oct 17
1
smbcacls add fails 3.0.20a
Hi all! I have a problem setting ACLs on a remote file on a Windows XP Pro SP2 box. I issue the following command: smbcacls -a 'ACL:BBI-DEV\beakid:ALLOWED/0/0x00100116' -U 'BBI-DEV \Admin' //BBI-DEV/Data /Niva.txt And I get this response from debug level 3. Password: Connecting to host=BBI-DEV Connecting to 192.168.1.124 at port 445 Doing spnego session setup (blob
2005 Sep 07
2
WANTED: mod_ntlm_winbind developer
I need some assistance from a talented C programmer, preferably with some experience in Apache 2.0 module development. For a while, I have had a version of mod_ntlm_winbind cleaned up to work with ntlm_auth, and handling both NTLM and Negotiate HTTP authentication via Samba 3 and Samba4's ntlm_auth utility. I have not had the time or energy to properly maintain (it needs basic auth added),
2007 Aug 23
0
Bug in win32-eventlog, grabbing descriptions
Hi all, I know that once upon a time I said that we shouldn''t use DONT_RESOLVE_DLL_REFERENCES (line 698), but it appears that this was wrong headed thinking for win32-eventlog. A couple of folks have complained that they couldn''t get descriptions for event records in some cases, and I have a strong feeling that''s the culprit. Can anyone see a downside to using
2006 Dec 17
0
FormatMessage issue in eventlog.rb - more clues
Hi all, Ok, I''m getting closer on this get_description failure and the mscoree.dll file. It has something to do with the way we''re calling FormatMessage(). Consider the following C code, which behaves exactly the same way as the current Ruby code: #include <windows.h> #include <stdio.h> int main(){ HMODULE hmod; int rv; char buf[4096]; char* dll
2006 May 17
0
Need a little help with the pure Rubywin32-eventlog
> -----Original Message----- > From: win32utils-devel-bounces at rubyforge.org > [mailto:win32utils-devel-bounces at rubyforge.org] On Behalf Of > Heesob Park > Sent: Tuesday, May 16, 2006 9:51 PM > To: Development and ideas for win32utils projects > Subject: Re: [Win32utils-devel] Need a little help with the > pure Rubywin32-eventlog > > > Hi, > >
2006 May 18
0
Need a little help withthe pureRubywin32-eventlog
Note to anyone paying attention - this was solved off list. Apparently I just goofed the patch. Dan > -----Original Message----- > From: win32utils-devel-bounces at rubyforge.org > [mailto:win32utils-devel-bounces at rubyforge.org] On Behalf Of > Daniel Berger > Sent: Wednesday, May 17, 2006 10:24 PM > To: Development and ideas for win32utils projects > Subject: Re:
2006 May 20
0
EventLog#tail is broken
I just discovered something awful. The EventLog#tail method does not work the way I thought it did. Instead of picking up new events as they''re added, it''s really just iterating backwards through the current event log backwards. Look at this sample below. The first record is correct. Then another event happens, but instead of the latest record, I get an *earlier*
2006 May 20
1
EventLog#tail followup
The solution I see is something like this: * Set a @last instance variable in the constructor. * In the read_last_record function, check to see if @last is nil. If it is nil, then it''s our first read. Use the current approach, and set @last to the record number. * If @last isn''t nil, use EVENTLOG_FORWARDS_READ | EVENTLOG_SEEK_READ flags instead, and use @last + 1 as the
2006 May 29
0
win32-eventlog 0.4.0
Pe?a wrote: > # Ok, fixed and released as 0.4.1. Thanks for the report! > > Hi Dan, > > the new change_notify does not exhibit the resource error anymore. > BUT it skips (and does not log) some records. > > Tail is much better and does not skip. > > kind regards -botp > NotifyChangeEventLog() only checks every five seconds, max, iirc. If an app logs more
2004 Nov 01
0
buffer size for win32-eventlog (was infiniteloop bug...)
Thank you very much. :) Dan > -----Original Message----- > From: win32utils-devel-bounces@rubyforge.org > [mailto:win32utils-devel-bounces@rubyforge.org] On Behalf Of > win32utils-devel@rubyforge.org > Sent: Friday, October 29, 2004 7:12 PM > To: win32utils-devel@rubyforge.org > Subject: Re:[Win32utils-devel] buffer size for win32-eventlog > (was infiniteloop bug...)
2004 Oct 14
0
More on the description problem in win32-eventlog
I think I''ve narrowed it down to this call in eventlog.h hModule = LoadLibraryEx( szExeFilePath, 0, DONT_RESOLVE_DLL_REFERENCES ); In all cases where the description is returning nil instead of actual text, this appears to be the culprit. I''ll do some more research. In the meantime, ideas welcome. :) Dan
2004 Oct 17
0
Plans for eventlog and service - feedback wanted
Hi all, I''ve almost got win32-eventlog 0.3.0 ready to go. There are some minor tweaks to the API, but everything is still backwards compatable. But, what I really want to discuss is setting up a default event source for Ruby. Here''s what I''m thinking - offer the option of installing a "RubyMsg" event source when you install win32-eventlog. The name
2004 Oct 18
0
RE: Another Interesting "Problem" with Win32-EventLog
> -----Original Message----- > From: Joey Gibson [mailto:joey@joeygibson.com] > Sent: Monday, October 18, 2004 9:29 AM > To: Ruby-Talk; Berger, Daniel > Subject: Another Interesting "Problem" with Win32-EventLog > > > After Daniel patched the Win32-EventLog code to properly handle > "strange" event messages (I''ll leave it to Daniel to
2004 Oct 18
0
RE: Another Interesting "Problem" with Win32-EventLog
> -----Original Message----- > From: Joey Gibson [mailto:joey@joeygibson.com] > Sent: Monday, October 18, 2004 10:07 AM > To: Berger, Daniel > Cc: win32utils-devel@rubyforge.org > Subject: Re: Another Interesting "Problem" with Win32-EventLog > > > Berger, Daniel wrote: > > > I cannot duplicate this on my Windows XP Pro box here at work. > >
2004 Oct 19
0
RE: Another Interesting "Problem" with Win32-EventLog
> -----Original Message----- > From: Joey Gibson [mailto:joey@joeygibson.com] > Sent: Tuesday, October 19, 2004 6:11 AM > To: ruby-talk@ruby-lang.org; Berger, Daniel > Subject: Re: Another Interesting "Problem" with Win32-EventLog > > > Daniel Berger wrote: > > >After getting home from work today I tried again on my home machine. > >My
2004 Jul 02
0
win32-eventlog-0.2.2 released
Hi all, I''ve released 0.2.2 of win32-eventlog. There was a rather nasty bug in the read() method I hadn''t noticed before - it wasn''t reading all the records! In addition, this package officially requires Ruby 1.8.0 or later, as I have replaced the STR2CSTR() functions with StringValuePtr(). Let me know if you find any bugs. Thanks. Dan
2004 Mar 04
0
win32-eventlog-0.2.1 released
Give it a shot, lemme know how it goes. Dan
2011 Feb 02
0
[ win32utils-Bugs-28904 ] Gem win32-eventlog v0.5.2 on Ruby 1.9.1 and 1.9.2
Bugs item #28904, was opened at 2011-02-02 18:41 You can respond by visiting: http://rubyforge.org/tracker/?func=detail&atid=411&aid=28904&group_id=85 Category: win32-eventlog Group: Code Status: Open Resolution: None Priority: 3 Submitted By: Jason Bourne (jbourne) Assigned to: Nobody (None) Summary: Gem win32-eventlog v0.5.2 on Ruby 1.9.1 and 1.9.2 Initial Comment: 1.Requirement:
2016 May 20
0
[Bug 752] Lack of Message file and Eventlog Application Source registry entries result in event log errors
https://bugzilla.mindrot.org/show_bug.cgi?id=752 kevin.m.smyth+mindrot at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kevin.m.smyth+mindrot at gmail | |.com --- Comment #4 from