Windows COM in Julia

I want to use some Windows apps in Julia and this required installing Windows COM, which seems that it is not available in the standard Julia Package Registry. There was a suggestion to install PyCall in Julia and then use pywin32 library. How reliable is this solution? Any other suggestions?

This might be helpful: Accessing COM from Julia · GitHub

If you want to use something from Python, then consider newer and better PythonCall.jl.

There is that old outdated and not registered package that you might look into (not sure how to install it, even in older Julia):

$ julia +0.6

julia> Pkg.add("https://github.com/ihnorton/COMCall.jl")
INFO: Initializing package repository /home/pharaldsson/.julia/v0.6
INFO: Cloning METADATA from https://github.com/JuliaLang/METADATA.jl
ERROR: unknown package https://github.com/ihnorton/COMCall
...

julia> Pkg.add(PackageSpec(url="https://github.com/ihnorton/COMCall.jl"))
1 Like