diff --git a/Marlin/Marlin_main.cpp b/Marlin/Marlin_main.cpp
index 6ddd0d2ea2839c03119d5a6aa076149e5a103c8d..dcc7af09e2109410d5a3ba244c53ddc1c91ac72d 100644
--- a/Marlin/Marlin_main.cpp
+++ b/Marlin/Marlin_main.cpp
@@ -2327,6 +2327,17 @@ static void homeaxis(AxisEnum axis) {
         #if ENABLED(DEBUG_LEVELING_FEATURE)
           if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("> SERVO_ENDSTOPS > Stow with servo.move()");
         #endif
+        // Raise the servo probe before stow outside ABL context... This is a workaround that allows the use of a Servo Probe without ABL until a more global probe handling is implemented.
+        #if DISABLED(AUTO_BED_LEVELING_FEATURE)
+          #ifndef Z_RAISE_AFTER_PROBING
+            #define Z_RAISE_AFTER_PROBING 15                 // default height
+          #endif
+          current_position[Z_AXIS] = Z_RAISE_AFTER_PROBING;
+          feedrate = homing_feedrate[Z_AXIS];
+          line_to_current_position();
+          stepper.synchronize();
+        #endif
+
         servo[servo_endstop_id[axis]].move(servo_endstop_angle[axis][1]);
         if (_Z_PROBE_SUBTEST) endstops.enable_z_probe(false);
       }