Need to update the JAVA or Adobe Reader on computers on the network.
A great website that a automate this is www.ninite.com basically select your apps and it will download a single EXE that runs updates or installs them without the annoying toolbars and EULA's you must accept.
I took this one step further and create a EXE that allow you to execute this on a domain network against PC's. This will save you the step of having to manually sit in front of them and update them. It will prompt you for the IP address of the computer and download the NINITE exe and execute it against the PC.
A great website that a automate this is www.ninite.com basically select your apps and it will download a single EXE that runs updates or installs them without the annoying toolbars and EULA's you must accept.
I took this one step further and create a EXE that allow you to execute this on a domain network against PC's. This will save you the step of having to manually sit in front of them and update them. It will prompt you for the IP address of the computer and download the NINITE exe and execute it against the PC.
Enter the IP or HOSTNAME of the computer.
For this to work you would need full administrator access to the machine, test by slashing over to \\PCNAME\c$ - make sure firewalls and AV are not blocking you from doing this. If they are you could try disabling them remotely.
For this to work you would need full administrator access to the machine, test by slashing over to \\PCNAME\c$ - make sure firewalls and AV are not blocking you from doing this. If they are you could try disabling them remotely.
Once it copies the NINITE exe across to the PC it will execute it and update both JAVA and Adobe. Please find my source code below, it requires WGET and Microsoft PSEXEC
Please NOTE: I didn't pay for my APP to be certified so your AV or the OS will complain about it. Use at your own risk, again nothing scary about it but don't like complaints. Always test before deploying.
Please NOTE: I didn't pay for my APP to be certified so your AV or the OS will complain about it. Use at your own risk, again nothing scary about it but don't like complaints. Always test before deploying.
SOURCE CODE: JAVA ADOBE UPDATER
@echo off
color B1
mode con lines=2 cols=60
SET /P pcip=Please enter the IP Address of the computer:
@echo off del \\%pcip%\c$\windows\temp /f /y
color A8
mode con lines=4 cols=80
@echo Lets Cleanup all Temp Files
wget.exe --no-check-certificate "https://ninite.com/java-reader/ninite.exe"
echo D | xcopy /f /y ninite.exe \\%pcip%\c$\windows\temp
color E0
mode con lines=60 cols=90
%temp%\psexec.exe \\%pcip% c:\windows\temp\ninite.exe
color B1
mode con lines=2 cols=60
SET /P pcip=Please enter the IP Address of the computer:
@echo off del \\%pcip%\c$\windows\temp /f /y
color A8
mode con lines=4 cols=80
@echo Lets Cleanup all Temp Files
wget.exe --no-check-certificate "https://ninite.com/java-reader/ninite.exe"
echo D | xcopy /f /y ninite.exe \\%pcip%\c$\windows\temp
color E0
mode con lines=60 cols=90
%temp%\psexec.exe \\%pcip% c:\windows\temp\ninite.exe