it is possible to extract the content of the MSI package using this command mkdir C:\temp\msicontent msiexec /a ‘PATHTO.msi’ /qb TARGETDIR=C:\temp\msicontent If you want to see the details of the MSI you can use the […]
Port redirect on Linux using UFW
To have a concrete example, let’s say you want to forward requests going to 80 to a server listening on port 8080. Note that you will need to make sure port 8080 is allowed, otherwise […]
Remote Task kill
How to kill process on remote computer? In Windows, we can kill processes running on a remote computer using the taskkill command. We can specify process id/image file name/user name to identify the processes that […]
PsShutdown
https://technet.microsoft.com/en-us/sysinternals/psshutdown.aspx Shutdown a server at a specific time psshutdown.exe \\SERVER -t 21:00 -r -e p:0:0 -u administrator it will then prompts for the password an reboot the server at 21:00