Useing scrips to create student profiles.

Channel:
Subscribers:
127
Published on ● Video Link: https://www.youtube.com/watch?v=Wv3LDd1VZmA



Duration: 0:00
135 views
4


The script is a Powershell script.
Copy and paste from here:
https://docs.google.com/document/d/1_QSzPxTu_sHroZJlialycaNJaifbnizSV7F2WjgMHH8/edit?usp=sharing

Excell functions:
For newer versions of Excel:
=TEXTSPLIT(A1, ", ")

For older excel:
=Trim(LEFT(A1, FIND(",", A1) - 1))
=Trim(RIGHT(A1, LEN(A1) - FIND(",", A1) - 1))

Folder creation text
\\Server\Student\Gr8\Test_8A\Class\%username%
\\Server\Student\Gr8\Test_8A\Exam\%username%_Test

Hope this helps.
The error that popped up while the script was running:
New-ADUser : The operation failed because UPN value provided for addition/modification is not unique forest-wide
At C:\1.Script\411Users.ps1:19 char:3
New-ADUser `
~~~~~~~~~~~~
CategoryInfo : NotSpecified: (CN=Lehakoe PULE...rligIT,DC=local:String) [New-ADUser], ADException
FullyQualifiedErrorId : ActiveDirectoryServer:8648,Microsoft.ActiveDirectory.Management.Commands.NewADUser

This error means that the user name is already in use. remember User names only allow for 15 characters.

In the works!!!!
Working on an automatic register when students log in.
Working on excellent solutions to collect and tabulate marks from pat documents

Any other request and or feedback please.