w10install/optional/install-antivir.cmd

24 lines
428 B
Batchfile
Raw Normal View History

2021-01-10 18:45:55 +01:00
@echo off
set EXE=..\software\F-SecureNetworkInstaller-AV_AVTR20F930_.exe
2021-02-27 20:07:28 +01:00
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
2021-01-10 18:45:55 +01:00
echo ####### %0 #######
2021-01-12 19:11:44 +01:00
echo installing F-Secure Anti-Virus ...
2021-03-06 16:23:00 +01:00
start /wait %EXE%
2021-01-10 18:45:55 +01:00
2021-01-12 19:11:44 +01:00
echo removing F-Secure desktop link ...
2021-02-27 20:07:28 +01:00
del /F "%PUBLIC%\Desktop\F-Secure Anti-Virus.lnk" 2>nul
2021-01-12 19:11:44 +01:00
2021-03-06 16:23:00 +01:00
rem refresh desktop (W10 style)
ie4uinit.exe -show
2021-01-10 18:45:55 +01:00
echo ####### %0 #######
2021-03-02 21:47:42 +01:00
pause
2021-03-02 14:59:41 +01:00