Tech
-
Finding driver information on a Windows Server core
I found it very hard to find the version of drivers on a server core machine (the one without a GUI). Here is a nice PowerShell script which will show you what you need: Get-WmiObject -class MSFC_FCAdapterHBAAttributes -namespace “root\WMI” | Select-Object DriverVersion, FirmwareVersion, Manufacturer, Model, SerialNumber | Format-Table –AutoSize Note: in the old days, you could use fcinfo but that does not install on Windows 2008 or 2012 Server.
-
Beware of Server 2012 R2 installation on VMM (error 0xE000100)
I just wasted a couple of hours troubleshooting this error 0xE000100 while installing Windows 2012 R2 on VMM 2012 SP1 (older version). At first I thought there was some data corruption, ended up downloading the ISO again, to no avail. Then I thought maybe you cannot install R2 on older VMM. I started googling the requirements for 2012 R2. After much googling I found out the problem. I created the VM with dynamic RAM, using the default 512MB startup and 10GB max. THAT is the problem. Check this out: http://technet.microsoft.com/en-us/library/dn387077.aspx Under setup for virtual machines section, they say: If you create a virtual machine with the minimum supported hardware parameters…
-
List VMs on your SC VMM 2012
Wanna find out what VM is running on which server in your SCVMM cluster? This PowerShell script does it for you! (run it on the VMM server’s Virtual machine manager Command Shell) Get-SCVirtualMachine | Select-Object -property HostName, Name, Description | Sort-Object -Property HostName | Export-Csv .\vm-list.csv Here is another one which you can run to find which VMs are currently running. This is useful in case you want to shut all of them down using some script. Get-SCVirtualMachine | where {$_.StatusString -eq “Running”} | Select Name | Sort-Object -Property Name | Export-Csv .\vm-list.csv
-
Lost Citrix’s DB?
Here is what you can do if you totally lost Citrix’s data store (the database). From a command line on all presentation servers in the (ex) farm run : chfarm This will run a wizard which will let you choose and configure a new DB. You will lose all your Citrix configuration. This was useful to me when I was trying to recover a small 4-5 server Citrix 4.5 farm. It was used for development purposes, so recreating the couple of published apps was not too bad.
-
How to boot a M4000 Sun Solaris server
Sometimes your Solaris server may not boot by just pressing the power button. If autoboot is not enabled in XSCF or is configured wrongly, you will have to manually issue the boot command. I will explain how to do that here. First of all, make sure that any disk array attached to the Solaris server is powered on. Notes: a) Type commands without the quotes shown below. b) Do not press the power button on the front of the machine. Here is the procedure: 1. First, make sure that the server is powered down. If it is already powered on you will have to pull out the 2 power…