


WMIC is an important tool for system administrators. It provides an efficient and precise way to manage Windows systems under the "Command Prompt". Administrators can use WMIC to perform system configuration, query and monitoring operations.
Microsoft has announced that WMIC will be phased out in future Windows versions:
- Windows 10 21H1: The WMIC user interface (UI) is no longer recommended.
- Windows 11 23H2 and 22H2: WMIC is provided as an "optional feature" but is still installed by default.
- Windows 11 24H2: WMIC will be completely removed.
In addition, starting from January 29, 2024, WMIC is only provided as an optional feature in the Windows preview version and is no longer installed by default.
So, what should users who rely on WMIC do for their work? Microsoft recommends using Windows PowerShell instead of WMIC.
PowerShell is a command line interpreter and scripting environment based on the .NET Framework with more powerful features and more flexible syntax.
Next, let us first review the main functions of WMIC, and then introduce how to use PowerShell to replace these functions.
What is WMIC
WMIC stands for Windows Management Instrumentation Command-line, which is a command line tool. It provides access to Windows Management Instrumentation (WMI). WMI is a powerful management framework in Windows for data management and operations.
By using WMIC, administrators can easily perform various Windows management tasks. Combined with WMI scripts and applications, as well as WinRM (Windows Remote Management) and SCCM (System Center Configuration Manager), management tasks can be automated on remote computers. WMIC provides powerful functions to easily access and manage various information and functions of the Windows operating system through the command line or scripts. Administrators can use WMIC to query system information, install software, configure network settings, etc. At the same time, WMIC also supports remote management, and administrators can easily manage multiple computers through remote connections. By combining WMI scripts and applications, administrators can more flexibly customize management tasks and achieve automated execution. With the help of tools such as WinRM and SCCM, remote management can be carried out more efficiently, improving management efficiency and reducing manual operations
Tight integration with WMIC allows users to query and adjust system settings. For example, Windows screen brightness can be easily adjusted through WMIC. Use the following WMIC commands to get your computer's model, name, manufacturer, and system type.
wmic computersystem get manufacturer,model,name,systemtype
Use WMIC command to obtain computer information
This command can quickly provide key system information and is extremely useful for system administrators.
Why Microsoft decided to phase out WMIC
WMIC Deprecation Timetable
Since WMIC is so easy to use, why does Microsoft abandon it and promote PowerShell as a replacement? This decision is mainly based on the following reasons:
- Technology Development: PowerShell provides a more modern and powerful way to access and manage WMI, as well as many other system management functions. It supports more complex scripts, more flexible commands, and a broader feature set, making it the first choice for system administration tasks.
- Performance improvement: Compared with WMIC, PowerShell usually performs better in terms of performance and efficiency. Especially when processing large amounts of data or performing complex management tasks, PowerShell cmdlets run more efficiently.
- Security considerations: WMIC may be used by malware or attackers to execute remote commands or deploy malicious code. PowerShell effectively reduces this type of risk by implementing powerful security features such as policy control and more detailed permission management.
- Unified standards: Centralizing the use of PowerShell to manage system tasks helps to unify and standardize the tool set, simplify system management work, improve efficiency, and reduce the need for administrators to switch between different tools.
- Community support: PowerShell has an active community that provides a wealth of resources, scripts, and modules. Continuous investment by Microsoft and the community ensures that PowerShell is constantly updated and improved, while the development of WMIC has been relatively stagnant.
Although WMIC was a very useful management tool in the past, as technology evolves and new tools emerge, Microsoft believes that a move to more modern, more secure, and more powerful management tools is necessary.
This reflects an industry norm: As technology advances, old tools will be replaced by new, more advanced tools to meet the needs of modern IT environments.
Use PowerShell, WMI and CIM instead of WMIC
Before we formally explore alternatives, we need to clarify several core concepts:
- Windows 系统内置了 WMI 和 CIM 的 cmdlets,为管理员提供了强大的管理工具。
- WMI(Windows 管理接口)基于 CIM(通用信息模型)标准,主要用于获取和展示计算机信息。CIM 是行业通用标准,虽然它本身不直接支持远程数据访问,但 WMI 利用了 DCOM(分布式组件对象模型)和 RPC(远程过程调用)等技术,实现了在网络连接的远程系统上使用 CIM。不过,WMI 在通过防火墙进行远程设备查询时存在一定局限性。
- PowerShell 中的 WMI 和 CIM cmdlets 是向着更安全、更高效、兼容性更强的管理工具转型的重要一步。接下来,我们将通过一些基本实例,帮助你完成这一转型过程。
CIM cmdlets 使用示例
CIM cmdlets 通过 WS-Management 协议实现数据交换,该协议比 DCOM 更适合远程管理,尤其是在需要穿透防火墙时。
- 获取系统信息
Get-CimInstance -ClassName CIM_ComputerSystem
该命令会显示当前计算机的系统信息,输出内容与 WMIC 命令相似。
使用 Get-CimInstance 获取系统信息
- 获取启动配置
Get-CimInstance -ClassName CIM_OperatingSystem
该命令提供了操作系统的详细信息,包括系统目录、构建号和版本信息等。
WMI cmdlets 使用示例
虽然比较推荐使用 CIM cmdlets,但 PowerShell 同样支持直接使用 WMI 的 cmdlets。例如:
- 获取进程列表
Get-WmiObject -Class Win32_Process
该命令会列出当前运行的所有进程。
使用 Get-WmiObject 查看进程列表
- 获取服务状态
Get-WmiObject -Class Win32_Service | Where-Object {$_.State -eq "Running"}
该命令会筛选出所有当前正在运行的服务。
使用 Get-WmiObject 查看运行的服务
WMIC 脚本向 PowerShell 转换
如果你之前主要使用 WMIC 进行管理任务,现在可以考虑将这些脚本转换为 PowerShell cmdlets。
PowerShell 提供了更多命令选项和更灵活的脚本功能,在多数情况下,这个转换过程直接且简单。
转换过程中,Get-Command
和Get-Help
cmdlets 能帮助你快速找到对应的 PowerShell 命令,及其使用方法。
例如,要查找所有与实例相关的可用 CIM 命令,可以使用:
Get-Command -Noun CimInstance*
使用 Get-Help
获取帮助
同时,Get-Help
命令能提供特定 cmdlet 的详细使用说明和示例,这对学习新命令非常有帮助:
Get-Help Get-CimInstance -Full
通过这种方式,你就可以逐步替换 WMIC 命令,从而提高系统管理的效率和安全性。
要深入了解 PowerShell 中的 WMI 和 CIM 命令使用方法,可以参考微软发布的这篇指南。
自 2016 年起,微软就已经开始逐步淘汰 WMIC。虽然没有宣布具体的弃用日期,但想必已经迫在眉睫。因此,建议系统管理员尽快开始探索迁移解决方案,把 PowerShell 的 WMI 和 CIM 工具融入日常管理工作和编程任务中。
The above is the detailed content of WMIC is finally coming to an end: How to migrate to PowerShell, a required course for system administrators. For more information, please follow other related articles on the PHP Chinese website!

