PowerShell question for 70-640

I have a question regarding the difference in PowerShell between W2K8 and W2K8 R2. When studying for the 70-640 before R2, the commands were different than what they are showing now in the R2 book. For instance, creating a user account started with:
$ou=[ADSI] "LDAP://ou= phoenix,dc=contoso,dc=com"
had 2 other lines, and then ended with:
$newuser.SetInfo().
The R2 version of the book shows it as simply: New-ADUser -path "ou=phoenix,dc=contoso,dc=com" -Name "Joe User" -sAMAccountName "Joe.User".
Have I missed something, or has PowerShell changed that much?
Thanks,
$ou=[ADSI] "LDAP://ou= phoenix,dc=contoso,dc=com"
had 2 other lines, and then ended with:
$newuser.SetInfo().
The R2 version of the book shows it as simply: New-ADUser -path "ou=phoenix,dc=contoso,dc=com" -Name "Joe User" -sAMAccountName "Joe.User".
Have I missed something, or has PowerShell changed that much?
Thanks,
Degree: Liberty University - B.S Computer Science (In Progress)
Current Certs: CCENT | MCTS | Network+
Currently Working On: Security+
Current Certs: CCENT | MCTS | Network+
Currently Working On: Security+
2020 Goals: CCNA, CCNP Security, Linux+
Comments
$objOU = [ADSI]"LDAP://localhost:389/ou=HR,dc=NA,dc=fabrikam,dc=com"
$objUser = $objOU.Create("user", "cn=MyerKen")
$objUser.Put("sAMAccountName", "myerken")
$objUser.SetInfo()
Now it seems to be a single "NewADUser" cmdlet. I just wanted to make sure that I wasn't missing something, and that the test won't reference the old way.
Thanks,
Current Certs: CCENT | MCTS | Network+
Currently Working On: Security+
The R2 tests focus pretty much exclusively on Cmdlet memorization. PowerShell syntax is not tested on, nor are LDAP calls.
Complete: 55/120 credits SPAN 201, LIT 100, ETHS 200, AP Lang, MATH 120, WRIT 231, ICS 140, MATH 215, ECON 202, ECON 201, ICS 141, MATH 210, LING 111, ICS 240
In progress: CLEP US GOV,
Next up: MATH 211, ECON 352, ICS 340
Current Certs: CCENT | MCTS | Network+
Currently Working On: Security+