Scomer90 Posted August 30, 2017 Posted August 30, 2017 We are trying to update to the latest version of Python but as it has not included an msi to enable us to deploy through SCCM it has been rather troublesome to find a working solution. Has anyone had anyone who is using it had any success? Thanks in advanced
apprenticearb Posted October 24, 2017 Posted October 24, 2017 You can deploy .exe in SCCM. I have created a .vbs script that works for us. You can deploy it via GPO startup script. Set objFSO = CreateObject("Scripting.FileSystemObject")If objFSO.FileExists("C:\Program Files (x86)\Python36-32\python.exe") Then Wscript.QuitElseSet WshShell = WScript.CreateObject("WScript.Shell")Dim exeName Dim statusCodeexeName = "Path for .exe /quiet InstallAllUsers=1"statusCode = WshShell.Run (exeName, 1, true)End If
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now