Jump to content

Recommended Posts

Posted

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 :)

  • 1 month later...
Posted

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...