ai
VMware Workstation Pro 26H1 is here and, its got a 64-Bit upgrade!!
The latest update to VMware Workstation Pro, version 26H1, has officially arrived! Whether you are a developer, a sysadmin, or a tech enthusiast, this release brings a host of updates designed to streamline your virtualization workflow and expand compatibility with the latest operating systems.
Personally, I’m excited to try out is new added support for 64-Bit applications/binaries.

What’s New
- VMware Workstation Pro 26H1 contains security and bug fixes.
- Added support for 64-Bit VMware Workstation Pro for Windows: VMware Workstation Pro for Windows is now available as a 64-bit application and all binaries, libraries, installer components, and related services are delivered and executed as 64-bit processes.
- Recording and reporting time stamps: You can easily identify virtual machines virtual machines by creation and last powered-on time stamp.
- Added support for remote connections to ARM-based ESX hosts, enabling basic virtual machine operations.
- Displaying virtual machine notes in folder tabs.
- Updated the saved credential format: You can easily identify encrypted virtual machines and remote server in the credential manager of the host platform.
- Added support for guest operating systems.
- Guest operating systems
- Ubuntu 26.04 LTS
- Fedora 43
- Fedora 44
- SUSE Linux Enterprise 16
- openSUSE 16.0
- FreeBSD 15.0
- Guest operating systems
- Added support for Host operating systems
- Ubuntu 26.04 LTS
- Fedora 43
- Fedora 44
- SUSE Linux Enterprise 16 GA
- openSUSE 16.0
Reminder: Workstation Pro is Now Free!
In case you missed the recent shift, VMware Workstation Pro is now free for personal, commercial, and educational use. You no longer need a license key to unlock the full power of the industry-standard desktop hypervisor. Just download, install, and start building.
Final Thoughts
The 26H1 release is a solid step forward, focusing on the “latest and greatest” in the OS world while giving power users better tools for customization. If you haven’t updated yet, now is the time to head over to the Broadcom Support Portal and grab the latest build.
Ready to upgrade? Check out the full technical details and resolved issues list in the official release notes.
Backing up Workstation VMs with PowerShell
It’s pretty common for me to backup my Workstation VMs and I’m always looking for quick way to accomplish this. I’ve been using SyncBack Free for many years but most recently I’ve out grown. In this blog I’ll show you the script I wrote to backup my VM’s to a target location.
My Workstation server has many data disks with many folders for my VM’s. I backup my VM’s to a large hard disk and then regularly I’ll off load these backups to a NAS for archive purposes. This keeps the VM’s local for quick restores and the NAS provides some further protection.

