1 2 3 4 5 6 7 8 9 |
(Get-LocalUser).name | out-file .\usuarios3.txt (gc .\usuarios3.txt) | % { New-LocalUser $_ -whatif -NoPassword } (Get-LocalUser).name | % { New-LocalUser $_ -whatif -NoPassword } |
1 2 3 4 5 6 7 8 9 |
(Get-LocalUser).name | out-file .\usuarios3.txt (gc .\usuarios3.txt) | % { New-LocalUser $_ -whatif -NoPassword } (Get-LocalUser).name | % { New-LocalUser $_ -whatif -NoPassword } |