diff --git a/scripts/Windows/Collections/Personal.ps1 b/scripts/Windows/Collections/Personal.ps1
index 9f0ac45d..af5f0761 100644
--- a/scripts/Windows/Collections/Personal.ps1
+++ b/scripts/Windows/Collections/Personal.ps1
@@ -154,10 +154,13 @@ function Restore-PersonalApps([Context] $context) {
     $context.RemoveDesktopIcon("GitHub*");
 
     choco install -y `
-        nvs `
         python `
         visualstudio2019-workload-vctools;
 
+    $env:NVS_HOME="$env:ProgramData\nvs";
+    git clone "https://github.com/jasongin/nvs.git" "$env:NVS_HOME";
+    & "$env:NVS_HOME\nvs.cmd" install;
+
     refreshenv;
     nvs add latest;
     nvs link latest;