diff --git a/scripts/windows/install-mongodb.ps1 b/scripts/windows/install-mongodb.ps1
index e667e0ee8..e591e064e 100755
--- a/scripts/windows/install-mongodb.ps1
+++ b/scripts/windows/install-mongodb.ps1
@@ -2,9 +2,9 @@ Set-ExecutionPolicy RemoteSigned
  
 $mongoDbPath = "C:\MongoDB" 
 $mongoDbConfigPath = "$mongoDbPath\mongod.cfg"
-$url = "http://downloads.mongodb.org/win32/mongodb-win32-x86_64-2008plus-2.8.0-rc4.zip" 
+$url = "http://downloads.mongodb.org/win32/mongodb-win32-x86_64-2008plus-2.6.4.zip" 
 $zipFile = "$mongoDbPath\mongo.zip" 
-$unzippedFolderContent ="$mongoDbPath\mongodb-win32-x86_64-2008plus-2.8.0-rc4.zip"
+$unzippedFolderContent ="$mongoDbPath\mongodb-win32-x86_64-2008plus-2.6.4.zip"
  
 if ((Test-Path -path $mongoDbPath) -eq $True) 
 {