Windows 8.1 带有一个名为“SlideToShutdown”的功能。我正在尝试以编程方式调用该可执行文件。Process.Start();
我在 C#、Shell()
VB 和C 中尝试过(void)system();
。
它说错误为'C:\Windows\System32\SlideToShutdown.exe' is not recognized as an internal or external command, operable program or batch file
.
但是在我执行时在命令提示符下start C:\windows\system32\slidetoshutdown.exe
它工作得很好。
这是我的 C 程序(名为 ac)来调用它
#include <stdlib.h>
#include <stdio.h>
int main()
{
(void)system("C:\\Windows\\System32\\SlideToShutDown.exe");
return(0);
}
请帮我。