how to automate process of installing third party software on windows?
Post number #930794, ID: ba11ec
|
i have bunch of computers to configure and i have my set of installers for each version of windows (xp, 7, 10) the problem is that i HATE clicking through shit ninite is out of the question as it lacks pirated software that i love to use :3 i'll be fine with at least some automation for 7, xp is the less priority for me i know about integrating .exes into windows installer but i'd prefer some post install solution instead maybe a batch file?
Post number #930838, ID: 1fa57a
|
Yeah i guess making a .bat can solve this problem. Iirc something goes like start /wait (installer file) /s Different installer packages may have different parameters to get the job done, so I guess you need to do some research?
Post number #930839, ID: 1fa57a
|
For example, for softwares that use installershield, the parameter for silent installation is -s. For softwares that use nullsoftZ's package it's /s I haven't done much batch scripting for a long time so this may not be correct.
Post number #930877, ID: 66812d
|
How to make a batch script that opens up every .exe in a folder?
Post number #930885, ID: 6a87ed
|
>>930877 FOR /F %%A in ('dir /B %1%\*.exe') do %1%\%%A Call as wom.bat full-path-to-directory
Post number #930886, ID: 6a87ed
|
Here's some docs for you to peruse if you have problems https://en.wikibooks.org/wiki/Windows_Batch_Scripting
Post number #930896, ID: f0ac65
|
>>930885>>930886 thank you~!
Post number #930897, ID: b6a679
|
what about winget
Post number #930900, ID: e11977
|
>>930897 10 only
Post number #931014, ID: 1a011f
|
Scoop or chocolaty might be up your alley
Post number #931169, ID: 769b16
|
>>057b95 why not
Post number #931233, ID: 52b08e
|
Why not replace this outdated MS-DOS stuff with a modern, proper unixoid distribution that comes with a package manager and packagaging policy that fits your needs best? The earlier you get rid of MS-DOS, the less you will regret to ever have laid your hands on this misconcepted software.
Post number #931246, ID: 229f68
|
>>931233 *batchfucks your mouth*
Post number #931271, ID: 5a3dd5
|
>>931233 once you try free dos as your daily driver os you'll never go back trust
Post number #931294, ID: 336b55
|
>>931233 becuse I don't want to download the newest version of software. I want to have a choice in version I choose. I don't want to fuck around with dependencies missing I don't want to redownload everything every single time.
Post number #931296, ID: ad6386
|
The funny tech tip man says you should use Smart Deploy.
Post number #931319, ID: f0a49b
|
>>931294 >becuse I don't want to download the newest version of software. Then don't use a distro with a bleeding edge but a more conservative update policy. >I don't want to fuck around with dependencies missing Then don't use bad maintained repositories and/or use container systems. >I don't want to redownload everything every single time. Then use techniques like a package cache or a puppet/template system. I do this even only with my four devices at home (bad internet).
Post number #931322, ID: f0a49b
|
>>931294 >becuse I don't want to download the newest version of software. Partially you already have this with MS-DOS, and things will get worse. Staying with monopoly OS will lead you straight into a subscription system sooner or later. >I don't want to fuck around with dependencies missing So you prefer being dependent on an OS that gets bloated with thousand versions of the same libs because it never heard about shared libs?
Post number #931323, ID: f0a49b
|
>>931294 >I don't want to redownload everything every single time. And why do you think an OS for which only buggy and proprietary 3rd party package managers exist is able to avoid this issue? An OS that still often can only be fixed through reinstallation once it's broken, because of its cryptic error messages and non-standardized, proprietary components and structures...
| i have bunch of computers to configure and i have my set of installers for each version of windows (xp, 7, 10)
the problem is that i HATE clicking through shit
ninite is out of the question as it lacks pirated software that i love to use :3
i'll be fine with at least some automation for 7, xp is the less priority for me
i know about integrating .exes into windows installer but i'd prefer some post install solution instead
maybe a batch file?