Jump to content

Recommended Posts

Posted

Hi,

 

I was wondering if anyone has any good resources for learning scripting to deploy software on remote PCs?

 

I was sat in a classroom on Friday installing 8 bits of software on multiple laptops knowing there are better ways to do it, just not knowing where to start.

 

I would either want to do it by having the script read a file with computer names, or probably more simply, creating a script I can run on each computer to install the software.

 

I am also unsure of how I get around install prompts.

 

So if anyone knows of any good material I can read through to learn this sort of stuff?

 

Thanks

Posted
In which case you have most of the tools you need for a large number of titles (those that have an MSI) can be done thourgh Groupl Policy Application Deployment, those that dont have an MSI can genearlyl be scripted and then done as a startup script, use the search option on the forum, theres 1000's of threads about this. Also have a google about it.
Posted
Unfortunately I don't have permissions to change group policy. Work like that is carried out by another team within my council. I'd be looking for a way to create a script that points to software on the server for that particular school and have it install from there. Thanks for the suggestion though, James. :)
Posted
I use PDQ Deploy. It works in such a way that you don't need to write scripts. They have a library of packages (if paid for). So far I have deployed well..... Nothing really but it looks good. I think it has a AD function so you could link it up. I don't have a domain so I can't see what it's like.
Posted
I have also used and can recommend PDQ Deploy. Check out some of the video "how to" items on their site. The company is Admin Arsenal and the price and service are excellent. They do an educational discount too, although geared around the USA system. Proof of non-profit status should be sufficient.
Posted

you cound make a batch file like this:

IF Exist "C:\Program Files (x86)\Folder" goto END

"\\Server\application\setup" /s

Echo %ComputerName% %Date% %Time% >> "\\Server\application\installed.txt"

:END

 

this will check if a folder exists in program files and if it doesn't it will install the program silently and write to a text file the computer name date and time.

  • Thanks 1

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...