如何使用CMD打开控制面板的系统信息
How to open Control Panel's System information using CMD
我想创建一个可以打开的批处理文件 "Control Panel\System and Security\System"
我正在使用 Windows 10 并且 "This PC" 在 cortana 中不可搜索,我经常通过右键单击此 PC > 属性来检查系统架构,但我想在批处理 (. bat 文件),它不起作用
批处理命令:启动“”"Control Panel\System and Security\System" & 退出
弹出提示:"Windows cannot find 'Control Panel\System and Security\System'. make sure you typed the name correctly, and try again."
您要的是 control
命令。您可以找到更多信息 Here
尝试control /name Microsoft.System
。
您可以直接在批处理文件中获取操作系统架构,而无需打开 GUI 框:
您可以使用内置系统变量来检索 x86
或 x64
:
@Set "OSA=x%PROCESSOR_ARCHITECTURE:~-2%"
@If %OSA%==x86 If Defined PROCESSOR_ARCHITEW6432 Set "OSA=x64"
@Echo %OSA%&Pause
或者如果您只想 32
或 64
@If %PROCESSOR_ARCHITECTURE:~-2% Equ 86 (If Defined PROCESSOR_ARCHITEW6432 (Set "OSA=64")Else Set "OSA=32")Else Set "OSA=64"
@Echo %OSA%&Pause
您甚至可以在 cmd、(命令提示符)、window 中查看它:
If %PROCESSOR_ARCHITECTURE:~-2% Equ 86 (If Defined PROCESSOR_ARCHITEW6432 (Echo 64-bit)Else Echo 32-bit)Else Echo 64-bit
您还可以使用内置工具,例如 wmic,来检索 32
或 64
:
@For /F %%A In ('WMIC OS Get OSArchitecture')Do Set /A "OSA=%%A" 2>Nul
@Echo %OSA%&Pause
我有一个类似的问题,并找到了部分答案;
在 cmd 中,键入“开始 ms-settings:”
这将启动 Win10 中的设置应用程序。如果我试图在“设置”应用程序中打开特定页面,特别是“帐户”怎么办?
我尝试在 cmd 中输入“control /name Microsoft.System”,这返回了旧版本的应用程序。
我想创建一个可以打开的批处理文件 "Control Panel\System and Security\System"
我正在使用 Windows 10 并且 "This PC" 在 cortana 中不可搜索,我经常通过右键单击此 PC > 属性来检查系统架构,但我想在批处理 (. bat 文件),它不起作用
批处理命令:启动“”"Control Panel\System and Security\System" & 退出
弹出提示:"Windows cannot find 'Control Panel\System and Security\System'. make sure you typed the name correctly, and try again."
您要的是 control
命令。您可以找到更多信息 Here
尝试control /name Microsoft.System
。
您可以直接在批处理文件中获取操作系统架构,而无需打开 GUI 框:
您可以使用内置系统变量来检索 x86
或 x64
:
@Set "OSA=x%PROCESSOR_ARCHITECTURE:~-2%"
@If %OSA%==x86 If Defined PROCESSOR_ARCHITEW6432 Set "OSA=x64"
@Echo %OSA%&Pause
或者如果您只想 32
或 64
@If %PROCESSOR_ARCHITECTURE:~-2% Equ 86 (If Defined PROCESSOR_ARCHITEW6432 (Set "OSA=64")Else Set "OSA=32")Else Set "OSA=64"
@Echo %OSA%&Pause
您甚至可以在 cmd、(命令提示符)、window 中查看它:
If %PROCESSOR_ARCHITECTURE:~-2% Equ 86 (If Defined PROCESSOR_ARCHITEW6432 (Echo 64-bit)Else Echo 32-bit)Else Echo 64-bit
您还可以使用内置工具,例如 wmic,来检索 32
或 64
:
@For /F %%A In ('WMIC OS Get OSArchitecture')Do Set /A "OSA=%%A" 2>Nul
@Echo %OSA%&Pause
我有一个类似的问题,并找到了部分答案; 在 cmd 中,键入“开始 ms-settings:” 这将启动 Win10 中的设置应用程序。如果我试图在“设置”应用程序中打开特定页面,特别是“帐户”怎么办? 我尝试在 cmd 中输入“control /name Microsoft.System”,这返回了旧版本的应用程序。