InterviewSolution
Saved Bookmarks
| 1. |
Solve : Network Software Deployment? |
|
Answer» Can anyone recommend a network deployment system? IntroductionYes, that is old stuff, but maybe it is what you want to know. The concepts are still normal practices today. What sort of machines are you running? If they are all running Windows and are joined to a domain then you should be able to use group policy to install stuff. Alternatively, I've used Puppet for this sort of thing before to deploy software (and other configuration) to 20 laptops at a club I help organise. The machines dual boot with Windows and Ubuntu and we use Puppet to configure both. The only downside is that it's a bit fiddly to configure but once you get it up and running it's incredibly flexible.I have heard of people doing this with PowerShell for windows machines: http://poshcode.org/6298 From a security standpoint though I am not sure if having PowerShell ready on all systems to accept incoming remote connections is too dangerous to have on a corporate network though. Group Policy is probably the best method: https://support.microsoft.com/en-us/help/816102/how-to-use-group-policy-to-remotely-install-software-in-windows-server-2008-and-in-windows-server-2003 Yeah, the machines are connected to an network and they are windows which are joined to at domain. |
|