Clicking “next” “next” on an installer is sooo 2007. If you stand up and take down SharePoint 2010 farms on a frequent basis (for development or test servers), or you want to be able to quickly do so (maybe for disaster recovery), you have two options.
1) Read through the documentation and figure it out on your own: Install SharePoint Server 2010 by using Windows PowerShell
2) Use the SharePoint 2010 Developer Workstation Easy Setup Script (and modify it for your needs)
or
3) Use the awesome whizbang killer AutoSPInstaller scripts on Codeplex: http://autospinstaller.codeplex.com/
This project consists of PowerShell scripts, an XML input file, and a standard windows batch file (to kick off the process) which together provide a quick and near-unattended installation and initial config (Service Apps, My Sites) of Microsoft SharePoint Server 2010. Works on both Windows 2008 and 2008 R2 (x64 only of course). Perfect for repeated Virtual Machine-based installs/tear-downs, etc., but also great for production installs where you want to guarantee consistency and minimize data entry glitches. The immediate value is for installing and configuring the first/only server in a farm, but also supports using server-specific input files when running the script on subsequent servers (with parameters - e.g. for the service apps - set according to your desired topology). "But doesn't SharePoint 2010 have a nice wizard now that does all this for me??" - Yes, and it's a huge improvement over what was available in MOSS 2007. However if you've ever seen the 'DBA nightmare' left behind on your SQL server after the Farm Configuration Wizard has completed (GUID'ed databases with inconsistent naming, etc.): ...then you'll see the value in having consistently-named but automatically-created databases:
This project consists of PowerShell scripts, an XML input file, and a standard windows batch file (to kick off the process) which together provide a quick and near-unattended installation and initial config (Service Apps, My Sites) of Microsoft SharePoint Server 2010. Works on both Windows 2008 and 2008 R2 (x64 only of course).
Perfect for repeated Virtual Machine-based installs/tear-downs, etc., but also great for production installs where you want to guarantee consistency and minimize data entry glitches. The immediate value is for installing and configuring the first/only server in a farm, but also supports using server-specific input files when running the script on subsequent servers (with parameters - e.g. for the service apps - set according to your desired topology).
"But doesn't SharePoint 2010 have a nice wizard now that does all this for me??" - Yes, and it's a huge improvement over what was available in MOSS 2007. However if you've ever seen the 'DBA nightmare' left behind on your SQL server after the Farm Configuration Wizard has completed (GUID'ed databases with inconsistent naming, etc.):
...then you'll see the value in having consistently-named but automatically-created databases:
The scripted process will:
Get it here: http://autospinstaller.codeplex.com/
The Microsoft Download Center has a neat poster (available in PDF, Visio, and XPS formats) walking through the advantages, limitations, and requirements for the different deployment options available to small and midsize businesses planning on a deployment of Windows 7.
Explore the different options for deploying Windows 7 in a small or midsize organization. This print-ready poster from the Springboard Series for Windows 7 features an overview of each method, details on advantages and limitations, basic requirements, and helpful links to additional tools and guidance. You'll also find a helpful step-by-step overview of the Windows 7 deployment process.
Get the poster here: Windows 7 Deployment Options for Small and Midsize Businesses
While you’re at it, swing by the Windows 7: Small and Midsize Business Corner for more information, walkthroughs, and video tutorials on each Windows 7 deployment option.
The subject line says it all… if you create a web part page in SharePoint 2010, by default you will have a page that has the top (global) navigation, but no current navigation on the left. This may be exactly what you want, as you will have a bit more space to work with. If you want to show the current navigation on the left hand side of a web part page, here is how to do it:
1: <%-- <style type="text/css"> 2: body #s4-leftpanel { 3: display:none; 4: } 5: .s4-ca { 6: margin-left:0px; 7: } 8: </style> --%>
1: <%-- <style type="text/css">
2: body #s4-leftpanel {
3: display:none;
4: }
5: .s4-ca {
6: margin-left:0px;
7: }
8: </style> --%>
1: <%--
2: <asp:Content ContentPlaceHolderId="PlaceHolderNavSpacer" runat="server"></asp:Content>
3: <asp:Content ContentPlaceHolderId="PlaceHolderLeftNavBar" runat="server"></asp:Content>
4: --%>
Save the page, preview in browser, and voila! Your current navigation is now on the left. If you like the changes, rename your copy to the original filename and you are all set to go!