Guest kalpesh Posted July 4, 2007 Posted July 4, 2007 i want to create a named pipe with FILE_CREATE_PIPE_INSTANCE access rights. for that i have to create one security discriptor but i dont which type of secirity discriptor i use to cerate namaed pipe with FILE_CREATE_PIPE_INSTANCE rights. while creating security discriptor i dont want to use ConvertStringSecurityDescriptorToSecurityDescriptor funciton because i am going to build this code in DDK and DDK not support this function. so give me suggestion about security discriptor for FILE_CREATE_PIPE_INSTANCE access rights.. Thanks in advance.. Kalpesh
Guest Tony Sperling Posted July 4, 2007 Posted July 4, 2007 Re: How to CreateNamedPipe with FILE_CREATE_PIPE_INSTANCE access rights This is not an issue we deal a lot with here, but you can try this link: http://msdn2.microsoft.com/en-us/library/aa365600.aspx if it doesn't answer your question, it may lead you further? Tony. . . "kalpesh" <kalpeshgedia@gmail.com> wrote in message news:1183547794.990788.105220@i13g2000prf.googlegroups.com... > i want to create a named pipe with FILE_CREATE_PIPE_INSTANCE access > rights. > for that i have to create one security discriptor but i dont which > type of secirity discriptor i use to cerate namaed pipe with > FILE_CREATE_PIPE_INSTANCE rights. > > while creating security discriptor i dont want to use > ConvertStringSecurityDescriptorToSecurityDescriptor funciton because > i am going to build this code in DDK and DDK not support this > function. > > so give me suggestion about security discriptor for > FILE_CREATE_PIPE_INSTANCE access rights.. > > Thanks in advance.. > Kalpesh >
Guest kalpesh Posted July 5, 2007 Posted July 5, 2007 Re: How to CreateNamedPipe with FILE_CREATE_PIPE_INSTANCE access rights Re: How to CreateNamedPipe with FILE_CREATE_PIPE_INSTANCE access rights On Jul 4, 4:40 pm, "Tony Sperling" <tony.sperl...@dbREMOVEmail.dk> wrote: > This is not an issue we deal a lot with here, but you can try this link: > > http://msdn2.microsoft.com/en-us/library/aa365600.aspx > > if it doesn't answer your question, it may lead you further? > > Tony. . . > > "kalpesh" <kalpeshge...@gmail.com> wrote in message > > news:1183547794.990788.105220@i13g2000prf.googlegroups.com... > > > > > i want to create a named pipe with FILE_CREATE_PIPE_INSTANCE access > > rights. > > for that i have to create one security discriptor but i dont which > > type of secirity discriptor i use to cerate namaed pipe with > > FILE_CREATE_PIPE_INSTANCE rights. > > > while creating security discriptor i dont want to use > > ConvertStringSecurityDescriptorToSecurityDescriptor funciton because > > i am going to build this code in DDK and DDK not support this > > function. > > > so give me suggestion about security discriptor for > > FILE_CREATE_PIPE_INSTANCE access rights.. > > > Thanks in advance.. > > Kalpesh- Hide quoted text - > > - Show quoted text - http://msdn2.microsoft.com/en-us/library/aa365600.aspx i go though this link but this link is not more helpful to me so please give me some more detail
Guest Tony Sperling Posted July 5, 2007 Posted July 5, 2007 Re: How to CreateNamedPipe with FILE_CREATE_PIPE_INSTANCE access rights Re: How to CreateNamedPipe with FILE_CREATE_PIPE_INSTANCE access rights I'm affraid this is over my head, there is one other link I found that seems to mention creating a Descriptor and a few other things: http://www.tenouk.com/Supplement.html here, (a bit down the page) it is uncovered how to create a Default Descriptor for newly created Directories and such things. If it doesn't help you, I would stick with MSDN and their search function or find a dedicated developer group - http://news://microsoft.public.development.device.drivers is but one that comes to mind. We are generally speaking quite helpfull here, but you may be wasting some time before someone with the necessary background see's this. We are mostly dealing in general ramifications around the 64bit User Interface. Tony. . . "kalpesh" <kalpeshgedia@gmail.com> wrote in message news:1183610846.102993.193280@d30g2000prg.googlegroups.com... > On Jul 4, 4:40 pm, "Tony Sperling" <tony.sperl...@dbREMOVEmail.dk> > wrote: > > This is not an issue we deal a lot with here, but you can try this link: > > > > http://msdn2.microsoft.com/en-us/library/aa365600.aspx > > > > if it doesn't answer your question, it may lead you further? > > > > Tony. . . > > > > "kalpesh" <kalpeshge...@gmail.com> wrote in message > > > > news:1183547794.990788.105220@i13g2000prf.googlegroups.com... > > > > > > > > > i want to create a named pipe with FILE_CREATE_PIPE_INSTANCE access > > > rights. > > > for that i have to create one security discriptor but i dont which > > > type of secirity discriptor i use to cerate namaed pipe with > > > FILE_CREATE_PIPE_INSTANCE rights. > > > > > while creating security discriptor i dont want to use > > > ConvertStringSecurityDescriptorToSecurityDescriptor funciton because > > > i am going to build this code in DDK and DDK not support this > > > function. > > > > > so give me suggestion about security discriptor for > > > FILE_CREATE_PIPE_INSTANCE access rights.. > > > > > Thanks in advance.. > > > Kalpesh- Hide quoted text - > > > > - Show quoted text - > > http://msdn2.microsoft.com/en-us/library/aa365600.aspx > i go though this link but this link is not more helpful to me so > please give me some more detail > >
Recommended Posts