Hi Stanley Shih,
Welcome to the Microsoft Q&A Platform! Thank you for asking your question here.
I tried again in my labs, it is working with CLI script. You can update the Validation Environment Variable to false with the below CLI script. Please follow the steps.
Create a Resource Group
az group create --name RG-DEMO-WE --location westus
Deploy a Host pool
$resourceGroupName="RG-DEMO-WE"
$location="westus"
$hostPoolName="HP"
New-AzWvdHostPool `
-ResourceGroupName $resourceGroupName `
-Name $hostPoolName `
-HostPoolType 'Pooled' `
-LoadBalancerType 'BreadthFirst' `
-Location $location `
-PreferredAppGroupType 'Desktop' `
-Description "My AVD host pool" `
-FriendlyName "AVD DEMO" `
-StartVMOnConnect:$true `
-ValidationEnvironment:$false `
-MaxSessionLimit '10' `
Here is the created Host pool!
Hope this helps! If you have any further queries, please do let us know.
If the answer is helpful, please click "Accept Answer" and "Upvote it."