Hi, I want to make a program to install a software package designed in Python, such as "Silent Install Builder", can you help me in the way it works, thank you
For further actions, you may consider blocking this person and/or reporting abuse
Hi, I want to make a program to install a software package designed in Python, such as "Silent Install Builder", can you help me in the way it works, thank you
For further actions, you may consider blocking this person and/or reporting abuse
Jay Saadana -
M Sea Bass -
Alex Merced -
CyprianTinasheAarons -
Top comments (4)
Without knowing why you are asking this, advice might be misplaced however:
setup.py
) to add the actions you need.Hope this helps..
I work in computer maintenance and I need a script that installs the basic programs in Windows in order to speed up my work and not repeat the process every time
Ah right - context! thanks π
I assume you're familiar with tools like Winget and Nanite (makeuseof.com/windows-10-11-batch-...), and that newer Windows platforms support provisioning packages (learn.microsoft.com/en-us/windows/...) where you can add additional software, however you wish to write your own solution...
I would only suggest looking at the source for something like Chocolatey (github.com/chocolatey/choco) to see just how ugly this problem is, before you try to re-invent the wheel! That said, a script that simply runs a collection of package installers (MSI files) with the silent mode switches can be a trivial as a few lines of
.cmd
file instructions.Good luck!
Since I am learning programming, I do not want to use the programs available in the market and try to make my own, Thanks βΊ