From c136dbd52c2c093441f62261d66e6dabd9e02ade Mon Sep 17 00:00:00 2001 From: Orion <52828944+Sajad-Lx@users.noreply.github.com> Date: Mon, 8 May 2023 17:01:06 +0530 Subject: [PATCH] [tools]Fix typo for CleanUp tool powershell script (#25748) --- tools/CleanUp_tool_powershell_script/CleanUp_tool.ps1 | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tools/CleanUp_tool_powershell_script/CleanUp_tool.ps1 b/tools/CleanUp_tool_powershell_script/CleanUp_tool.ps1 index 2274d07d0d..fde811aaf2 100644 --- a/tools/CleanUp_tool_powershell_script/CleanUp_tool.ps1 +++ b/tools/CleanUp_tool_powershell_script/CleanUp_tool.ps1 @@ -8,7 +8,7 @@ if (Test-Path -Path $SettingsPath -PathType Any) { - Remove-Item –Path $SettingsPath –Recurse + Remove-Item -Path $SettingsPath -Recurse } #Deleting SuperFancyZones registry key @@ -17,7 +17,7 @@ if (Test-Path -Path $SettingsPath -PathType Any) if (Test-Path -Path $SuperFancyZones -PathType Any) { - Remove-Item –Path $SuperFancyZones –Recurse + Remove-Item -Path $SuperFancyZones -Recurse } #Deleting PowerRename registry key @@ -26,7 +26,7 @@ if (Test-Path -Path $SuperFancyZones -PathType Any) if (Test-Path -Path $PowerRename -PathType Any) { - Remove-Item –Path $PowerRename –Recurse + Remove-Item -Path $PowerRename -Recurse } #Deleting ImageResizer registry key @@ -35,7 +35,7 @@ if (Test-Path -Path $PowerRename -PathType Any) if (Test-Path -Path $ImageResizer -PathType Any) { - Remove-Item –Path $ImageResizer –Recurse + Remove-Item -Path $ImageResizer -Recurse } #Deleting DontShowThisDialogAgain registry key @@ -44,5 +44,5 @@ if (Test-Path -Path $ImageResizer -PathType Any) if (Test-Path -Path $DontShowThisDialogAgain -PathType Any) { - Remove-Item –Path $DontShowThisDialogAgain + Remove-Item -Path $DontShowThisDialogAgain }