我想编写一个简单的 If 语句来检查进程是否存在。如果它存在,应该开始一些事情。
像这样,但工作.. ;)
If ((Get-Process -Name Tvnserver.exe ) -eq $True)
{
Stop-Process tnvserver
Stop-Service tvnserver
Uninstall...
Install another Piece of Software
}
Else
{
do nothing
}
谢谢