From 51cc43a462ad6d9c38178f9499dd672ec06cc601 Mon Sep 17 00:00:00 2001
From: Popey Gilbert <popey@debenclipper.com>
Date: Fri, 17 Apr 2015 17:45:56 +0100
Subject: [PATCH] Update install-mongodb.ps1

---
 scripts/windows/install-mongodb.ps1 | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/scripts/windows/install-mongodb.ps1 b/scripts/windows/install-mongodb.ps1
index e591e064e..abe6cc39f 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.6.4.zip" 
+$url = "http://downloads.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.0.2.zip" 
 $zipFile = "$mongoDbPath\mongo.zip" 
-$unzippedFolderContent ="$mongoDbPath\mongodb-win32-x86_64-2008plus-2.6.4.zip"
+$unzippedFolderContent ="$mongoDbPath\mongodb-win32-x86_64-2008plus-3.0.2.zip"
  
 if ((Test-Path -path $mongoDbPath) -eq $True) 
 {