c盘的users是用户文件夹,主要存放用户的各项配置文件。users文件夹是windows系统的重要文件夹,不能随意删除;它保存了很多用户信息,一旦删除会造成数据丢失,严重的话会导致系统无法启动。

启动任务管理器的三个快捷键是:1、“Ctrl+Shift+Esc”,可直接打开任务管理器;2、“Ctrl+Alt+Delete”,会进入“安全选项”的锁定界面,选择“任务管理器”,即可以打开任务管理器;3、“Win+R”,会打开“运行”窗口,输入“taskmgr”命令,点击“确定”即可调出任务管理器。

PIN码是Windows系统为了方便用户本地登录而独立于window账户密码的快捷登录密码,是Windows系统新添加的一套本地密码策略;在用户登陆了Microsoft账户后就可以设置PIN来代替账户密码,不仅提高安全性,而且也可以让很多和账户相关的操作变得更加方便。PIN码只能通过本机登录,无法远程使用,所以不用担心PIN码被盗。

对于刚刚开始使用PHP的用户来说,如果在Windows操作系统中遇到了“php不是内部或外部命令”的问题,可能会感到困惑。这个错误通常是由于系统无法识别PHP的路径导致的。在本文中,我将为您提供一些可能会导致这个问题的原因和解决方法,以帮助您快速解决这个问题。

win10自带的onenote是UWP版本;onenote是一套用于自由形式的信息获取以及多用户协作工具,而UWP版本是“Universal Windows Platform”的简称,表示windows通用应用平台,不是为特定的终端设计的,而是针对使用windows系统的各种平台。

windows操作系统的特点包括:1、图形界面;直观高效的面向对象的图形用户界面,易学易用。2、多任务;允许用户同时运行多个应用程序,或在一个程序中同时做几件事情。3、即插即用。4、出色的多媒体功能。5、对内存的自动化管理。

因为win10系统是不自带扫雷游戏的,需要用户自行手动安装。安装步骤:1、点击打开“开始菜单”;2、在打开的菜单中,找到“Microsoft Store”应用商店,并点击进入;3、在应用商店主页的搜索框中,搜索“minesweeper”;4、在搜索结果中,点击选择需要下载的“扫雷”游戏;5、点击“获取”按钮,等待获取完毕后自动完成安装游戏即可。

在windows中鼠标指针呈四箭头时一般表示选中对象可以上、下、左、右移动。在Windows中鼠标指针首次用不同的指针来表示不同的状态,如系统忙、移动中、拖放中;在Windows中使用的鼠标指针文件还被称为“光标文件”或“动态光标文件”。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Zend Studio 13.0.1
Powerful PHP integrated development environment

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
