EduPython is a turnkey and portable distribution for programming with your students in a Python 3 environment. This article will serve as an informative guide and give you a clear understanding of how to perform a silent installation of EduPython from the command line using the EXE installer.
How to Install EduPython Silently
EduPython 3.0 Silent Install (EXE)
- Navigate to: http://download.tuxfamily.org/edupython/Setup_EP30.exe
- Download the Setup_EP30.exe to a folder created at (C:\Downloads)
- Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
- Navigate to the C:\Downloads folder
- Enter the following command: Setup_EP30.exe /VERYSILENT /NORESTART
- Press Enter
After a few minutes you should see the EduPython Desktop Shortcut appear. You will also find entries in the Start Menu, Installation Directory, and Programs and Features in the Control Panel.
Software Title: | EduPython 3.0 |
Vendor: | V. MAILLE |
Version: | 3.0 |
Architecture: | x86_x64 |
Installer Type: | EXE |
Silent Install Switch: |
|
Silent Uninstall Switch: | "C:\EduPython\unins000.exe" /VERYSILENT /NORESTART |
Download Link: | http://download.tuxfamily.org/edupython/Setup_EP30.exe |
PowerShell Script: | https://silentinstallhq.com/edupython-install-and-uninstall-powershell/ |
Detection Script: | https://silentinstallhq.com/create-a-custom-detection-script-for-edupython-powershell/ |
EduPython 2.7 Silent Install (EXE)
- Navigate to: http://download.tuxfamily.org/edupython/Setup_EP27.exe
- Download the Setup_EP27.exe to a folder created at (C:\Downloads)
- Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
- Navigate to the C:\Downloads folder
- Enter the following command: Setup_EP27.exe /VERYSILENT /NORESTART
- Press Enter
After a few minutes you should see the EduPython Desktop Shortcut appear. You will also find entries in the Start Menu, Installation Directory, and Programs and Features in the Control Panel.
Software Title: | EduPython 2.7 |
Vendor: | V. MAILLE |
Version: | 2.7 |
Architecture: | x86_x64 |
Installer Type: | EXE |
Silent Install Switch: |
|
Silent Uninstall Switch: | "C:\EduPython\unins000.exe" /VERYSILENT /NORESTART |
Download Link: | http://download.tuxfamily.org/edupython/Setup_EP27.exe |
PowerShell Script: | https://silentinstallhq.com/edupython-install-and-uninstall-powershell/ |
Detection Script: | https://silentinstallhq.com/create-a-custom-detection-script-for-edupython-powershell/ |
EduPython 2.6 Silent Install (EXE)
- Navigate to: http://download.tuxfamily.org/edupython/Setup_EP26.exe
- Download the Setup_EP26.exe to a folder created at (C:\Downloads)
- Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
- Navigate to the C:\Downloads folder
- Enter the following command: Setup_EP26.exe /VERYSILENT /NORESTART
- Press Enter
After a few minutes you should see the EduPython Desktop Shortcut appear. You will also find entries in the Start Menu, Installation Directory, and Programs and Features in the Control Panel.
Software Title: | EduPython 2.6 |
Vendor: | V. MAILLE |
Version: | 2.6 |
Architecture: | x86_x64 |
Installer Type: | EXE |
Silent Install Switch: |
|
Silent Uninstall Switch: | "C:\EduPython\unins000.exe" /VERYSILENT /NORESTART |
Download Link: | http://download.tuxfamily.org/edupython/Setup_EP26.exe |
PowerShell Script: | https://silentinstallhq.com/edupython-install-and-uninstall-powershell/ |
Detection Script: | https://silentinstallhq.com/create-a-custom-detection-script-for-edupython-powershell/ |
The information above provides a quick overview of the software title, vendor, silent install, and silent uninstall switches. The download links provided take you directly to the vendors website. Continue reading if you are interested in additional details and configurations.
Additional Configurations
Create an EduPython Installation Log File
The EduPython installer offers the option to generate a log file during installation to assist with troubleshooting should any problems arise. You can use the following commands to create a verbose log file with details about the installation.
Setup_EPxx.exe /VERYSILENT /NORESTART /LOG="%WINDIR%\Temp\EduPython-Install.log" |
Exclude the EduPython Desktop Shortcut During Install
The EduPython installer creates a desktop shortcut by default. If you don’t want the desktop shortcut, then you can run the following command line switch to exclude it.
Setup_EPxx.exe /VERYSILENT /NORESTART /MERGETASKS=!desktopicon |
How to Uninstall EduPython Silently
Check out the following posts for a scripted solution:
- Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
- Enter the following command:
EduPython Silent Uninstall (EXE)
"C:\EduPython\unins000.exe" /VERYSILENT /NORESTART |
Always make sure to test everything in a development environment prior to implementing anything into production. The information in this article is provided “As Is” without warranty of any kind.