System Monitor (Sysmon) is a Windows System Service and Device Driver that will monitor and log the system activity to Windows Event log once it’s installed. Sysmon is a part of the Sysinternals tools. Sysinternals is a set of Windows utility programs first released in 1996, long before Russinovich joined Microsoft. Almost all were written […]
Check VM Generation Version Hyper-V
Since Windows Server 2012 R2, Microsoft introduced a new VM Type called Generation 2 VM. There are some advantages using Generation (Gen) 2 VM such as Hot add/remove Virtual Network Adapter, Live expand the VHDX, or Secure Boot. However, still, there are some reasons why you still use Generation 1 over Generation 2. Below the […]
Free E-Book: Cloud Native DevOps With Kubernetes – NGINX
NGINX has shared an ebook from O’Reilly – Cloud Native DevOps With Kubernetes – NGINX. This complete O’Reilly ebook shows how to apply industry-standard DevOps practices to Kubernetes in a cloud-native context. You will also learn how to build, deploy, and scale modern applications in the cloud. In this ebook you will learn: About containers […]
Free E-Book: Learn Azure in a Month of Lunches Free E-book
If you started to learn Microsoft Azure, this book will be useful for you tobuild your cloud computing skills quickly and efficiently. You’ll be productive immediately, and when you finish, you’ll be well on your way to Azure mastery. Learn Azure in a Month of Lunches breaks down the most important Azure concepts into bite-sized lessons […]
What’s new in Windows Admin Center Preview 1902
Windows Admin Center is a new Windows Server management tools. Recently, Microsoft just released Windows Admin Center (WAC) preview 1902 build. This preview release builds on the previous 1812 version with some new features. Shared connections The Shared connections is a highly-requested feature for WAC. Shared Connections is a single connection list that can be shared across […]
Get all VMs VHDX disk size
Sometimes you need to get which VM that most consume the disk storage. You can check the vhdx size by inspecting the disk one by one. However, It will waste the time if there is too many VMs on the Hyper-V server. I’ve created the script that will collect all VM’s vhdx and check it’s […]
Microsoft SQL Server 2017 on Linux: Download Free Guide
As you know Microsoft SQL Server 2017 is now coming to Linux system. On this Guide, Microsoft explains How to installing Microsoft SQL Server Package, Administering and securing Microsoft SQL Server, and many more. If you are looking an answer for some question below, you can start by downloading this Free Guide. Can I use […]
Is this a new Microsoft’s Remote Desktop Client?
As you may know, Microsoft is working on the new Remote Desktop Client for their Windows Virtual Desktop. The Remote Desktop Client Application has been leaked by WalkingCat on his tweet as below: So, what is the main feature of the New Remote Desktop Client and Windows Virtual Desktop? With the header “The best virtual […]
Check Folder Size using PowerShell command
Sometimes, you need to know how big a folder using PowerShell command. For the example once you on PowerShell session command and there is no GUI to check how big the folder size. Basically, you can use Get-ChildItem and Measure-Object CmdLet. Below the one-liner PowerShell command to get the FolderSize “{0:N2} MB” -f ((Get-ChildItem C:\users\ […]
Configure the DNS Client using PowerShell
There is a DNSClient module on PowerShell you can use in addition ipconfig command. By default, this command is available on the PowerShell, if not, you can load the module manually using the command below: Import-Module DnsClient To see the available command on DnsClient module, you can use the Get-Command -Module DnsClient As you can see in […]