Intro
Changing Password policies
This effectively applies the new policy.
Change administrator password.
While you're there, you may as well create a couple of test user accounts test1 to test3 with passwords that are easy, never expire, and can't be changed by the users.
Convert it to workstation. It's a good idea to make life easier for yourself and convert the server in look-and-feel to a workstation, as described at http://www.win2012workstation.com/ The web site contains a link to the Microsoft Server Converter 2012 tool that should do the heavy lifting for you, but it's supposed to be 51 MB in size. This is ridiculously large, it should be less than 1 MB in my opinion, so we don't really trust it. The tips on the web site however are solid. We've done the following ourselves:
Disable CTRL+ALT+DEL
Disable Shutdown Event Tracker
Adjust Folder Settings to your liking.
SharePoint isn't really designed to support a split geographic installation within a farm. There is no way to overcome the SQL latency issues that develop and its not a supported scenario. Yet, there are a couple of options you can pursue:
Info taken from: http://social.technet.microsoft.com/Forums/en-US/sharepointgeneral/thread/aaf7af12-4f1a-4c28-9f0c-7f87d46ec2b1
Once you have done this, you can use this connection during the creation of your new virtual machine to ensure internet connectivity on the server. Which, for SharePoint 2013, I'd say is nothing short of an installation requirement. You can also change the connection for existing machines by doing this:
Install Visual Studio 2012 on the virtual machine Well, what to say? You're a developer, aren't you? What you're waiting for!
Install Tools Now install SharePoint specific templates.
Install SQL Server 2012 with sp1 At the time of writing, this is the latest version of SQL Server.
It's possible that you get an error message similar to this: "Prerequisites keeps trying to start and failing to do so. Fails: start "Launch SharePoint preparation tool" "E:\prerequisiteinstaller.exe" /continue"
Please note that the Workflow Manager Client needs to be present on every SharePoint node in the farm.
Execute the following command: Register-SPWorkflowService -SPSite "http://moon " -workflowHostUri "http://moon:12291 " -AllowOAuthHttp
Where: -SPSite refers to one of your site collections.
What to do when search suggestions don’t show up? Run the “prepare query suggestions” timer job!
If you set up search suggestions (as described in http://technet.microsoft.com/en-us/library/jj721441.aspx ) you may notice that no suggestions drop down from the search bar. That makes sense, because they only appear after the “prepare query suggestion” timer job has run. You can force this via PowerShell like this:
Start-SPTimerJob -Identity "prepare query suggestions"
Running SharePoint 2013 in an AD environment that can be played around with is quite high on my 'Gimme Gimme' list.
After installation was successful, the server restarts.
The PressurePoint <Request> action equals to an HTTP GET request to a SharePoint page. The following performance counters are relevant for this type of action: Processor\DPCs Queued/sec Processor Information(_Total)\% Processor Time ASP.NET Applications\Requests/Sec Mind you: This section is a work in progress and is therefore not finished yet. Because of that, the PowerShell script for this part is not yet available.
SQL_Service: This account should be used for running SQL Server engine and SQL Server Agent. Create inside Service Manage Accounts Container inside AD to keep it controlled. Have the following characteristics:
This account is needed for performing high privilege jobs and (such as installing fixes, upgrades, etc.). It needs to have the following permissions:
$account
= Get-SPManagedAccount
"domain\user"
$appPoolSubSvc
= New-SPServiceApplicationPool -Name SettingsServiceAppPool -Account
$appPoolAppSvc
= New-SPServiceApplicationPool -Name AppServiceAppPool -Account
$appSubSvc
= New-SPSubscriptionSettingsServiceApplication –ApplicationPool
–Name SettingsServiceApp –DatabaseName SettingsServiceDB
$proxySubSvc
= New-SPSubscriptionSettingsServiceApplicationProxy –ServiceApplication
$appAppSvc
= New-SPAppManagementServiceApplication -ApplicationPool
-Name AppServiceApp -DatabaseName AppServiceDB
$proxyAppSvc
= New-SPAppManagementServiceApplicationProxy -ServiceApplication
From a SharePoint 2013 Management Shell prompt, execute this code.
Click App Management > Configure App URLs In the App Domain text box, type: app.[domain name] (e.g. app.lc.corp). In the App prefix text box, type any prefix that is used to prefix the subdomain of App urls, e.g.: lcapp. Click OK.
Now, check if you can add online Apps to your SharePoint environment. But don't do this using the SharePoint System Account, otherwise you'll see a message stating: "Everything is fine, but we had a small problem getting your license. Please go back to the SharePoint Store to get this app again etc. etc."
This is a nice example of misplaced SharePoint 2013 friendliness. Don't expect this small problem to go away by itself!