From a0f18168e5802ea8f2005798c7d01519a7fdfa02 Mon Sep 17 00:00:00 2001 From: chase Date: Tue, 6 Sep 2022 19:25:18 -0500 Subject: [PATCH] Copy Instead of Move. --- Redist-Installer.bat | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Redist-Installer.bat b/Redist-Installer.bat index 128d658..a7d871f 100644 --- a/Redist-Installer.bat +++ b/Redist-Installer.bat @@ -13,9 +13,9 @@ md %temp%\Redist-Installer >nul 2>&1 if exist "7za.dll" ( if exist "7za.exe" ( if exist "redists.zip" ( - move /Y 7za.dll %temp%\Redist-Installer >nul - move /Y 7za.exe %temp%\Redist-Installer >nul - move /Y redists.zip %temp%\Redist-Installer >nul + copy /Y 7za.dll %temp%\Redist-Installer >nul + copy /Y 7za.exe %temp%\Redist-Installer >nul + copy /Y redists.zip %temp%\Redist-Installer >nul goto offlineInstall ) )