diff --git a/typo3/sysext/install/updates/class.tx_coreupdates_compressionlevel.php b/typo3/sysext/install/updates/class.tx_coreupdates_compressionlevel.php
index 981fc9e8584c28cc486875d09fa8ec1dcf4dfd9d..470ff2c7620f70c083340a40e69be6127ea95ff4 100644
--- a/typo3/sysext/install/updates/class.tx_coreupdates_compressionlevel.php
+++ b/typo3/sysext/install/updates/class.tx_coreupdates_compressionlevel.php
@@ -43,7 +43,8 @@ class tx_coreupdates_compressionlevel extends Tx_Install_Updates_Base {
 		$description = '<p><strong>TYPO3_CONF_VARS[BE][compressionLevel] is enabled.</strong><br />
 		In TYPO3 4.4, compressionLevel was expanded to include automatic gzip compression of JavaScript and CSS stylessheet files.
 		<strong>To prevent the TYPO3 backend from being unusable, you must include the relevant lines from _.htaccess.</strong></p>';
-		if (intval($GLOBALS['TYPO3_CONF_VARS']['BE']['compressionLevel']) > 0) {
+
+		if (!$this->isWizardDone() && intval($GLOBALS['TYPO3_CONF_VARS']['BE']['compressionLevel']) > 0) {
 			return TRUE;
 		}
 		return FALSE;
@@ -80,6 +81,7 @@ AddEncoding gzip .gzip
 	 */
 	public function performUpdate(array &$dbQueries, &$customMessages) {
 		$customMessages = 'Cannot automatically fix this problem! Please check manually.';
+		$this->markWizardAsDone();
 		return FALSE;
 	}
 }
diff --git a/typo3/sysext/rtehtmlarea/hooks/install/class.tx_rtehtmlarea_deprecatedrteproperties.php b/typo3/sysext/rtehtmlarea/hooks/install/class.tx_rtehtmlarea_deprecatedrteproperties.php
index d80960800073704bb97cbf36f3a6fe72166c6ef3..613e21f701ccd644bfd1f55f30bc45c22dfbc750 100644
--- a/typo3/sysext/rtehtmlarea/hooks/install/class.tx_rtehtmlarea_deprecatedrteproperties.php
+++ b/typo3/sysext/rtehtmlarea/hooks/install/class.tx_rtehtmlarea_deprecatedrteproperties.php
@@ -132,11 +132,18 @@ class tx_rtehtmlarea_deprecatedRteProperties extends Tx_Install_Updates_Base {
 						'<table><thead><tr><th>Deprecated property</th></tr></thead><tbody>' . $replacementProperties . '</tboby></table>' . LF .
 						'<p>Therefore, the Page TSconfig column of those pages will need to be updated manually.</p>' . LF;
 				}
+				$result = TRUE;
+			} else {
+					// if we found no occurence of deprecated settings and wizard was already executed, then
+					// we do not show up anymore
+				if ($this->isWizardDone()) {
+					$result = FALSE;
+				}
 			}
 			$description .= '<p>Only page records were searched for deprecated properties. However, such properties can also be used in BE group and BE user records (prepended with page.). These are not searched nor updated by this wizard.</p>' . LF .
 				'<p>Page TSconfig may also be included from external files. These are not updated by this wizard. If required, the update will need to be done manually.</p>' . LF .
 				'<p>Note also that deprecated properties have been replaced in default configurations provided by htmlArea RTE';
-			$result = TRUE;
+
 		}
 		return $result;
 	}
@@ -167,6 +174,7 @@ class tx_rtehtmlarea_deprecatedRteProperties extends Tx_Install_Updates_Base {
 			$customMessages .= '<p>Only page records were searched for deprecated properties. However, such properties can also be used in BE group and BE user records (prepended with page.). These are not searched nor updated by this wizard.</p>' . LF .
 				'<p>Page TSconfig may also be included from external files. These were not updated by this wizard. If required, the update will need to be done manually.</p>';
 		}
+		$this->markWizardAsDone();
 		return empty($customMessages) || $success;
 	}