Skip to content

TechDirectArchive

Hands-on IT, Cloud, Security & DevOps Insights

  • Home
  • About
  • Advertise With US
  • Contact
  • Reviews
  • Toggle search form
Home » Virtualization » How to Resolve New WDAC Policy Issues in Azure Stack Local
  • Screenshot 2021 03 29 at 01.56.17
    How to prevent VLC player from reverting to the native video size on Mac Mac
  • banner 3
    How to Set Network Adapter Priority on Windows 11 Network | Monitoring
  • fghj
    MDT deployment failed and Stuck at Command Prompt: Windows installation does not proceed via PXE boot Windows Server
  • HybridCloudTrust
    WHFB Hybrid Cloud Kerberos Trust Model is now available AWS/Azure/OpenShift
  • Feature Image DNF vs APT
    What are the differences between dnf and apt package managers? Linux
  • Azure AD Logo 1
    How to sync on-premises AD with Azure AD via Azure AD Connect AWS/Azure/OpenShift
  • stuck
    Fix Hyper-V VM Stuck in Stopping State Virtualization
  • Banner
    How to enable or disable Firefox Network Captive Portal Service Network | Monitoring

How to Resolve New WDAC Policy Issues in Azure Stack

Posted on 27/12/202528/12/2025 Link State By Link State No Comments on How to Resolve New WDAC Policy Issues in Azure Stack
Azure Local New Policy fix

This post discusses how to resolve new WDAC Policy issues in Azure Stack Local by walking you through the problem, its root causes, and practical solutions to ensure a smoother policy deployment experience. Managing security policies in a hybrid Azure-Windows environment can be challenging, especially when dealing with Windows Defender Application Control (WDAC). Please, see how to fix WDAC vulnerabilities by updating PowerShell, and how to Disable Driver Signature Enforcement in Windows 11.

We explore a common issue encountered when adding a new WDAC policy via an XML file using Windows Admin Center (WAC) Cluster Manager.

Specifically, users may encounter permissions errors when the cluster is accessed through Azure integration.

Also, see how to Configure Azure Monitor for VMs on Azure Stack Hub, How To Configure VM Update Management on Azure Stack Hub, and “Windows 10 and Windows 11 updates will now expire for better performance“.

Observations from Case Notes

You are able to connect to the Windows Server cluster via WAC using Azure. The error arises during the XML policy upload process, despite using a domain admin or cluster admin account.

image001-min

Investigation to resolve WDAC Policy Issues

1: Verify Cluster Role Assignment: Confirm that the domain user is explicitly added to the Cluster Administrators group:

  • Get-ClusterGroup | Get-ClusterAccess
  • If missing, add the user:
  • Add-ClusterAccess -UserName “DOMAIN\\UserName” -AccessLevel Full

2: Run Windows Admin Center with Elevated Privileges: Close WAC and relaunch it using “Run as administrator”.

3: Check Azure Arc Integration: If the cluster is Azure Arc-enabled:

  • Navigate to Azure Portal → Azure Arc → Servers → [Your Cluster]
  • Ensure the user has Contributor or Owner role on the associated resource group.

4: Validate WDAC Policy Signing: Confirm the XML policy:

  • Is signed with a trusted certificate.
  • Matches the current WDAC enforcement mode (Audit or Enforced).
  • Use the following command:
  • Get-CIPolicy -PolicyPath “path\to\policy.xml”

5: Check Cluster Shared Storage Permissions: Ensure the XML file is accessible by all cluster nodes

icacls "\\ClusterStorage\SharedVolume\PolicyFolder\policy.xml"

Please, see Hardening Active Directory – GPO MSCT 1.0 CIS Benchmark – Poicy Analyser, “How to Resource Lock on Delete on Azure”, and how to install WSL on Windows.

Reupload the XML Policy

Try uploading the XML policy again, or alternatively, connect via RDP and import it using a PowerShell command.

Run PowerShell as Administrator on the cluster node. If the cluster is accessed via Azure. Ensure you have proper permissions and remote execution enabled.

ConvertFrom-CIPolicy is necessary if your XML policy needs to be in binary format for enforcement.

Path to your WDAC XML policy

$PolicyXml = "C:\Path\To\Your\Policy.xml"

Convert XML policy to a binary policy file (required for enforcement)

$PolicyBin = "C:\Path\To\Your\Policy.bin"
ConvertFrom-CIPolicy -XmlFilePath $PolicyXml -BinaryFilePath $PolicyBin

Apply the policy in enforcement mode

Set-CIPolicy -FilePath $PolicyBin -Merge

Alternatively, apply the policy in audit mode

Set-CIPolicy -FilePath $PolicyBin -Audit

