vbs voor gebruikers toevoegen

Pagina: 1
Acties:
  • 73 views sinds 30-01-2008

  • Mysteryman
  • Registratie: Februari 2001
  • Laatst online: 20:36

Mysteryman

kan jij wat ik kan...

Topicstarter
Ik weet niet of ik hier goed zit dus ik heb um 2x gepost

In windows 2000 kan je automatisch gebruikers aanmaken door middel van een script. Dus ik zoeken en dus ook gevonden maar nu is het volgende probleem. Het script maakt met behulp van een excel sheet netjes die gebruikers aan... Maar als ik invul bij de home directory "connect G:\ to \\servernaam\share\%username%"
vult ie dat wel netjes in maar hij maakt de home directories niet aan... hieronder staat het script met wat uitleg...


' Windows Script Host Sample Script
'
' ------------------------------------------------------------------------
' Copyright (C) 1996 Microsoft Corporation
'
' You have a royalty-free right to use, modify, reproduce and distribute
' the Sample Application Files (and/or any modified version) in any way
' you find useful, provided that you agree that Microsoft has no warranty,
' obligations or liability for any Sample Application Files.
' ------------------------------------------------------------------------
'
'This script is adds users from the Windows NT DS
'via ADSI. The script reads an EXCEL spreadsheet that contains a page
'of users to add.
'
'The sample uses the directory root "LDAP://DC=ArcadiaBay,DC=Com"
'Change the directory path in the EXCEL spreadsheet to match your DS
'before running this sample.
'
'
'
'To add users, run ADDUSERS.VBS with %windir%\"Your Samples Directory Here"\AddUsers.XLS.
'To Delete users, run DELUSERS.VBS with %windir%\"Your Samples Directory Here"\DelUsers.XLS.


Dim oXL
Dim u
Dim c
Dim root
Dim ou
Dim TextXL
Dim CRLF
dim oArgs

'Get the command line args
set oArgs=wscript.arguments

CRLF = Chr(13) & Chr(10)

'If no command line arguments provided, prompt for file containing users to add/delete
If oArgs.Count = 0 Then
TextXL = InputBox("This scripts reads an Excel spreadsheet and adds" & _
"users from the Windows NT DS via ADSI." & CRLF & CRLF & _
"Before starting, change the DS root in the EXCEL spreadsheet to match " & _
"your DS." & CRLF & CRLF & _
"Type in the path of a file containing users to add or delete" & CRLF & CRLF & _
"Sample Add User file: ADDUSERS.XLS" & CRLF & _
"Sample Delete User file: DELUSERS.XLS" & CRLF)
'Else file containing users is the first argument
Else
TextXL = oArgs.item(0)
End If

If TextXL = "" Then
WScript.Echo "No input file provided. Stopping the script now."
WScript.Quit(1)
End If

'We will use ou to control loop, so set initial value to null
ou = ""

'Start EXCEL and display it to the user
Set oXL = WScript.CreateObject("EXCEL.application")
oXL.Visible = True

'Open the workbook passed in the command line
oXL.workbooks.open TextXL

'Activate the Add page
oXL.sheets("Add").Activate

'Put the cursor in the starting cell and read the DS root
oXL.ActiveSheet.range("A2").Activate ' this cell has the DS root in it

'Show it to the user
'WScript.Echo oXL.activecell.Value

'This is the starting point in the ds
root = oXL.activecell.Value

'Step to the next row
oXL.activecell.offset(1, 0).Activate

'Until we run out of rows
Do While oXL.activecell.Value <> ""

'if the requested OU is a new one...
If oXL.activecell.Value <> ou Then
'Pick up the OU name...
ou = oXL.activecell.Value

'Compose the ADSI path...
s = "LDAP://" + ou+"," + root

'Show it to the user...
WScript.Echo s

'And get the object
Set c = GetObject(s)
End If

'Compose the user common name name from first and last names...
uname = "CN=" + oXL.activecell.offset(0, 1).Value + " " + oXL.activecell.offset(0, 2).Value

'Create the new user object...
Set u = c.Create("user", uname)

'Set the properties of the new user
u.Put "givenName", oXL.activecell.offset(0, 1).Value 'givenName
u.Put "sn", oXL.activecell.offset(0, 2).Value 'sn
u.Put "sAMAccountName", oXL.activecell.offset(0, 3).Value 'Sam Acct
u.Put "homeDirectory", oXL.activecell.offset(0, 4).Value 'homeDirectory (<-- dit is dus de home directory)
u.Put "homeDrive", oXL.activecell.offset(0, 5).Value 'homeDrive (<-- dit is dus de mapping (G:\)
u.Put "scriptPath", oXL.activecell.offset(0, 6).Value 'scriptPath


'Enable the account, must change pw @ logon
u.Put "useraccountcontrol",65536

'...and update the DS
u.SetInfo

'Done with this object, discard it
Set u = Nothing

'Step to the next user...
oXL.activecell.offset(1, 0).Activate 'Next row
Loop

'Done. close excel spreadsheet
oXL.application.quit

Everybody happy??? I soon change that here we go...


  • whoami
  • Registratie: December 2000
  • Laatst online: 22:16
Misschien kun je best eens te raden gaan bij de makers van dat script, in dit geval Microsoft.
Cross-posten is niet echt gewenst.

https://fgheysels.github.io/


Dit topic is gesloten.