Ureader.com  
Microsoft software help and Community
   home   |   control panel login   |   archive   |  
 
platform
active.directory
adsi
adsi.iis-admin
base
com_ole
complus_mts
component_svcs
database
directx
gdi
graphics_mm
internet.client
internet.server
internet.server.isapi-dev
localization
mapi
messaging
msi
mslayerforunicode
multimedia
networking
networking.ipv6
sdk_install
security
shell
telephony.tapi_2
telephony.tapi_3
telephony.tsp
telephony.wte
tools
ui
ui_shell
win_base_svcs
win16
  
 
date: 12 Jun 2006 12:25:59 -0700,    group: microsoft.public.platformsdk.networking        back       


NotifyAddrChange() failed for non-admin account on Windows 2000.   
Hey guys,

I am having problem calling NotifyAddrChange() method for a non-admin
user account on Windows 2000 machine. The error returned is 110, which
is ERROR_OPEN_FAILED.

Basically I use NotifyAddrChange() to register my interest of knowing
when IP address is changed. This works fine for Windows XP and Windows
2000 user account with admin rights. I cannot find anywhere, either in
MSDN or Google, that said this method should be only used for an admin
user?? And that does not make much sense for me :-)

Can anyone provide any information for this, or poine me to the right
direction?

This is how I called the method:
{
    HANDLE              hNotUaed          = NULL;
    OVERLAPPED  OverLapped      = {0};
    OverLapped.hEvent                    = SomeEventMonitored
    DWORD          dwResult2 = NotifyAddrChange(&hNotUaed,
&OverLapped);;

}

Thanks in advance!

HR
date: 12 Jun 2006 12:25:59 -0700   author:   unknown

Re: NotifyAddrChange() failed for non-admin account on Windows 2000.   
No , MSDN stand nothing about admin rights so that don't need them.
I used it without admin rights too and in both cases ERROR_IO_PENDING
( 997 ) return on start which is OK for it
Arkady

 wrote in message 
news:1150140359.247192.162460@h76g2000cwa.googlegroups.com...
> Hey guys,
>
> I am having problem calling NotifyAddrChange() method for a non-admin
> user account on Windows 2000 machine. The error returned is 110, which
> is ERROR_OPEN_FAILED.
>
> Basically I use NotifyAddrChange() to register my interest of knowing
> when IP address is changed. This works fine for Windows XP and Windows
> 2000 user account with admin rights. I cannot find anywhere, either in
> MSDN or Google, that said this method should be only used for an admin
> user?? And that does not make much sense for me :-)
>
> Can anyone provide any information for this, or poine me to the right
> direction?
>
> This is how I called the method:
> {
>    HANDLE              hNotUaed          = NULL;
>    OVERLAPPED  OverLapped      = {0};
>    OverLapped.hEvent                    = SomeEventMonitored
>    DWORD          dwResult2 = NotifyAddrChange(&hNotUaed,
> &OverLapped);;
>
> }
>
> Thanks in advance!
>
> HR
>
date: Tue, 13 Jun 2006 09:49:17 +0200   author:   Arkady Frenkel

Re: NotifyAddrChange() failed for non-admin account on Windows 2000.   
Arkady, Thanks for the reply!

Did you use it without admin rights on Windows XP or Windows 2000? For
me, I can also use it with no problem on Windows XP. I only have
problem calling it on Windows 2000 for non-admin accounts.

HR

Arkady Frenkel wrote:
> No , MSDN stand nothing about admin rights so that don't need them.
> I used it without admin rights too and in both cases ERROR_IO_PENDING
> ( 997 ) return on start which is OK for it
> Arkady
>
>  wrote in message
> news:1150140359.247192.162460@h76g2000cwa.googlegroups.com...
> > Hey guys,
> >
> > I am having problem calling NotifyAddrChange() method for a non-admin
> > user account on Windows 2000 machine. The error returned is 110, which
> > is ERROR_OPEN_FAILED.
> >
> > Basically I use NotifyAddrChange() to register my interest of knowing
> > when IP address is changed. This works fine for Windows XP and Windows
> > 2000 user account with admin rights. I cannot find anywhere, either in
> > MSDN or Google, that said this method should be only used for an admin
> > user?? And that does not make much sense for me :-)
> >
> > Can anyone provide any information for this, or poine me to the right
> > direction?
> >
> > This is how I called the method:
> > {
> >    HANDLE              hNotUaed          = NULL;
> >    OVERLAPPED  OverLapped      = {0};
> >    OverLapped.hEvent                    = SomeEventMonitored
> >    DWORD          dwResult2 = NotifyAddrChange(&hNotUaed,
> > &OverLapped);;
> >
> > }
> >
> > Thanks in advance!
> >
> > HR
> >
date: 13 Jun 2006 06:03:08 -0700   author:   unknown