Confirm the policy has been added by running the command below

Get-CIPolicy

I hope you found this guide very useful on “How to Resolve New WDAC Policy Issues in Azure Stack Local”. Please, feel free to leave a comment below.

5/5 - (1 vote)

Thank you for reading this post. Kindly share it with others.

  • Click to share on X (Opens in new window) X
  • Click to share on Reddit (Opens in new window) Reddit
  • Click to share on LinkedIn (Opens in new window) LinkedIn
  • Click to share on Facebook (Opens in new window) Facebook
  • Click to share on Pinterest (Opens in new window) Pinterest
  • Click to share on Tumblr (Opens in new window) Tumblr
  • Click to share on Telegram (Opens in new window) Telegram
  • Click to share on WhatsApp (Opens in new window) WhatsApp
  • Click to share on Pocket (Opens in new window) Pocket
  • Click to share on Mastodon (Opens in new window) Mastodon
  • Click to share on Bluesky (Opens in new window) Bluesky
  • Click to share on Threads (Opens in new window) Threads
  • Click to share on Nextdoor (Opens in new window) Nextdoor
Virtualization Tags:Azure Local, Azure Stack Local WDAC: Cannot Add New Policy Fix, WDAC, WDAC Permissions issue adding new policy, Windows Defender Application Control

Post navigation

Previous Post: How to install WSL on Windows
Next Post: How to Add a Delete Lock on Azure Resources

Related Posts

  • Machine does not support XSAve
    How to disable side-channel mitigations on VMware Workstation Virtualization
  • VMware Error Fix
    How to fix “The process cannot access the file because another process has locked a portion of the file” Virtualization
  • virtualbox guest additions rcm480x270u
    How to install virtual machine Guest Addition Virtualization
  • Windows Server 2019
    The virtual machine has terminated unexpectedly during startup with exit code 1 (1×0): Failed to open a session for the virtual machine Windows Server 2019 Virtualization
  • Slide2 2
    Oracle VirtualBox: Installing Windows 11 without TPM Support Virtualization
  • screenshot 2020 02 23 at 10.50.09
    Perform Pleasant Password Self-serve Reset using the “link” Virtualization

More Related Articles

Machine does not support XSAve How to disable side-channel mitigations on VMware Workstation Virtualization
VMware Error Fix How to fix “The process cannot access the file because another process has locked a portion of the file” Virtualization
virtualbox guest additions rcm480x270u How to install virtual machine Guest Addition Virtualization
Windows Server 2019 The virtual machine has terminated unexpectedly during startup with exit code 1 (1×0): Failed to open a session for the virtual machine Windows Server 2019 Virtualization
Slide2 2 Oracle VirtualBox: Installing Windows 11 without TPM Support Virtualization
screenshot 2020 02 23 at 10.50.09 Perform Pleasant Password Self-serve Reset using the “link” Virtualization

Leave a Reply Cancel reply

You must be logged in to post a comment.

Microsoft MVP

VEEAMLEGEND

vexpert-badge-stars-5

Virtual Background

GoogleNews

Categories

veeaam100

sysadmin top30a

  • Screenshot 2021 03 29 at 01.56.17
    How to prevent VLC player from reverting to the native video size on Mac Mac
  • banner 3
    How to Set Network Adapter Priority on Windows 11 Network | Monitoring
  • fghj
    MDT deployment failed and Stuck at Command Prompt: Windows installation does not proceed via PXE boot Windows Server
  • HybridCloudTrust
    WHFB Hybrid Cloud Kerberos Trust Model is now available AWS/Azure/OpenShift
  • Feature Image DNF vs APT
    What are the differences between dnf and apt package managers? Linux
  • Azure AD Logo 1
    How to sync on-premises AD with Azure AD via Azure AD Connect AWS/Azure/OpenShift
  • stuck
    Fix Hyper-V VM Stuck in Stopping State Virtualization
  • Banner
    How to enable or disable Firefox Network Captive Portal Service Network | Monitoring

Subscribe to Blog via Email

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

Join 1,839 other subscribers
  • RSS - Posts
  • RSS - Comments
  • About
  • Authors
  • Write for us
  • Advertise with us
  • General Terms and Conditions
  • Privacy policy
  • Feedly
  • Telegram
  • Youtube
  • Facebook
  • Instagram
  • LinkedIn
  • Tumblr
  • Pinterest
  • Twitter
  • mastodon

Tags

Active Directory AWS Azure Bitlocker Microsoft Windows PowerShell WDS Windows 10 Windows 11 Windows Server 2016

Copyright © 2025 TechDirectArchive

 

Loading Comments...
 

You must be logged in to post a comment.