diff --git a/scripts/Windows/Scripts/Context.ps1 b/scripts/Windows/Scripts/Context.ps1
index 1ed65369..0e7d1355 100644
--- a/scripts/Windows/Scripts/Context.ps1
+++ b/scripts/Windows/Scripts/Context.ps1
@@ -58,6 +58,10 @@ class Context {
         return $this.Get($this.StagePropertyName);
     }
 
+    [void] RemoveStage() {
+        $this.Remove($this.StagePropertyName);
+    }
+
     [string] ArchivePath($name) {
         return Join-Path $this.BackupRoot() "$name.7z";
     }