(Get-LocalUser).name | out-file .\usuarios3.txt
(gc .\usuarios3.txt) | % {
New-LocalUser $_ -whatif -NoPassword
}
(Get-LocalUser).name | % {
New-LocalUser $_ -whatif -NoPassword
}
(Get-LocalUser).name | out-file .\usuarios3.txt
(gc .\usuarios3.txt) | % {
New-LocalUser $_ -whatif -NoPassword
}
(Get-LocalUser).name | % {
New-LocalUser $_ -whatif -NoPassword
}