Replace Diskpart with PowerShell

In the new world of Powershell you can replace many of the command line utilities used by Windows Administrators. Here is a way to replace Diskpart with PowerShell commands. 1. Check if the initiator can see the disk: Get-disk 2. Select the disk to bring disk  online: Set-disk –number 3 –IsOffline $False 3. Make disk…

Enable .Net Framework 3.5 SP1 on Windows Server 2012

While playing with the new Windows Server 2012 and Windows 8 Client I found out that the .Net Framework 3.5 SP1 option was grey out and not available. After doing some digging and reading several forum I found the answer. Steps to enable .Net Framework 3.5 SP1 in Windows Server 2012 1. Open a Command Prompt…