Multiple installations Scripting

Installing and updating software on computers can be a tedious task. Especially if you have to reinstall Windows frequently on one or more machines. In this article, we will look at how you can automate the process of installing multiple applications using Multiple installations Scripting: PowerShell, Winget, Patch files, Chocolatey and so on. In addition,… Continue reading Multiple installations Scripting

How to deploy Python via GPO (Group Policy Object)

Installing Python via GPO and unattend mode is sometimes difficult. In this article, we will describe its process in detail. Silent install Python If you are using SCCM, Intune, or other software deployment tools that support the .exe format, or if you want to install silently through the console, then use the silent installation parameters… Continue reading How to deploy Python via GPO (Group Policy Object)

Parameters for Silent/Automated Python Installation

quiet Ensures a silent installation of Python /log “%WINDIR%\Temp\Python39-Install.log” Create an Installation Log File The Python 3.9 installer offers the option to generate a log file during installation to assist with troubleshooting should any problems arise. You can use the following command to create a verbose log file with details about the installation. TargetDir=”C:\Python39″ Change… Continue reading Parameters for Silent/Automated Python Installation

PowerShell to exe/msi Converter free

The tool for convert ps1 to exe & msiRun PowerShell scripts without changing execution policy settings security.Convert PowerShell scripts to exe or msi files and share them with your employees. Run scripts from an exe/msi file with a double click. Download PowerShell to exe/msi Build through arguments:/ps1 “C:\ps1.ps1” :path to ps file/path “C:\ps1.exe” :exe file… Continue reading PowerShell to exe/msi Converter free

How to uninstall software by Group Policy (GPO)

There are several ways to uninstall applications via GPO:1. standard gpo tools are limited to msi and what is already installed via gpo2. PowerShell. The tool is quite complex and time consuming.3. exe installer that starts the removal process, wrapped in an msi package.In this article, we will talk about the 3rd method. Quick video… Continue reading How to uninstall software by Group Policy (GPO)

How to install fonts to gpo using Silent Install Builder

It often happens that, along with all office programs, the system administrator needs to install specific configurations on several computers. One such configuration is installing fonts on Windows. Usually installing fonts via gpo using PowerShell is not convenient and complicated.It’s easy to imagine how long it will take to install the fonts in this way.… Continue reading How to install fonts to gpo using Silent Install Builder

How to create a fully silent package via Silent Install Builder

This example shows how to create a fully silent package via Silent Install Builder. Press the Create New Package button. Choose the option Silent installation from existing file(s): Select the desired installation file from your computer: After uploading the file, Silent Install Builder will automatically detect command line parameters for silent installation. If the program… Continue reading How to create a fully silent package via Silent Install Builder