打开“配置高级用户配置文件属性”的命令(Windows 7)
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/12583349/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Command to open "Configure advanced user profile properties" (Windows 7)
提问by Avilan
I'm trying to figure out how to open the "Configure advanced user profile properties" control panel window by command line, so that I can provide a link to it in my application.
我试图弄清楚如何通过命令行打开“配置高级用户配置文件属性”控制面板窗口,以便我可以在我的应用程序中提供指向它的链接。
It can be opened without going through the control panel by typing "userprofile" in Start->Search box. So I assume that it must have a valid command to open it directly, but I can't seem to figure out what the command is.
通过在“开始”->“搜索”框中键入“用户配置文件”,无需通过控制面板即可打开它。所以我假设它必须有一个有效的命令才能直接打开它,但我似乎无法弄清楚命令是什么。
I've found that "control nusrmgr.cpl" opens the control panel for "User Accounts" which has the link to "Configure advanced user profile properties", but I want to provide a direct link.
我发现“control nusrmgr.cpl”打开了“用户帐户”的控制面板,其中有“配置高级用户配置文件属性”的链接,但我想提供一个直接链接。
Anyone have any insight to how this can be done?
任何人都对如何做到这一点有任何见解?
回答by wmz
The actual command line for Configure advanced user profile properties
is:rundll32.exe sysdm.cpl,EditUserProfiles
. You can just copy & paste this into cmd window to run.
的实际命令行Configure advanced user profile properties
是:rundll32.exe sysdm.cpl,EditUserProfiles
. 您只需将其复制并粘贴到 cmd 窗口即可运行。
Further reading:Entry for run
at ss64.com
进一步阅读:进入run
ss64.com