Posts
Default to PowerShell in Windows Core
· ☕ 1 min read · ✍️ Brett Johnson
One of the big pushes in Server 2012 is the use a Server Core installation instead of the full GUI install. Microsoft have put a lot of effort into encouraging administrators to use PowerShell as a core tool for day to day administration of servers, which is why is seems a bit strange that a Server Core installation boots to a traditional command prompt instead of a PowerShell prompt. To change your Server Core installation to launch PowerShell instead of the normal Command Prompt is a simple registry change.

Initial Setup of SSO
· ☕ 2 min read · ✍️ Brett Johnson
SSO is an integral part of providing access rights to your Vcentre server. You can assign permissions to people based on their user account, group memberships and link it with various authentication methods. After installing Vcentre for the first time log onto the Web Client with the username administrator@vsphere.local and the password you used during the install. The address for the Web Client will be https://Server Name:9443/web-client Though if you selected a different port to 9443 during the installation then use that.

Server 2012 PSOD With E1000 NIC
· ☕ 1 min read · ✍️ Brett Johnson
While testing out a Server 2012 install on ESXi 5.5 I noticed that when copying files between it and any other server I would get a PSOD. The main section of the PSOD that got my attention was E1000PollRxRring@vmkernel After a bit of searching around I found that there seems to be a common issue with Server 2012 and Server 2012 R2 using the E1000 NIC. Standard solution seems to be remove your current E1000 NIC from the guest machine and add a NIC running as VMXNET3.

· ☕ 1 min read
Micro Batching and Real Time Streaming (RTS) Micro Batching and Real Time Streaming are the two primary methods in which messages are consumed and processed. At a high level micro batching and RTS seem very similar but there are several key differences to be aware of when designing consumers. A micro batch is a collection of messages received when the consumer polls the event bus for new messages, each message in the batch is processed.