Released - Technical Documentation Download for System Center 2012 – Operations Manager
Just a short blogpost to let you know we released the Technical Documentation Download for System Center 2012 – Operations Manager. Go to Microsoft Download Center and download the following documentation.
Overview
The downloadable files listed on this page contain the product documentation for the Operations Manager component of System Center 2012. The available downloads include:
- Authoring Guide for System Center 2012 - Operations Manager - last updated April 1, 2012
- Deployment Guide for System Center 2012 - Operations Manager - last updated April 1, 2012
- Operations Guide for System Center 2012 - Operations Manager - last updated April 1, 2012
- System Center 2012 – Operations Manager Cmdlet Reference - last updated April 1, 2012
And for you lazy people who don’t want to click for each download I again created a PowerShell script to download them all in on go
############################################################################### # Download all OM12 Documents from # https://www.microsoft.com/download/en/details.aspx?displaylang=en&id=29256 # in one-go using PowerShell and BitsTransfer. # Remark: Use PowerShell 2.0 because it makes use of the BitsTransfer Module # Author: Stefan Stranger # v1.002 - 01/04/2012 - stefstr - second release ############################################################################### $outputfolder = "c:\Temp\OM12Docs" Import-Module BitsTransfer #Loads the BitsTransfer Module Write-Host "BitsTransfer Module is loaded" $OM12Docs = @("https://download.microsoft.com/download/3/3/F/33F52373-3A75-422C-969B-61E05EEC5E72/SC2012_OpsMgr_Operations.docx", "https://download.microsoft.com/download/3/3/F/33F52373-3A75-422C-969B-61E05EEC5E72/SC2012_OpsMgr_Authoring.docx", "https://download.microsoft.com/download/3/3/F/33F52373-3A75-422C-969B-61E05EEC5E72/SC2012_OpsMgr_Cmdlets.doc", "https://download.microsoft.com/download/3/3/F/33F52373-3A75-422C-969B-61E05EEC5E72/SC2012_OpsMgr_Deployment.docx") Foreach ($OMDoc in $OM12Docs) { Start-BitsTransfer -source $OMDoc -Destination $outputfolder} Write-Host "OM12 Docs are downloaded to $outputfolder" |
Comments
- Anonymous
April 03, 2012
Start-BitsTransfer doesn't seem to create a new output folder. $outputfolder = "c:TempOM12Docs" if (!(test-path $outputfolder)) { New-Item $outputfolder -type directory }