When a program is installed in vista, system expects reboot. You can do that quickly by restarting explorer.exe. This way you’ll avoid restarting and booting the entire system. To do this you can simply create a batch file which contains instruction that asks for the instant restart of explorer.exe.
Follow the steps to create batch file.
1. Open notepad or any text editor.
2. Copy and paste the following text into text editor:
@echo off
taskkill /f /IM explorer.exe
explorer.exe
3. Save the file with any name but with extension .bat.
You can run this batch file whenever any new program asks you to restart for reboot after installation.
