Forgot to do their job.
IF EXIST c:\SWSHARE\nowremove.txt GOTO REMOVEFILES
icacls.exe C:\swtools\lenovowelcome /grant BUILTIN\Users:F /T /C
start /w C:\SWTOOLS\LenovoWelcome\LenovoRegistration.exe /INIF="C:\SWSHARE\leadertech.ini"
REM (Matt needs to create a file for if registration fails 3x OR if successful called nowremove.txt so we know to remove the files on next boot)
REM do we need "C:\Program Files\Lenovo Registration\Lenovo.exe" /remind /language=ENU /INIF="C:\SWSHARE\leadertech.ini" /PRNM="Lenovo"
GOTO END
REM Below line deletes everything not needed anymore.
:REMOVEFILES
ICACLS.EXE C:\SWSHARE\ /grant BUILTIN\Users:F /T /C
del c:\swshare\leadertech.ini
del c:\swshare\nowremove.txt
ICACLS.EXE "%appdata%\Microsoft\Windows\Start Menu\Programs\startup" /grant BUILTIN\Users:F /T /C
del "%appdata%\Microsoft\Windows\Start Menu\Programs\startup\LenovoWelcome.lnk"
del "%appdata%\Microsoft\Windows\Start Menu\Programs\Startup\LenovoRegistration.lnk"
:END