This commit is contained in:
USER
2025-09-05 22:22:25 +01:00
parent eaf5cbc520
commit 4add2bc8ea

View File

@ -15,11 +15,17 @@ if exist %SoftwarePath% (
echo "%Software% is available"
mkdir "C:\Scripts\Wordpad"
xcopy "W:\*" "S:\Scripts\Wordpad\" /h /e /y
xcopy "W:\*" "C:\Scripts\Wordpad\" /h /e /y
) else (
if exist "D:\DocumentsHighfieldApps\Wordpad" (
echo "%Software% is available on Server"
mkdir "C:\Scripts\Wordpad"
xcopy "D:\DocumentsHighfieldApps\Wordpad\*" "C:\Scripts\Wordpad\" /h /e /y
) else (
echo "%Software% is not installed"
call %TMESSAGE% '"%Software% missing on %check_computername%"'
)
)
exit /b