clj-on-windows

liebs 2023-05-02T21:03:42.927379Z

Anyone have experience installing Clojure on a remote Windows server using the powershell script? I'm remoted in to the box in question with psexec but the command to run the script hangs no matter what I try deep_thinking

borkdude 2023-05-02T21:08:29.222199Z

I'm not sure what the root cause of the problem is. In case you want to try an alternative:

C:\Temp> PowerShell -Command "irm " > install_clojure.ps1
C:\Temp> PowerShell -f install_clojure.ps1 --as-clj
or: https://github.com/casselc/clj-msi The clj-msi may one day be the official installer

liebs 2023-05-02T21:14:29.492339Z

I get the script to execute now but the only output I see is "Downloading Clojure tools" and then nothing unless I press Enter and I got Cannot convert value "Tls12" to type "System.Net.SecurityProtocolType" due to invalid enumeration values. I'll give your repo a try tho, thanks