зеркало из
1
0
Форкнуть 0

Updated Automated Deployment of SharePoint 2013 with Windows Azure PowerShell (markdown)

barryit 2014-01-17 04:10:24 -08:00
Родитель e7f5262ca3
Коммит 8119d90e37
1 изменённых файлов: 14 добавлений и 8 удалений

@ -62,22 +62,28 @@ Step 7: Enable CredSSP on your client machine for delegation before executing an
* This command will fail if your client machine is connected to any networks defined as "Public network" in "Network and Sharing Center."
* This command will fail if PowerShell remoting has not previously been enabled
<br />`Enable-PSRemoting`
For more details on enabling CredSSP:
* http://msdn.microsoft.com/en-us/library/windows/desktop/ee309365(v=vs.85).aspx
* http://technet.microsoft.com/en-us/library/hh849872.asp
Step 7 Enable Delegating Credentials
a. PowerShell
<br />
`$regKey = "HKLM:\SYSTEM\CurrentControlSet\Control\Lsa\Credssp\PolicyDefaults\AllowFreshCredentialsDomain"`
`Set-ItemProperty $regKey -Name WSMan -Value "WSMAN/*.cloudapp.net"`
B. Group Policy Editor
**Run GPEdit.msc**
You must also enable delegating of fresh credentials using group policy editor on your client machine. Computer Configuration -> Administrative Templates -> System -> Credentials Delegation and then change the state of "Allow Delegating Fresh Credentials with NTLM-only server authentication" to "Enabled." Its default state will say, "Not configured."
In the Add Servers sections add the following.
* WSMAN/*.cloudapp.net
_OR_<br />
`$regKey = HKLM:\SYSTEM\CurrentControlSet\Control\Lsa\Credssp\PolicyDefaults\AllowFreshCredentialsDomain`
`Set-ItemProperty $regKey -Name WSMan -Value "WSMAN/*.cloudapp.net"`
For more details on enabling CredSSP:
* http://msdn.microsoft.com/en-us/library/windows/desktop/ee309365(v=vs.85).aspx
* http://technet.microsoft.com/en-us/library/hh849872.asp
Step 7: Ensure your subscription has enough cores to create the VMs. Instance sizes for each VM tier can be specified in the \config files. Your subscription quota information can be obtained by calling Get-AzureSubscription -ExtendedDetails.
Step 8: Ensure your subscription has enough cores to create the VMs. Instance sizes for each VM tier can be specified in the \config files. Your subscription quota information can be obtained by calling
Get-AzureSubscription -ExtendedDetails.
# Using the master-deployment-script.ps1 file to deploy a SharePoint environment.