utility: windows setup update

Changed windows setup folder layout and added readme file
This commit is contained in:
Manuel Dobusch
2016-11-24 16:18:37 +01:00
parent 3124a4320e
commit 9aa07d46aa
4 changed files with 116 additions and 103 deletions
@@ -10,13 +10,13 @@ int main()
{
std::cout << "Coati found" << std::endl;
std::cout << "Performing upgrade" << std::endl;
system("msiexec /i coati.msi REINSTALL=ALL REINSTALLMODE=vomus");
system("msiexec /i bin/coati.msi REINSTALL=ALL REINSTALLMODE=vomus");
}
else
{
std::cout << "Coati not found" << std::endl;
std::cout << "Performing initial installation" << std::endl;
system("msiexec /i coati.msi");
system("msiexec /i bin/coati.msi");
}
return 0;