Jump to content

Win7 LDAP/AD Wierdness


ChrisK
 Share

Recommended Posts

I'm using the following code snippet to add a computer account to a group in Active Directory, and it is working properly.

$oGroup = ObjGet("LDAP://CN=" & $vGroupName & "-StandardWorkstations,OU=Groups,OU=" & $vSiteOU & ",DC=domain,DC=net")
$oGroup.Add("LDAP://CN=" & @ComputerName & ",OU=" & $vDevTOU & ",OU=Workstations,OU=" & $vSiteOU & ",DC=domain,DC=net")
$oGroup.SetInfo

My problem is that on Windows 7 a folder structure and file is created in the script folder when it is run. If I run my script from C:\Script.exe it creates the following structure: C:\%LOCALAPPDATA%\Microsoft\Windows\SchCache\domain.net.sch

The file appears from all indications to be a normal copy of the LDAP schema, but I'm not sure why it would be writing out to this location when this process is called from an AutoIt executable, and if there is any way to fix it (this doesn't happen when I do the same thing through VBScript).

My assumption is that the script is trying to write to the %LOCALAPPDATA% system variable when it runs in Windows 7, and I can access that system variable without issue outside of the script, so I'm not sure why it would create a folder with that name.

Link to comment
Share on other sites

Would you be so kind to test with my Active Directory UDF (for download please see my signature) and so something like:

_AD_Open()
$iResult = _AD_CreateComputer("OU=" & $vDevTOU & ",OU=Workstations,OU=" & $vSiteOU & ",DC=domain,DC=net", @ComputerName, @Username)
ConsoleWrite("Result: " & $iResult & ", @error: " & @error & @CRLF)
_AD_Close()

To join the computer to the domain use _AD_JoiNDomain.

Edited by water

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (NEW 2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...