NOTE! Before using any of those informations, be sure you read the Disclaimer! Thank you.
Group Policy is a great way to deploy settings to users and computers centrally — unless you wind up waiting for the updates. The default interval to update the Group Policy to a computer account …
#Parameter- Name of the VMware cluster to work in
param($cluster)
Write-Output “`n$(Get-Date)- Script started`n”
# Validate parameter input
$IsClusterNameInvalid = $true
Get-Cluster | % { If ($_.Name -eq $Cluster) {$IsClusterNameInvalid = $false} }
If ($IsClusterNameInvalid) {
Write-Host “Error- Invalid Cluster Name” …
## =====================================================================
## Title : Import-SPSite
## Description : Imports a Site to from a Backup File
## Date : 24/11/2009
## Input : Import-SPSite [[-url] <String>] [[-File] <String>] [[-Location] …
## =====================================================================
## Title : Add-SPList
## Description : Creates a New SharePoint List
## Input : Add-SPList [[-url] <String>] [[-List] <String>] [[-Description] <String>] [[-Type] <String>]
## Output :
## Usage …
## =====================================================================
## Title : Backup-SSAS
## Input : -serverInstance <serverinst>
## -backupDestination <drive:xy | \uncpath>
## -retentionDays <n>
## …
Many larger applications having scripting capabilities built in to allow you to automate repetitive tasks but what do you do if you need to script a repetitive task for an application that doesn’t have a …
The easiest way to install SharePoint is to use one account which will be the domain admin, SQL admin and all other security levels admin. However the easiest method is very often not the best from a …
If it is your first time working with Exchange Server 2010 then you will quickly realise that you need to learn about the relationship between Exchange 2010 and SSL certificates.
SSL Requirements in Exchange Server 2010
Prior …
Exchange Server 2010 like its predecessor Exchange Server 2007 makes heavy use of SSL certificates for various communications protocols. When you install a new Exchange server is comes pre-configured with a self-signed certificate. Before putting …
Domain Name System (DNS) devolution is a feature in Windows Server 2008 R2 that makes it easier for DNS clients to locate network resources. To understand DNS devolution, think about how the name resolution process works …