Module 5 Lab A, Task 3 Step 3
Server alias 20331B-NYC-DB-05 needs to be filled in. This should be NYC-DB1. (Lab Answer Key is corrected, Module 5 has the error).
Module 8 Lab A Exercise 1 Task 4 Step 10
Verify that the Edit item button does not appear
Change to:
Verify that the Edit item button appears
Exchange step 16 and 17.
Module 10 Lab Exercise 3 Task 2 Step 9
In the Error dialog box, verify that you receive an error
message that states that your file has been blocked by the administrator, and
then click GO BACK TO SITE
Change to:
In the Error dialog box, verify that you receive an error
message that states that your file has been blocked by the administrator, and
then click DISMISS
Module 11 Lab B Exercise 2 Task 2 Step 22
On the Job Definitions page, click Content Type Subscriber.
Module 14 Lab A Exercise 2 Step 4
Review problems and solutions is under Health Analyzer.
Module 14 Lab A Exercise 4 Step 8
The database table is empty. Continue with Task 3.
Add-PSSnapin
Microsoft.SharePoint.PowerShell
-ErrorAction
SilentlyContinue
$UsageAppProxy
=
Get-SPServiceApplicationProxy
| Where {
$_
.TypeName
-eq
"Usage and Health Data Collection Proxy"
}
$UsageAppProxy
.Provision()
Powershell Template for creating users.
$Password = "Pa$$w0rd" | ConvertTo-SecureString
-AsPlainText -Force; @("SPSearch", "SPSearchAdmin",
"SPSearchQuery", "SPContentAccess" ) | % { New-ADUser -Name
"$_" -Path "CN=Managed Service Accounts,DC=Contoso,DC=com"
-SamAccountName "$_" -Server "NYC-DC1.Contoso.com"
-UserPrincipalName "$_@Contoso.com"
-CannotChangePassword $true -PasswordNeverExpires $true -AccountPassword
$Password -Enabled $true }