Non PowerShell, batch file question

I have Win7AndW2K8R2-KB3134760-x64.msu, which is a Windows update. I’m trying to do a silent install, but it won’t install it. When I run the batch file (see below), it opens and closes immediately. The msu file is located in the same folder as the batch file.

@echo off
start /wait ".\Win7AndW2K8R2-KB3134760-x64.msu" /quiet /norestart

Thanks,

Tony

even if it does not belong here …
try this

@echo off
start /wait %~dp0Win7AndW2K8R2-KB3134760-x64.msu /quiet /norestart

Have a nice day

Doing the same thing, opening and closing, does that mean it’s working?

didn’t pay attantion in the first reply … sorry about that

@echo off
start /wait wusa.exe %~dp0Win7AndW2K8R2-KB3134760-x64.msu /quiet /norestart

now it should actually

Do keep in mind that we try to stay focused on PowerShell Q&A here ;).

Thank you,

I think it’s working now, I’m testing it on a computer now.

I appreciate it.

Sorry Don, and thanks Olaf, it’s working