Advertisement
PC_Aide

importNewComputer.ps1

Feb 7th, 2017
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <###########################################################
  2.  Author : Serguei Dufour (PC Aide)
  3.  Youtube channel : https://www.youtube.com/user/Boliccov
  4.  Describe : Creates a new Active Directory computer
  5.  SRC : https://technet.microsoft.com/en-us/library/ee617245.aspx
  6.  
  7.  Antiseche : ` ou alt + 96 retour avant derniere ligne
  8.             alt + 35 ► #
  9. ###########################################################>
  10.  
  11. Import-Module ActiveDirectory
  12. $CSV='.\list_Computers.csv'
  13. Import-Csv -Path $CSV | ForEach-Object {
  14. New-ADComputer -Name $_.ComputerAccount -Path $_.OU -Description $_.Description `
  15. -Enabled $True
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement