Windows 8.1帶有稱爲「SlideToShutdown」的功能。我正嘗試以編程方式調用該可執行文件。我嘗試了C#中的Process.Start();
,VB中的Shell()
以及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
時,它在命令提示符下運行完美。無法以編程方式調用特定的exe文件
這是我的C程序(取名爲交流轉換器)來調用它
#include <stdlib.h>
#include <stdio.h>
int main()
{
(void)system("C:\\Windows\\System32\\SlideToShutDown.exe");
return(0);
}
請幫助我。
什麼是標籤?這看起來像C. – dandan78
@ dandan78 OP嘗試C#,VB.NET和C.他可能想要在任何這些語言的解決方案。 – Stijn
@你是對的,我的錯。 – dandan78