My PowerShell 7 script is rather simple.
- Define my sources
- Choose a target folder
- Asks if you want to simulate a backup
- Robocopy copies or simulates a copy of the files while appending to a logfile
- Appends the folders and log file with a date stamp
It’s a pretty simple process but it works quite well.
Write-Output "`n**** Workstation VM Backups for VCF 9 vSAN ESA 3 Node *****`n"
# Define Sources
$source1 = "d:\Virtual Machines\VCF 9 vSAN ESA 3 Node"
$source2 = "f:\Virtual Machines\VCF 9 vSAN ESA 3 Node"
$source3 = "g:\Virtual Machines\VCF 9 vSAN ESA 3 Node"
$source4 = "h:\Virtual Machines\VCF 9 vSAN ESA 3 Node"
$source5 = "i:\Virtual Machines\VCF 9 vSAN ESA 3 Node"
$source6 = "j:\Virtual Machines\VCF 9 vSAN ESA 3 Node"
$source7 = "k:\Virtual Machines\VCF 9 vSAN ESA 3 Node"
$source8 = "l:\Virtual Machines\VCF 9 vSAN ESA 3 Node"
$source8 = "D:\Virtual Machines\Domain Services\DomainToolsVM - 12 05 2025"
# Function user selected destination folder
function Select-FolderDialog {
param([string]$Description="Select a EMPTY folder",
[string]$RootFolder="MyComputer")
# Load the necessary assembly
Add-Type -AssemblyName System.Windows.Forms
# Create an instance of the FolderBrowserDialog object
$objForm = New-Object System.Windows.Forms.FolderBrowserDialog
$objForm.RootFolder = $RootFolder
$objForm.Description = $Description
# Show the dialog box
$Show = $objForm.ShowDialog()
# Check if the user clicked 'OK' and return the selected path
if ($Show -eq "OK") {
return $objForm.SelectedPath
} else {
Write-Error "****Operation cancelled by user****"
pause
exit 1
}
# Clean up the object
$objForm.Dispose()
}
Write-Output "`n***** Choose Destination Folder *****"
# Prompt User for desintation folder
$selectedFolderPath = Select-FolderDialog -Description "Please choose the destination folder"
if ($selectedFolderPath) {
Write-Host "You selected: $selectedFolderPath"
# You can now use $selectedFolderPath in the rest of your script
}
Write-output "`n****Choose Robo options****"
# Robocopy options
# /E Copies subdirectories. This option automatically includes empty directories.
# /TEE Writes the status output to the console window, and to the log file.
# /ZB Restart Mode, if denied back to backup mode
# /R:# Retires
# /W:# Wait time between retires
# /J Unbuffered IO for faster large file backups
# /L Simulate backup
# https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/robocopy
#To simulate backup or not
$question = "Do you want run a simulated backup? (Y/N)"
do {
$response = Read-Host -Prompt $question
# Use ToLower() for case-insensitive comparison
$response = $response.ToLower()
} until ($response -eq 'y' -or $response -eq 'n')
if ($response -eq 'y') {
Write-Host "Continuing... with Simulated Robocopy backup`n"
$robocopyoptions = $roboOptions = @("/E", "/TEE", "/ZB", "/R:2", "/W:10", "/J", "/L")
} else {
Write-Host "Continuing.... with Robocopy backup`n"
$robocopyoptions = $roboOptions = @("/E", "/TEE", "/ZB", "/R:2", "/W:10", "/J")
}
Write-Output "`n****Robocopy START****"
#Define Log loction
$logfile = $selectedFolderPath + "\WorkstationBackupLog.txt"
# Start Robocopy and append to log file
robocopy $source1 $selectedFolderPath $robocopyoptions /LOG+:$logfile
robocopy $source2 $selectedFolderPath $robocopyoptions /LOG+:$logfile
robocopy $source3 $selectedFolderPath $robocopyoptions /LOG+:$logfile
robocopy $source4 $selectedFolderPath $robocopyoptions /LOG+:$logfile
robocopy $source5 $selectedFolderPath $robocopyoptions /LOG+:$logfile
robocopy $source6 $selectedFolderPath $robocopyoptions /LOG+:$logfile
robocopy $source7 $selectedFolderPath $robocopyoptions /LOG+:$logfile
robocopy $source8 $selectedFolderPath $robocopyoptions /LOG+:$logfile
robocopy $source9 $selectedFolderPath $robocopyoptions /LOG+:$logfile
Write-Output "****Robocopy FINISH****"
Write-Output "`n****Rename Files START****"
#Rename Folders/file with date stamp
$DateStamp = Get-Date -Format "_yyyy-MM-dd"
Get-ChildItem -Path $selectedFolderPath -Directory | ForEach-Object {
# Construct the new name: original name + date stamp
$NewName = $_.Name + $DateStamp
# Rename the item (folder)
Rename-Item -Path $_.FullName -NewName $NewName
}
Get-ChildItem -Path $selectedFolderPath -File | Rename-Item -NewName {
$_.BaseName + $DateStamp + $_.Extension
}
Write-Output "****Rename Files FINISH****"
# Exit
Write-Output "`n`n****Script finished. Press Enter to exit.****"
pause
Your #ChatGPT generated justification letter for attending #VMwareExplore 2025!
Question – What is one of the best use cases for ChatGPT?
Answer – Writing a justification letter to attend Explore 2025.
I simply asked ChatGPT: “Write me a justification letter for VMware Explore 2025”
Below was its reply. Feel free to edit, reuse, and share with others.
Subject: Justification for Attending VMware Explore 2025
Dear [Manager’s Name],
I am writing to request approval to attend VMware Explore 2025, taking place [insert date] in [insert location]. This event is VMware’s flagship conference and brings together industry leaders, technical experts, and peers from around the world to explore the latest advancements in cloud infrastructure, networking, security, AI integration, and modern application development.
Attending this conference will provide direct value to our organization in the following ways:
- Strategic Insight: I will gain firsthand knowledge of VMware’s latest product roadmap, innovations, and partner ecosystem strategies that can help us align our IT initiatives with future business needs.
- Technical Deep Dives: With access to hundreds of expert-led sessions, hands-on labs, and certification opportunities, I will be able to enhance my skills in areas such as vSphere, NSX, vSAN, Tanzu, and multi-cloud management—skills directly relevant to our current and upcoming projects.
- Problem Solving & Best Practices: I will engage with VMware engineers and fellow practitioners to discuss real-world use cases and learn best practices that we can apply immediately to optimize our infrastructure and reduce operational overhead.
- Cost Efficiency & ROI: By leveraging tools and techniques learned at the event, I aim to improve our existing VMware deployments and better manage our hybrid/multi-cloud environments, potentially saving costs and improving performance.
- Knowledge Sharing: Upon my return, I will prepare a comprehensive summary of key takeaways and recommendations to share with our team, helping to amplify the value of this investment across the organization.
The estimated cost for attendance, including registration, travel, and lodging, is approximately [insert cost estimate]. I believe this is a worthwhile investment in both my professional development and our organization’s ongoing IT strategy.
Thank you for considering this request. Please let me know if you would like any additional information or a more detailed breakdown of the conference schedule and sessions relevant to our priorities.
Sincerely,
[Your Full Name]
[Your Job Title]
[Your Department]
[Your Contact Information]