Fork me on GitHub
#clj-on-windows
<
2023-05-02
>
Ben Lieberman21:05:42

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

borkdude21:05:29

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

Ben Lieberman21:05:29

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