我正在尝试创建一个小的批处理文件,该文件将停止Windows Update。我希望不必每次都手动查找PID,因此我试图不使用它而杀死它。
我为import React, {Component} from 'react';
import './App.css';
class App extends Component {
constructor(props) {
super(props);
this.state = { apiResponse: '' };
}
callAPI() {
fetch("http://localhost:9000/sqlQuery")
.then(res => res.text())
.then(res => this.setState({ apiResponse: res })) //problem is here? :/
}
componentWillMount() {
this.callAPI()
setInterval(this.callAPI, 5000);
}
render() {
return (
<div className="App">
<header className="App-header">
<p className="App-intro">{this.state.apiResponse}</p>
</header>
</div>
);
}
}
export default App;
标志尝试了多个参数,包括/IM
wuauserv
。我还尝试获取PID,以便将其存储在变量中。
对于PID,我尝试了以下操作:
wuauserv.exe
直接杀死图像:
for /F "TOKENS=1" %a in ('wmic PROCESS where "Name='wuauserv'" get ProcessID | findstr [0-9]') do set MyPID=%a
我希望他们找到PID或终止进程,但这只是说没有找到taskkill /IM wuauserv.exe /f
编辑:使用@Compo想法似乎是最好的解决方案,尽管我切换了它们,但有某种强制切换来立即终止服务。