Thanks Thanks:  0
Dislikes Dislikes:  0
Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 22
  1. #11
    Technician
    Join Date
    May 2018
    Location
    Sacramento
    Posts
    18
    Rep Power
    12

    Re: Populating the address book

    Sample of the output


  2. #12
    Technician
    Join Date
    May 2018
    Location
    Sacramento
    Posts
    18
    Rep Power
    12

    Re: Populating the address book

    Quote Originally Posted by NeoMatrix View Post
    What is the "adfind" trying to execute ?

    Is "adfind" a konmin or macintosh command for searching a string ?
    AdFind

  3. #13
    Senior Tech. 2,500+ Posts NeoMatrix's Avatar
    Join Date
    Nov 2010
    Location
    Sunshine State QLD.
    Posts
    3,514
    Rep Power
    104

    Re: Populating the address book

    Quote Originally Posted by SoCi0pAtH View Post
    I have download an run the command line Adfind app. I don't have an LDAP server that I can test with Adfind.

    Being a command line app the standard output of Adfind can be redirected to a typed file. Eg. adfind [s/w params] > temp.txt

    The redirected temp.txt can then be used inside any batch file commands directly.

    Example only:
    ----------------------------------------
    echo off
    cls
    type nul > addr.txt

    setlocal ENABLEDELAYEDEXPANSION ENABLEEXTENSIONS

    Adfind [s/w params] > temp.txt

    for /f "tokens=1-9*,delims=," %%i in ('type temp.txt') do (

    echo %%i,%%j,%%k,%%l,%%m,%%n,%%o,%%p,%%r >> addr.txt

    )
    endlocal


    ---------8<-----------------------------

    Note the commas "," between the echo line variable tokens.
    Leave out the variable tokens that are not required in the final "addr.txt" output file.

    You're on the right track....


    A quick look at the adfind help file shows there are a few output file options.
    Some of the options allow for customised *.csv file output.
    Inauguration to the "AI cancel-culture" fraternity 1997...
    •••••• •••[§]• |N | € | o | M | Δ | t | π | ‘ | x | •[§]••• ••••••

  4. #14
    Technician
    Join Date
    May 2018
    Location
    Sacramento
    Posts
    18
    Rep Power
    12

    Re: Populating the address book

    Quote Originally Posted by NeoMatrix View Post
    I have download an run the command line Adfind app. I don't have an LDAP server that I can test with Adfind.

    Being a command line app the standard output of Adfind can be redirected to a typed file. Eg. adfind [s/w params] > temp.txt

    The redirected temp.txt can then be used inside any batch file commands directly.

    Example only:
    ----------------------------------------
    echo off
    cls
    type nul > addr.txt

    setlocal ENABLEDELAYEDEXPANSION ENABLEEXTENSIONS

    Adfind [s/w params] > temp.txt

    for /f "tokens=1-9*,delims=," %%i in ('type temp.txt') do (

    echo %%i,%%j,%%k,%%l,%%m,%%n,%%o,%%p,%%r >> addr.txt

    )
    endlocal


    ---------8<-----------------------------

    Note the commas "," between the echo line variable tokens.
    Leave out the variable tokens that are not required in the final "addr.txt" output file.

    You're on the right track....


    A quick look at the adfind help file shows there are a few output file options.
    Some of the options allow for customised *.csv file output.
    If you look at my original post/code you'll see I'm already outputting to a CSV file. Its a little hard to see because i'm naming the file with a var that is populated by the name of the OU being processed.


    1st for - ADFIND queries a base OU one level deep only for names of OU's.
    I write the header/column names for my CSV (each one) and name the csv after the OU being processed
    For Each OU name a second for loop is called that queries the OU for a list of User objects
    For each User object several ADFINDS are called that populate the user data in Vars
    When the user data is collected its written to my CSV file in CSV format.

    This repeats until all OU's and their users have been processed. I end up with about 40 csv files, named after the OU/Office. I can then connect to the printer and upload the correct CSV with the correct users for the location.

    The script is working now, I'm having an issue with OU's that have spaces in the name that I havent had time to workout. IF the OU has spaces in the name the second ADFIND fails

  5. #15
    Technician
    Join Date
    May 2018
    Location
    Sacramento
    Posts
    18
    Rep Power
    12

    Re: Populating the address book

    Quote Originally Posted by NeoMatrix View Post
    I have download an run the command line Adfind app. I don't have an LDAP server that I can test with Adfind.
    Online LDAP Test Server - Forum Systems

  6. #16
    Technician
    Join Date
    May 2018
    Location
    Sacramento
    Posts
    18
    Rep Power
    12

    Re: Populating the address book

    Softterra LDAP browser is free and a great quick way to GUI browse a LDAP server. Its a easy way to see what attributes you can query and what you can expect as an output. It also comes populated with some free test ldap servers.

    Softerra LDAP Browser

  7. #17
    Technician
    Join Date
    May 2018
    Location
    Sacramento
    Posts
    18
    Rep Power
    12

    Re: Populating the address book

    Working code

    Code:
    echocls
    Taskkill /IM Excel.exe /F
    setlocal enabledelayedexpansion
    
    
    for /f "delims=" %%i in ('adfind ^-nodn ^-list ^-s one ^-soao ^-f objectclass^=OrganizationalUnit ^-b ^"OU^=Users^-Corporate^,OU^=UserAccounts^,DC^=mycompany^,DC^=int^" OU') do (
    	echo =============================Processing OU %%i========================================
    	echo Abbreviated name,E-Mail: E-Mail Address,SMB: Host Address,SMB: File Path,SMB: User ID,SMB: Password,WellUse> "%%i.csv"
    	for /f "delims=" %%j in ('adfind ^-soao -b "OU=%%i,OU=Users-Corporate,OU=UserAccounts,DC=mycompany,DC=int" ^-f objectclass^=person ^-list sAMAccountName') do (
    		set abbreviated=
    		set first=
    		set last=
    		set destination=SMB
    		set mail=
    		set password="XXXXXXX"
    		set smbhost=myserver
    		set smbpath=users\
    		set smbid=CRP-PRT
    		echo  Adding %%j to site %%i
    		for /f "delims=" %%k in ('adfind -b ^"OU^=Users^-Corporate^,OU^=UserAccounts^,DC^=mycompany^,DC^=int^" ^-nodn ^-nocsvheader ^-list ^-f ^"sAMAccountName^=%%j^" displayName') do set abbreviated=%%k
    		for /f "delims=" %%m in ('adfind -b ^"OU^=Users^-Corporate^,OU^=UserAccounts^,DC^=mycompany^,DC^=int^" ^-nodn ^-nocsvheader ^-list ^-f ^"sAMAccountName^=%%j^" givenname') do set first=%%m
    		for /f "delims=" %%q in ('adfind -b ^"OU^=Users^-Corporate^,OU^=UserAccounts^,DC^=mycompany^,DC^=int^" ^-nodn ^-nocsvheader ^-list ^-f ^"sAMAccountName^=%%j^" sn') do set last=%%q
    		for /f "delims=" %%r in ('adfind -b ^"OU^=Users^-Corporate^,OU^=UserAccounts^,DC^=mycompany^,DC^=int^" ^-nodn ^-nocsvheader ^-list ^-f ^"sAMAccountName^=%%j^" mail') do set mail=%%r
            	echo !abbreviated!,!mail!,!smbhost!,!smbpath!!first!.!last!\scans,!smbid!,!password!
    		Echo
    	        echo !abbreviated!,!mail!,!smbhost!,!smbpath!!first!.!last!\scans,!smbid!,!password!>> "%%i.csv"
    		)
    	rem "C:\Program Files\Microsoft Office 15\root\Office15\excel.exe" "c:\scripts\%%i.csv"      
    	)

  8. #18
    Senior Tech. 2,500+ Posts NeoMatrix's Avatar
    Join Date
    Nov 2010
    Location
    Sunshine State QLD.
    Posts
    3,514
    Rep Power
    104

    Re: Populating the address book

    Quote Originally Posted by SoCi0pAtH View Post

    [snip]

    The script is working now, I'm having an issue with OU's that have spaces in the name that I havent had time to workout. IF the OU has spaces in the name the second ADFIND fails

    Example of how to remove spaces.

    --------------------------------
    echo off
    cls
    setlocal ENABLEDELAYEDEXPANSION

    set OU_Text= The Cat Sat On The Mat

    rem remove spaces here with ": ="
    set NoSpaces=!OU_Text: =!

    echo !NoSpaces!
    --------8<------------------------

    c:\> TheCatSatOnTheMat
    Inauguration to the "AI cancel-culture" fraternity 1997...
    •••••• •••[§]• |N | € | o | M | Δ | t | π | ‘ | x | •[§]••• ••••••

  9. #19
    Technician
    Join Date
    May 2018
    Location
    Sacramento
    Posts
    18
    Rep Power
    12

    Re: Populating the address book

    Quote Originally Posted by NeoMatrix View Post
    Example of how to remove spaces.

    --------------------------------
    echo off
    cls
    setlocal ENABLEDELAYEDEXPANSION

    set OU_Text= The Cat Sat On The Mat

    rem remove spaces here with ": ="
    set NoSpaces=!OU_Text: =!

    echo !NoSpaces!
    --------8<------------------------

    c:\> TheCatSatOnTheMat
    The spaces need to be there for Distinguished name (cant be modified) or it wont work. I have to figure out how to get CMD to ignore the spaces in the command while its running.

  10. #20
    Senior Tech. 2,500+ Posts NeoMatrix's Avatar
    Join Date
    Nov 2010
    Location
    Sunshine State QLD.
    Posts
    3,514
    Rep Power
    104

    Re: Populating the address book

    Some sample batch code using the public debian LDAP server.

    Cut and paste the below batch code.

    Should people decide to run this code, it will load the debian public LDAP server OU=users, all 1.4MB of user data.
    The final filtered output will only output the first random 50 lines, for the sake of keeping it simple.

    The purpose of posting this code is give those interested a start point within the LDAP topic.
    Apology for the broken CTN text formatting when posting. People will have to fix the text over wrapping format themselves.
    ----------------------------------------------------------------------------------

    echo off
    setlocal ENABLEDELAYEDEXPANSION ENABLEEXTENSIONS
    cls
    echo ************* LDAP Server Query. ********************
    echo This batch file Querys a public internet LDAP server.
    echo Output is limited to 50 lines of formatted text.
    echo This is a totally random LDAP filter demonstration.
    echo Author:Neomatrix, www.copytechnet.com
    echo ***********************************[Ver 1.1]*********
    echo.
    echo Running...... please wait....

    rem -------------------- Main --------------
    rem Debian host is anonymous login, no password required.
    set LDAP_Host=db.debian.org:389
    set datafile="_ldaphost.txt"
    set csvfile="outfile.txt"
    set "T= "
    for /L %%i in (1,1,70) do set "Bar=!Bar!="
    rem set maxlines high value to output all lines.
    set /a maxlines=50
    rem matching fields to output
    set /a matching=4

    call :Init !LDAP_Host! !datafile!
    call :Header !csvfile!
    call :Body !datafile! !csvfile!
    call :Footer !csvfile!
    call :CRT_Display !csvfile!
    goto End


    rem ----------------- Init -----------------
    :Init LDAP_Host datafile
    set host=-h %1 -simple -up
    rem set sw=-list -s one -soao
    set "sw="
    set params=-b ou=users,dc=debian,dc=org

    (adfind %host% %sw% %params%) > %2
    echo Host query done...

    exit /b

    rem ---------------- Header ----------------
    :Header outfile
    echo !Bar! > %1
    echo First!T!Last!T!!T!PGP Key!T!!T!URL >>%1
    echo !Bar! >> %1
    exit /b

    rem ------------------ Filter -------------
    :Body datafile csvfile
    set /a max=0
    set /a block=0
    set /a sameblock=1
    set /a seeklines=0

    for /f "tokens=1* delims=:" %%i in (%~1) do (
    set id=%%i:
    set value=%%j

    rem *** filter values from datafile ***
    rem add more search and output fields here.
    rem must increment the "matching" variable to suite.

    if "!id!"=="dn:" set /a block=!block!+1
    set /a seeklines=!seeklines!+1

    if !block!==!sameblock! (
    if "!id!"==">cn:" (set cname=!value!
    set /a cnt=!cnt!+1)
    if "!id!"==">sn:" (set sname=!value!
    set /a cnt=!cnt!+1)
    if "!id!"==">labeledURI:" (set aUrl=!value!
    set /a cnt=!cnt!+1)
    if "!id!"==">keyFingerPrint:" (set Pgp=!value!
    set /a cnt=!cnt!+1)

    ) else (

    rem *** Output valid user block. Limit to 50 users while testing***
    rem *** Only output user values greater equal to above 4 matching fields
    set /a sameblock=!block!

    if !cnt! GEQ !matching! (
    echo !cname!,!sname!,!Pgp:~0,16!,!aUrl!>> %2
    set /a cnt=0
    rem **limit max lines output**
    set /a max=!max!+1
    if !max!==!maxlines! exit /b

    )))
    exit /b

    rem ---------------- Footer ----------------
    :Footer outfile
    echo !Bar! >> %1
    echo Search lines: !seeklines! truncated at : !maxlines! >> %1
    exit /b

    rem ---------------- CRT Display ----------------
    :CRT_Display outfile
    type %1
    exit /b

    :End
    endlocal
    timeout /t 15

    -----------8<--------------------------------------------------------------------

    Sample output from the above batch file.

    First----Last--------- PGP Key-------- WEB
    =================================================
    Klaus, Kettner, 556054EA47665DE, die-kettners.de
    Yasuhiro, Araki, BADAB1EEB153F41, profile of yasu/Ar
    Mark, Howard, 7DDF975E73435AC, http://www.tildemh.com
    Zhao, Way, 7DDF975E73435AC, http://www.tildemh.com
    Massimo, Dal Zotto, F9AB00C13E3A812, http://people.debian.org/~dz/
    Thomas, Bushnell, A7676E0D4B855C1, http://www.mit.edu/~tb
    Mark, Ng, A7676E0D4B855C1, http://www.mit.edu/~tb
    Jφrgen, Hδgg, 2F033C55478C67F, http://people.debian.org/~rb/
    Michael, Schiansky, F369DA7EB08B032, http://www.dummdoof.de
    Chris, Davis, F369DA7EB08B032, http://www.lrtw.org
    Last edited by NeoMatrix; 06-16-2018 at 12:19 AM. Reason: Bug in code. Optimise code.
    Inauguration to the "AI cancel-culture" fraternity 1997...
    •••••• •••[§]• |N | € | o | M | Δ | t | π | ‘ | x | •[§]••• ••••••

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Get the Android App
click or scan for the Copytechnet Mobile App

-= -= -= -= -=


IDrive Remote Backup

Lunarpages Internet Solutions

Advertise on Copytechnet

Your Link Here