Hello everybody,
today I want to share another piece of code, that proved to be helpful for me in creating docker containers.
Here it is:
Start-Process c:\sdksetup.exe -ArgumentList '/Quiet /NoRestart' -Wait; \
First time when I seen it I was sceptical. Why I should use Start-Process instead of j...