Re: NotifyAddrChange() failed for non-admin account on Windows 2000.   
No , that in XP only , I'll try to fnd W2K to try it there in advance
Arkady

 wrote in message 
news:1150203788.432915.82790@i40g2000cwc.googlegroups.com...
> Arkady, Thanks for the reply!
>
> Did you use it without admin rights on Windows XP or Windows 2000? For
> me, I can also use it with no problem on Windows XP. I only have
> problem calling it on Windows 2000 for non-admin accounts.
>
> HR
>
> Arkady Frenkel wrote:
>> No , MSDN stand nothing about admin rights so that don't need them.
>> I used it without admin rights too and in both cases ERROR_IO_PENDING
>> ( 997 ) return on start which is OK for it
>> Arkady
>>
>>  wrote in message
>> news:1150140359.247192.162460@h76g2000cwa.googlegroups.com...
>> > Hey guys,
>> >
>> > I am having problem calling NotifyAddrChange() method for a non-admin
>> > user account on Windows 2000 machine. The error returned is 110, which
>> > is ERROR_OPEN_FAILED.
>> >
>> > Basically I use NotifyAddrChange() to register my interest of knowing
>> > when IP address is changed. This works fine for Windows XP and Windows
>> > 2000 user account with admin rights. I cannot find anywhere, either in
>> > MSDN or Google, that said this method should be only used for an admin
>> > user?? And that does not make much sense for me :-)
>> >
>> > Can anyone provide any information for this, or poine me to the right
>> > direction?
>> >
>> > This is how I called the method:
>> > {
>> >    HANDLE              hNotUaed          = NULL;
>> >    OVERLAPPED  OverLapped      = {0};
>> >    OverLapped.hEvent                    = SomeEventMonitored
>> >    DWORD          dwResult2 = NotifyAddrChange(&hNotUaed,
>> > &OverLapped);;
>> >
>> > }
>> >
>> > Thanks in advance!
>> >
>> > HR
>> >
>
date: Tue, 13 Jun 2006 23:00:50 +0200   author:   Arkady Frenkel

Re: NotifyAddrChange() failed for non-admin account on Windows 2000.   
Thanks in advance :-)

I am waiting for your results...

HR

Arkady Frenkel wrote:
> No , that in XP only , I'll try to fnd W2K to try it there in advance
> Arkady
>
>  wrote in message
> news:1150203788.432915.82790@i40g2000cwc.googlegroups.com...
> > Arkady, Thanks for the reply!
> >
> > Did you use it without admin rights on Windows XP or Windows 2000? For
> > me, I can also use it with no problem on Windows XP. I only have
> > problem calling it on Windows 2000 for non-admin accounts.
> >
> > HR
> >
> > Arkady Frenkel wrote:
> >> No , MSDN stand nothing about admin rights so that don't need them.
> >> I used it without admin rights too and in both cases ERROR_IO_PENDING
> >> ( 997 ) return on start which is OK for it
> >> Arkady
> >>
> >>  wrote in message
> >> news:1150140359.247192.162460@h76g2000cwa.googlegroups.com...
> >> > Hey guys,
> >> >
> >> > I am having problem calling NotifyAddrChange() method for a non-admin
> >> > user account on Windows 2000 machine. The error returned is 110, which
> >> > is ERROR_OPEN_FAILED.
> >> >
> >> > Basically I use NotifyAddrChange() to register my interest of knowing
> >> > when IP address is changed. This works fine for Windows XP and Windows
> >> > 2000 user account with admin rights. I cannot find anywhere, either in
> >> > MSDN or Google, that said this method should be only used for an admin
> >> > user?? And that does not make much sense for me :-)
> >> >
> >> > Can anyone provide any information for this, or poine me to the right
> >> > direction?
> >> >
> >> > This is how I called the method:
> >> > {
> >> >    HANDLE              hNotUaed          = NULL;
> >> >    OVERLAPPED  OverLapped      = {0};
> >> >    OverLapped.hEvent                    = SomeEventMonitored
> >> >    DWORD          dwResult2 = NotifyAddrChange(&hNotUaed,
> >> > &OverLapped);;
> >> >
> >> > }
> >> >
> >> > Thanks in advance!
> >> >
> >> > HR
> >> >
> >
date: 14 Jun 2006 07:00:53 -0700   author:   unknown

Google
 
Web ureader.com


    COPYRIGHT 2007, YARDI TECHNOLOGY LIMITED, ALL RIGHT RESERVE  |   contact us