Install remote Windows KB

 @Echo off
IF EXIST "%PROGRAMFILES%" (
  cd /
  cd temp
  wusa.exe windows6.1-kb4474419-v3-x64.msu /quiet /norestart
  exit
 
) ELSE (
  cd /
  cd temp
  wusa.exe windows6.1-kb4474419-v3-x86.msu /quiet /norestart
  exit
)
exit

How to list open ports and application using them in Windows

  netstat -abn or netstat -a -n -p tcp -o

Mais vistos