Categories
How-To Software Technical

Exchange 2013: Migrating Mailboxes via PowerShell

Exchange 2013 has new and impressive administration center that allows you to handle tasks such as mailbox moves. I prefer using the Exchange Management Shell for such a task. Using the following command you can move all mailboxes within a database to your new mailbox database: Get-Mailbox -Database “Source-Database” | New-MoveRequest -TargetDatabase “Destination-Database” To get info […]

Categories
How-To Software Technical

Exchange 2013: Get Mailbox Move Request Statistics

After some weekend Exchange mailbox migrations I wanted to check the status of mailboxes. This is where I use the Get-MoveRequestStatistics for the all mailboxes or database. Issuing the following command: Get-MoveRequestStatistics -MoveRequestQueue “*databasename*” will return to you the status of all the mailboxes on that data store. This is good; but what if you […]

Categories
How-To Technical

PowerShell: Set Network Profile

Looking to change the network profile of my public facing adapter from Public to Private I recently found out I can use the PowerShell command Get-NetConnectionProfile to return the the connection profile associated with one or more physical network adapters. Once I have this information I can then modify the NetworkCategory to what I wish by […]

Categories
How-To Technical

PowerShell: Get basic network adapter properties

Get-NetAdapter cmdlet returns to you the basic network adapter properties of visible adapters installed on your system. This is a very useful tool to gather some details about your installed network adapters. More info and features can be found here: http://technet.microsoft.com/en-us/library/jj130867.aspx  

Categories
How-To Software

Pre-Requisites Time – Coming Soon

I open PowerShell as Administrator and type the following: Install-WindowsFeature AS-HTTP-Activation, Desktop-Experience, NET-Framework-45-Features, RPC-over-HTTP-proxy, RSAT-Clustering, RSAT-Clustering-CmdInterface, Web-Mgmt-Console, WAS-Process-Model, Web-Asp-Net45, Web-Basic-Auth, Web-Client-Auth, Web-Digest-Auth, Web-Dir-Browsing, Web-Dyn-Compression, Web-Http-Errors, Web-Http-Logging, Web-Http-Redirect, Web-Http-Tracing, Web-ISAPI-Ext, Web-ISAPI-Filter, Web-Lgcy-Mgmt-Console, Web-Metabase, Web-Mgmt-Console, Web-Mgmt-Service, Web-Net-Ext45, Web-Request-Monitor, Web-Server, Web-Stat-Compression, Web-Static-Content, Web-Windows-Auth, Web-WMI, Windows-Identity-Foundation followed by pressing enter… what next you ask?  Well stop by later and […]

Categories
How-To Software Technical

SharePoint 2010 – Updating Webpart Solution

Similar to my previous post SharePoint 2010 – Deploying Webpart Solution, the upgrade process of a Webpart Solution you have a few steps to take to make this all happen. As I did in my previous post: I copied the webpart to the local disk of my SharePoint 2010 server. Placing it in a folder […]