Re: Active Directory: GPOs

2005-06-29 Thread Matt Clark
Could you be more specific about what GPO settings you want to alter? Are they administrative templates, advertised applications, etc? Matt Clark Unit Head, Desktop Services IT Department UCSD Libraries Alan Peck [EMAIL PROTECTED] 06/28/05 10:59PM Is this possible using Perl scripts

Re: Active Directory: GPOs

2005-06-29 Thread Matt Clark
, you could just read and edit the file with your Perl script... the file format is here: http://msdn.microsoft.com/library/en-us/policy/policy/registry_policy_file_format.asp Hope that helps. Matt Clark Unit Head, Desktop Services IT Department UCSD Libraries Alan Peck [EMAIL PROTECTED] 06/29/05

RE: Active Directory

2005-06-10 Thread Matt Clark
All of the examples from the Active Directory Cookbook by O'Reilly are available in Perl online: http://www.rallenhome.com/books/adcookbook/code.html That should be more than enough to get anyone started using Perl for manipulating AD. Matt Clark Unit Head, Desktop Services IT Department UCSD

Re: Help with Win32::API?

2005-05-26 Thread Matt Clark
::API-new, new Win32::API, etc). Any other thoughts? Matt Clark Unit Head, Desktop Services IT Department UCSD Libraries Sisyphus [EMAIL PROTECTED] 05/25/05 09:35PM - Original Message - From: Sisyphus [EMAIL PROTECTED] The function is called DsBrowseForContainer() - not as you have

Re: Help with Win32::API?

2005-05-26 Thread Matt Clark
First hurdle cleared... someone pointed out to me that function names need to be case-sensitive, so DsBrowseForContainerW should work... but now I'm getting a separate error after calling Win32::API-Import on that function... $^E is coming up as Class already exists. Help? Matt Clark Unit

Help with Win32::API?

2005-05-25 Thread Matt Clark
I've just started playing around with Win32::API, and I'm trying to import the DSBrowseForContainerW function from dsuiext.dll ( http://msdn.microsoft.com/library/en-us/ad/ad/dsbrowseforcontainer.asp ), but I can't seem to get it working. Can someone tell me what's wrong with the following