PowerShell: Find Computers Last Logon Date
KB ID 0001612 Problem I had to find the last time a particular server had logged on for a client the other week, so we knew for sure it was dead! Solution The two commands you may need are; Locate Servers Last Login Time Get-ADComputer -Filter {OperatingSystem -Like ‘*SERVER’} -Properties lastlogondate,operatingsystem | Select name,laslogondate,operatingsystem Locate Clients Last Login Time Get-ADComputer -Filter...
Cisco ASA EZVPN (Revisited)
KB ID 0001261 Problem EZVPN is a technology that lets you form an ISAKMP/IPSEC VPN tunnel from a site with a dynamically assigned IP (EZVPN Client,) back to a device with a static IP (EZVPN Server). I’ve called this EZVPN revisited, because this is a technology I’ve talked about before. So why am I here again? Well back then I used the ASDM. If you do that now, you need to go in and mess about with things to get it to work...
Cannot Open a Console Session in the VMware VI Client on Windows 8
KB ID 0000677 Problem Mostly my conversion to Windows 8 has been pretty painless, the only thing that wont work is the VMware VI client cant open a console session to the VMs on my ESX server. Error The VMRC console has disconencted…attempting to reconnect This happens because the IE10 that comes with Windows 8 does NOT LIKE the requests the VI client is sending to the Internet Explorer plug-in. Update 08/03/13 – This...
VMware VI Client – Remove Cached IP addresses and Hostnames
KB ID 0000644 Problem If you connect to a lot of ESX, ESXi and vCenter machines, the drop down list in your VI client can get a little cluttered. Solution 1. Start > Run > Regedit {enter} 2. Navigate to; HKEY_CURRENT_CURRENT_USERSoftwareVMwareVMware Infrastructure ClientPreferences Locate the ‘RecentConnections’ string value, and either delete them all, (or just the ones you no longer need). 3. Now things will be a...
vSphere – Adding a Serial Port to a VM
KB ID 0001039 Problem I wanted to perform command line access to a virtual firewall on my home ESXi server, (a Juniper Firefly vSRX) via a console session. To do that I needed to add a serial port to that VM. Solution 1. From Within the VI client > Select the ESXi Host > Configuration > Security Profile > Firewall Section > Properties. 2. Locate and enable ‘VM serial port connected over network’ > OK. 3....