エラー: コマンドを開始できませんでした: [...] bibtex.exe

エラー: コマンドを開始できませんでした: [...] bibtex.exe

という名前の参考文献ファイルを作成しましたbibliografia.bib。コードは次のとおりです。

% Encoding: UTF-8

@Book{Russell2000,
  title     = {Θεωρία των Τύπων},
  publisher = {Στάχυ},
  year      = {2000},
  author    = {\textlatin{Bertrand Russell}},
}

そしてこれが本文です:

\documentclass[a4paper,11pt,twoside]{book}
\usepackage[a4paper,left=2.5cm,right=2.5cm,top=2.5cm,bottom=2.5cm]{geometry}

\usepackage[english,greek]{babel}
\usepackage[utf8]{inputenc}

\title{ΜΑΘΗΜΑΤΙΚΑ}

\begin{document}
    \maketitle
    \tableofcontents

Ράσελ\cite{Russell2000}

\addcontentsline{toc}{chapter}{Βιβλιογραφία} %line1
\nocite{*} %line2
\bibliographystyle{plain} %line3
\bibliography{bibliografia} %line4

\end{document}

これらの行がない場合line1line4すべて正常ですが、これらの行があるとコンパイルが停止しません。次のエラー メッセージが表示されます。

Error: Could not start the command: "C:/Program Files/MiKTeX 2.9/miktex/bin/x64/bibtex.exe" "MainText"

何が間違っているのでしょうか?

関連情報