Tag: cmd
windows terminal server | remote desktop session to different collection members without getting load balanced
Build a batch file like direct_access_tsmember01.cmd: start “” mstsc /admin /v:tsmember01 /w:2200 /h:1100
windows | run program in cmd und close terminal window
start “” myprog.exe
DOCKER| ENTRYPOINT vs. CMD
O.K…. Lets start. ;) Variables passed as arguments to the container using -e will be part of containers environment. ENTRYPOINT script will be executed using this environment. Any CMD will be passed as an argument to the running ENTRYPOINT script. If there is no ENTRYPOINT defined, CMD will be executed instead. In other words: ENTRYPOINT […]