Punti chiave
- Efficienza di PowerShell: Lo script utilizza PowerShell per creare un account utente locale e gestirlo in modo efficiente.
- Funzionalità avanzate: Lo script per creare un account utente locale include la pianificazione per l’abilitazione/disabilitazione degli account e l’aggiunta di utenti ai gruppi di amministrazione.
- Sicurezza automatizzata: Lo script per creare un account utente locale genera automaticamente password sicure, migliorando la sicurezza degli account.
- Gestione del tempo: Risparmio di tempo nella gestione degli account utente, particolarmente utile per gli MSP.
- Script personalizzabile: Lo script per creare un account utente locale consente la personalizzazione attraverso parametri definiti dall’utente.
- Pianificazione delle attività: Lo script per creare un account utente locale è in grado di pianificare attività per abilitare o disabilitare gli account in momenti specifici.
- Gestione del gruppo: Facilita l’aggiunta di utenti a gruppi specifici, compresi gli amministratori.
- Adattabilità per la creazione di account in blocco: Pur essendo stato progettato per gli account individuali, può essere adattato per la creazione di utenti in blocco.
- Implicazioni per la sicurezza: Si evidenzia la necessità di un controllo rigoroso degli accessi e di una verifica regolare.
- Compatibilità con NinjaOne: Lo script per creare un account utente locale può essere integrato con NinjaOne per una gestione IT centralizzata.
Nell’attuale panorama digitale, la gestione efficiente degli account utente è fondamentale per i professionisti IT. PowerShell, un potente linguaggio di scripting con una shell a riga di comando, offre un modo dinamico per gestire queste attività. In questo articolo viene analizzato uno script PowerShell utile non solo per creare un account utente locale, ma che fornisce anche opzioni per la pianificazione e la gestione dei gruppi, mostrando la sua utilità in vari ambienti IT.
Background
Questo script PowerShell per creare un account utente locale si distingue per la capacità di creare account utente locali con funzionalità avanzate, come la pianificazione delle date di attivazione/disattivazione e l’aggiunta di utenti al gruppo di amministrazione locale. Queste funzionalità sono particolarmente importanti per i professionisti IT e i Managed Service Provider (MSP) che gestiscono un gran numero di account utente e devono garantire un accesso tempestivo e sicuro ai sistemi.
Lo script per creare un account utente locale:
#Requires -Version 5.1 <# .SYNOPSIS Create a local user account with options to enable and disable at specific dates, and add to local admin group. Saves randomly generated password to a custom field. .DESCRIPTION You can specify when the account will be enabled and/or disabled. You can have the account be added as a member of the local Administrators group. PARAMETER: -UserNameToAdd "JohnTSmith" -Name "John T Smith" Create use with the name JohnTSmith and display name of John T Smith. .EXAMPLE -UserNameToAdd "JohnTSmith" -Name "John T Smith" ## EXAMPLE OUTPUT ## User JohnTSmith has been created successfully. User JohnTSmith was added to the local Users group. PARAMETER: -UserNameToAdd "JohnTSmith" -Name "John T Smith" -DateAndTimeToEnable "Monday, January 1, 2020 1:00:00 PM" Create use with the name JohnTSmith and display name of John T Smith. The user will start out disabled. A scheduled task will be create to enable the user after "Monday, January 1, 2020 1:00:00 PM" .EXAMPLE -UserNameToAdd "JohnTSmith" -Name "John T Smith" -DateAndTimeToEnable "Monday, January 1, 2020 1:00:00 PM" ## EXAMPLE OUTPUT ## User JohnTSmith has been created successfully. User JohnTSmith was added to the local Users group. Created Scheduled Task: Enable User JohnTSmith User JohnTSmith will be able to login after Monday, January 1, 2020 1:00:00 PM. PARAMETER: -UserNameToAdd "JohnTSmith" -Name "John T Smith" -DisableAfterDays 10 Create use with the name JohnTSmith and display name of John T Smith. The user will be disabled after 10 days after the user's creation. .EXAMPLE -UserNameToAdd "JohnTSmith" -Name "John T Smith" -DisableAfterDays 10 ## EXAMPLE OUTPUT ## User JohnTSmith has been created successfully. User JohnTSmith was added to the local Users group. PARAMETER: -UserNameToAdd "JohnTSmith" -Name "John T Smith" -AddToLocalAdminGroup Create use with the name JohnTSmith and display name of John T Smith. User will be added as a member of the local Administrators group. .EXAMPLE -UserNameToAdd "JohnTSmith" -Name "John T Smith" -AddToLocalAdminGroup ## EXAMPLE OUTPUT ## User JohnTSmith has been created successfully. User JohnTSmith was added to the local Users group. User JohnTSmith was added to the local Administrators group. .OUTPUTS None .NOTES Minimum OS Architecture Supported: Windows 10, Windows Server 2016 Release Notes: Initial Release By using this script, you indicate your acceptance of the following legal terms as well as our Terms of Use at https://www.ninjaone.com/terms-of-use. Ownership Rights: NinjaOne owns and will continue to own all right, title, and interest in and to the script (including the copyright). NinjaOne is giving you a limited license to use the script in accordance with these legal terms. Use Limitation: You may only use the script for your legitimate personal or internal business purposes, and you may not share the script with another party. Republication Prohibition: Under no circumstances are you permitted to re-publish the script in any script library or website belonging to or under the control of any other software provider. Warranty Disclaimer: The script is provided “as is” and “as available”, without warranty of any kind. NinjaOne makes no promise or guarantee that the script will be free from defects or that it will meet your specific needs or expectations. Assumption of Risk: Your use of the script is at your own risk. You acknowledge that there are certain inherent risks in using the script, and you understand and assume each of those risks. Waiver and Release: You will not hold NinjaOne responsible for any adverse or unintended consequences resulting from your use of the script, and you waive any legal or equitable rights or remedies you may have against NinjaOne relating to your use of the script. EULA: If you are a NinjaOne customer, your use of the script is subject to the End User License Agreement applicable to you (EULA). #> [CmdletBinding()] param ( [Parameter()] [String]$UserNameToAdd, [Parameter()] [String]$Name, [Parameter()] [String]$PasswordCustomField, [Parameter()] [int]$PasswordLength, [Parameter()] [DateTime]$DateAndTimeToEnable, [Parameter()] [int]$DisableAfterDays, [Parameter()] [Switch]$AddToLocalAdminGroup, [Parameter()] $PasswordOptions ) begin { function Test-IsElevated { $id = [System.Security.Principal.WindowsIdentity]::GetCurrent() $p = New-Object System.Security.Principal.WindowsPrincipal($id) $p.IsInRole([System.Security.Principal.WindowsBuiltInRole]::Administrator) } function New-SecurePassword { [CmdletBinding()] param ( [Parameter(Mandatory = $false)] [int]$Length = 16, [Parameter(Mandatory = $false)] [bool]$IncludeSpecialCharacters = $true ) # .NET class for generating cryptographically secure random numbers $cryptoProvider = New-Object System.Security.Cryptography.RNGCryptoServiceProvider $SpecialCharacters = if ($IncludeSpecialCharacters) { '!@#$%&-' } $passwordChars = "abcdefghjknpqrstuvwxyzABCDEFGHIJKMNPQRSTUVWXYZ0123456789$SpecialCharacters" $password = for ($i = 0; $i -lt $Length; $i++) { $byte = [byte[]]::new(1) $cryptoProvider.GetBytes($byte) $charIndex = $byte[0] % $passwordChars.Length $passwordChars[$charIndex] } return $password -join '' } function New-LocalUserFromNinja { param( [string]$Username, [string]$Name, [string]$PasswordCustomField, [DateTime]$EnableDate, [int]$DisableAfterDays, [switch]$AddToLocalAdminGroup ) # Generate a secure localUserPassword $Password = New-SecurePassword -Length $PasswordLength -IncludeSpecialCharacters $true if ($Username -and $Name) { # Check if the user already exists if (-not (Get-LocalUser -Name $Username -ErrorAction SilentlyContinue)) { # Create new local user $UserSplat = @{ Name = "$Username" FullName = "$Name" Password = ConvertTo-SecureString -String $($Password -join '') -AsPlainText -Force Description = "User account created on $(Get-Date)" PasswordNeverExpires = $false } if ($EnableDate -and $EnableDate -gt (Get-Date)) { $UserSplat['Disabled'] = $true } if (-not $EnableDate -and $DisableAfterDays) { $UserSplat['AccountExpires'] = $(Get-Date).AddDays($DisableAfterDays) } elseif ($DisableAfterDays) { $UserSplat['AccountExpires'] = $(Get-Date $EnableDate).AddDays($DisableAfterDays) } if ($env:passwordOptions -like 'Password Never Expires' -or $PasswordOptions -like 'Password Never Expires') { $UserSplat['PasswordNeverExpires'] = $true } New-LocalUser @UserSplat if ($env:passwordOptions -like 'User Must Change Password' -or $PasswordOptions -like 'User Must Change Password') { net.exe user $Username /logonpasswordchg:yes } # Write it to a secure custom field if ((Get-LocalUser -Name $Username -ErrorAction SilentlyContinue)) { Write-Host "User $Username has been created successfully." if ($PasswordCustomField -like "null") { Write-Host "CustomField not specified." Write-Host "Password set to: $Password" } else { Ninja-Property-Set -Name "$PasswordCustomField" -Value "$Password" Write-Host "Password saved to $PasswordCustomField Custom Field." } } else { throw "Failed to create User $Username." } Add-LocalGroupMember -Group $(Get-LocalGroup -Name "Users") -Member $Username Write-Host "User $UserName was added to the local Users group." # If date to enable account is specified, disable account until then if ($EnableDate) { if ($EnableDate -gt (Get-Date)) { # Schedule a job to enable the user at the specified date $TaskSplat = @{ Description = "Ninja Automation Enable User $Username" Action = New-ScheduledTaskAction -Execute "powershell.exe" -Argument "-NoProfile -WindowStyle Hidden -Command & {Enable-LocalUser -Name `"$Username`"}" Trigger = New-ScheduledTaskTrigger -Once -At $EnableDate Principal = New-ScheduledTaskPrincipal -UserId "SYSTEM" -LogonType ServiceAccount } try { New-ScheduledTask @TaskSplat | Register-ScheduledTask -User "System" -TaskName "Enable User $Username" | Out-Null if ($(Get-ScheduledTask -TaskName "Enable User $Username")) { Write-Host "Created Scheduled Task: Enable User $Username" } else { throw "Failed to find scheduled task with the name 'Enable User $Username'" } } catch { Write-Error $_ throw "Failed to create Enable User scheduled task." } Write-Host "User $Username will be able to login after $EnableDate." } } else { Write-Host "No Enable Date is Set, $UserName is able to login now." } # Add to local admin group if specified if ($AddToLocalAdminGroup) { Add-LocalGroupMember -Group $(Get-LocalGroup -Name "Administrators") -Member $Username if (-not (Get-LocalGroupMember -Group $(Get-LocalGroup -Name "Administrators") -Member $Username)) { throw "Failed to add user to local Administrators group." } Write-Host "User $UserName was added to the local Administrators group." } } else { Write-Host "User $Username already exists." } } else { throw "Username and Name are required to create a local account." } } } process { if ($env:usernameToAdd -and $env:usernameToAdd -like "null") { Write-Error "usernameToAdd($env:usernameToAdd) parameter is invalid." exit 1 } if ($env:name -and $env:name -like "null") { Write-Error "name($env:name) parameter is invalid." exit 1 } if ($env:passwordCustomField -and $env:passwordCustomField -like "null") { Write-Error "passwordCustomField($env:passwordCustomField) parameter is invalid." exit 1 } if (-not (Test-IsElevated)) { Write-Error -Message "Access Denied. Please run with Administrator privileges." exit 1 } $params = @{ Username = if ($PSBoundParameters.ContainsKey("UserNameToAdd")) { $UserNameToAdd }else { $env:usernameToAdd } Name = if ($PSBoundParameters.ContainsKey("Name")) { $Name }else { $env:name } } # Conditionally add EnableDate if ($env:dateAndTimeToEnable -and $env:dateAndTimeToEnable -notlike "null") { $params["EnableDate"] = Get-Date "$env:dateAndTimeToEnable" } elseif ($PSBoundParameters.ContainsKey("DateAndTimeToEnable") -and $DateAndTimeToEnable) { $params["EnableDate"] = $DateAndTimeToEnable } # Conditionally add DisableAfterDays if ($env:disableAfterDays -notlike "null") { $params["DisableAfterDays"] = $env:disableAfterDays } elseif ($PSBoundParameters.ContainsKey("DisableAfterDays")) { $params["DisableAfterDays"] = $DisableAfterDays } # Conditionally add AddToLocalAdminGroup if ([Convert]::ToBoolean($env:addToLocalAdminGroup)) { $params["AddToLocalAdminGroup"] = $true } elseif ($PSBoundParameters.ContainsKey("AddToLocalAdminGroup")) { $params["AddToLocalAdminGroup"] = $AddToLocalAdminGroup } # Conditionally add AddToLocalAdminGroup if ($env:passwordCustomField -notlike "null") { $params["PasswordCustomField"] = $env:passwordCustomField } elseif ($env:passwordCustomField -like "null") { Write-Error "passwordCustomField: is Required" exit 1 } elseif ($PSBoundParameters.ContainsKey("PasswordCustomField")) { $params["PasswordCustomField"] = $PasswordCustomField } if ($env:passwordLength -notlike "null") { $PasswordLength = $env:passwordLength } elseif (-not $passwordLength) { $PasswordLength = 20 } try { New-LocalUserFromNinja @params } catch { Write-Error $_ exit 1 } } end { }
Accedi a oltre 700 script nel Dojo di NinjaOne
Analisi dettagliata dello script per creare un account utente locale
Lo script per creare un account utente locale è strutturato in diverse sezioni chiave, ognuna delle quali svolge un compito specifico:
- Definizione dei parametri: Vengono dichiarati parametri come UserNameToAdd, Name e DateAndTimeToEnable, che consentono di personalizzare l’input dell’utente.
- Funzioni: Vengono definite funzioni critiche come Test-IsElevated, New-SecurePassword e New-LocalUserFromNinja. Test-IsElevated verifica la presenza di privilegi amministrativi, New-SecurePassword genera una password sicura e New-LocalUserFromNinja racchiude la funzionalità principale di creazione e gestione degli utenti.
- Creazione e gestione degli utenti: Lo script per creare un account utente locale controlla se l’utente specificato esiste, crea un nuovo utente in caso contrario e imposta proprietà come password, descrizione e scadenza dell’account. Gestisce inoltre l’aggiunta di utenti ai gruppi e pianifica le attività di abilitazione/disabilitazione degli account.
Casi d’uso potenziali dello script per creare un account utente locale
Immaginate un MSP che gestisce l’IT di un’azienda con personale temporaneo. Può utilizzare questo script per creare un account utente locale in modo da automatizzare la creazione di account per i nuovi dipendenti, impostando date specifiche di attivazione e disattivazione, risparmiando tempo e riducendo gli errori manuali.
Confronti
Tradizionalmente, la gestione degli account utente può comportare processi manuali o l’utilizzo di script di base che mancano di funzionalità avanzate come la generazione di password sicure o l’attivazione/disattivazione programmata. Questo script per creare un account utente locale offre un approccio più sofisticato, sicuro ed efficiente in termini di tempo.
Domande frequenti sullo script per creare un account utente locale
- Questo script per creare un account utente locale può gestire la creazione di utenti in blocco?
Sebbene sia stato progettato per account individuali, può essere adattato per la creazione di grandi quantità con delle modifiche. - È sicuro da usare per gli ambienti sensibili?
Sì, include funzioni come la generazione di password sicure.
Implicazioni
L’uso di uno script di questo tipo per creare un account utente locale aumenta la sicurezza e l’efficienza, ma si deve sottolineare la necessità di un controllo e di un monitoraggio rigorosi degli accessi, poiché la creazione automatica di account può essere un potenziale vettore di accesso non autorizzato se non viene gestita correttamente.
Raccomandazioni
Le best practice includono la revisione regolare dello script per creare un account utente locale, l’utilizzo in combinazione con solidi criteri di auditing e la garanzia che solo il personale autorizzato abbia accesso allo script per creare un account utente locale e alle sue funzionalità.
Considerazioni finali
NinjaOne, una piattaforma nota per la semplificazione delle attività di gestione IT, può integrare script come quello per creare un account utente locale fornendo un’interfaccia centralizzata e di facile utilizzo per la gestione di questi processi automatizzati. L’integrazione di script PowerShell in un ambiente NinjaOne potrebbe migliorare in modo significativo l’efficienza operativa e la sicurezza della gestione IT.