diff --git a/share/context/download_context.sh b/share/context/download_context.sh
index 4ef44a7986..3a5ee66b9c 100755
--- a/share/context/download_context.sh
+++ b/share/context/download_context.sh
@@ -15,13 +15,11 @@ function get_tag_version {
     done
 }
 
-CONTEXT_API="https://api.github.com/repos/OpenNebula/addon-context-linux/releases"
-CONTEXT_API_WINDOWS="https://api.github.com/repos/OpenNebula/addon-context-windows/releases"
-
+CONTEXT_API="https://api.github.com/repos/OpenNebula/one-apps/releases"
 VERSION=`cat ../../src/im_mad/remotes/VERSION`
 
 ###############################################################################
-# Download linux packages
+# Download linux & windows packages
 ###############################################################################
 
 TAG_VERSION=`get_tag_version $CONTEXT_API`
@@ -36,18 +34,3 @@ TAG="v$TAG_VERSION"
 curl -s $CONTEXT_API | \
         jq -r --arg TAG "$TAG" '.[] | select(.tag_name == $TAG) | .assets[].browser_download_url' | \
 		xargs wget -P .
-
-###############################################################################
-# Download windows .msi
-###############################################################################
-
-TAG_VERSION=`get_tag_version $CONTEXT_API_WINDOWS`
-
-# If the current ONE version is greater than every context version the last one is retrieved
-if [ -z "$TAG_VERSION" ]; then
-    TAG_VERSION=`curl -s $CONTEXT_API_WINDOWS | jq -r '.[0].tag_name' | cut -d 'v' -f 2`
-fi
-
-TAG="v$TAG_VERSION"
-
-wget -P . https://github.com/OpenNebula/addon-context-windows/releases/download/$TAG/one-context-$TAG_VERSION.msi