VMware vDefend Firewall
VMware NSX
IDFW Event Log Scraping relies heavily on Event ID 4624 (Logon Type 3 - Network) being generated on the Domain Controller (DC) to map a user's identity to their current IP address.
More information on Event ID 4624
If a user logs into a workstation while the DC is unreachable, Windows authenticates the user using cached credentials. Because this occurs locally on the endpoint:
This behavior is most frequently observed in two scenarios:
@echo off
:: Temporarily map and open SYSVOL in the background
net use Z: \\YOUR_DOMAIN.local\SYSVOL
start /min "" explorer.exe Z:
:: Wait for 3 seconds
timeout /t 3 /nobreak >nul
:: Unmount drive Z:
net use Z: /delete /y