All the info you need regarding wmic's removal and how to temporarily restore wmic is in the link below.
Window 11 missing wmic.exc
Windows 11 Pro
- Version 25H2
- Build 26200.9448
I am trying to build a Tableau Connector and I cannot complete the process because (WMIC) is removed from Windows 11 pro. Is there a work around?
Windows for business | Windows Client for IT Pros | User experience | Other
2 answers
Sort by: Most helpful
-
AI answer
2026-09-25T22:59:12.7333333+00:00 Yes. On Windows 11 version 25H2, WMIC is uninstalled during the feature update. It can be reinstalled temporarily, but that is not recommended as a long-term solution because WMIC is being fully removed from supported Windows 11 versions and is no longer available as a Feature on Demand on Windows 11 version 24H2 and above as of August 2026.
Supported long-term workaround:
- Replace WMIC usage in the connector build process with PowerShell, WMI APIs, or other modern management tools.
- Update any scripts, build steps, or documentation that call
wmicso they use the replacement approach instead.
Temporary mitigation if the build process still depends on WMIC:
- Download
wmic_dlc.zip. - Extract it to a local folder.
- Open PowerShell as Administrator.
- Go to the extracted
wmic_dlcfolder. - Run
Set-ExecutionPolicy Bypass -Scope Process - If prompted, select Yes.
- Run
./install.ps1 - Confirm the script reports
WMIC has been installed successfully. - Retest the Tableau Connector build.
- Verify by running
wmic
Important:
- This mitigation is temporary and not a secure, long-term solution.
- The install script copies WMIC files to
C:\Windows\System32\wbemand registers the required aliases. - WMI itself is still supported; only the
wmic.exeutility was removed.
AI-generated content may be incorrect. Read our transparency notes for more information.