HVTools Major Update – 1.6.5

Overview A lot of bug fixes and features packed into this release! Enjoy 😉 Changelog Other cosmetic improvements.1.6.5 Rounded off large number column values.Search filter now works across all tabs.Added reset counter for clusters $c in ClusterNetworks foreach loop.1.6.4 Added tab filter for all 8 datagrids.1.6.3 Major update. Packed new features in including Clusters, Hosts, … Continue reading HVTools Major Update – 1.6.5

HVTools Released

Overview HVTools (formerly VMM Tools) is a utility programmed a complete SCVMM inventory. It will effectively report on you whole SCVMM environment including details such as clusters, hosts, patch levels, firmware, VMs, backend storage, underlying network and more. It is a fast, lightweight app and does not require installation. Current features include: Get comprehensive virtual … Continue reading HVTools Released

KVT Tool Major Update – 1.5.7

Overview Great news! I have recently performed major upgrades to KVT Tool. These new features bring both beauty and finesse. Noteworthy mentions: Moved away from traditional PS arrays. Now using data table objects.Improved UI by leveraging DataGridView and TabControl forms.Unfroze the UI! Achieved this thanks to [runspacefactory] RunspacePools. Took a little while to master, but … Continue reading KVT Tool Major Update – 1.5.7

Report Azure AD user IDs last logon timestamp using Microsoft Graph API

It's been a while since I've updated my blog so here we go! This is a step-instruction guide on how to generate Azure AD reports listing all users' last logon time. This is particularly handy as is not possible to generate any such report using AzureAD or AzureADPreview PowerShell modules. Prerequisites Azure Active DirectoryWeb browserMicrosoft … Continue reading Report Azure AD user IDs last logon timestamp using Microsoft Graph API

Azure ExpressRoute Utilisation – Automate EOM Reporting with Log Analytics & Logic Apps

We can generate ExpressRoute link utilisation within Azure by leveraging log analytics, logic apps and email! Very beneficial for automating end of month reporting.   Pre-requisites Azure subscription. Log analytics workspace (per GB if you require reporting more than 7 days). ExpressRoute link. ExpressRoute network monitor SPN SMTP Relay   KQL KQL stands for Kusto-Query … Continue reading Azure ExpressRoute Utilisation – Automate EOM Reporting with Log Analytics & Logic Apps

PowerShell AD Manager Report

We can generate a list of users and their corresponding managers entered against AD user objects by using Powershell. echo user1, user2, user3 | get-aduser -Properties manager | Select-Object -Property Name, @{label='Manager';expression={$_.manager -replace '^CN=|,.* Replace user1, user2, user3 with usernames of objects. We can export this list by adding the line | Export-CSV "C:\LineManagers.csv"   … Continue reading PowerShell AD Manager Report