From ddc7825be1d1e522f969cfab7db4b69c28d23143 Mon Sep 17 00:00:00 2001 From: reiyua Date: Fri, 12 Apr 2024 19:33:06 +1000 Subject: [PATCH] Modify line 15 to be more specific --- AutoUserADCreator.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AutoUserADCreator.ps1 b/AutoUserADCreator.ps1 index b6f226b..cc55fda 100644 --- a/AutoUserADCreator.ps1 +++ b/AutoUserADCreator.ps1 @@ -12,7 +12,7 @@ import-module ActiveDirectory $UPN = Read-Host -Prompt "Please enter the Active Directory Forest name (example.com)" #Get user to specify path of the CSV file containing user info to be added into the Active Directory. -$fpath = Read-Host -Prompt "Please enter the path to your CSV file:" +$fpath = Read-Host -Prompt "Please enter the path to your CSV file containing user info to be added to the OU's within the Active Directory Domain Forest:" # Check if CSV file exists with the path specified by the end-user # If so, error out the program with generic error stating so. (RAYYAN Contribution)