<div dir="ltr">Hi,<div><br></div><div>I'm new to pythoncom and I'm just trying to create a basic COM server in Python3 that I can ping from a client. I've been able to create a COM server successfully using the info at <a href="http://timgolden.me.uk/pywin32-docs/html/com/win32com/HTML/QuickStartServerCom.html#Registering" target="_blank">http://timgolden.me.uk/pywin32-docs/html/com/win32com/HTML/QuickStartServerCom.html#Registering</a>, but this requires Admin permissions which I don't have access to on my work computer. </div><div><br></div><div>I was hoping someone could clarify what I need to modify so that I can register the server without raising admin permissions? (I'm aware that it is possible to write to the HKCU registry without admin permissions, though I'm not sure how that would fit in with the basic server code.)</div><div><br></div><div>Here's my basic server:</div><div><br></div><div>    import pythoncom<br>    import win32com<br>    from win32com.server.util import wrap<br><br>    _reg_clsid_ = "{6B39CAA1-A320-4CB0-8DB4-352AA81E460E}"<br><br>    class ActiveObject:<br>        _public_methods_ = ["ping"]<br><br>        def ping(self):<br>            return "1"<br><br>    if __name__ == "__main__":<br>        ob = win32com.server.util.wrap(ActiveObject)<br>        handle = pythoncom.RegisterActiveObject(ob, _reg_clsid_, 0)<br>        print(handle)<br></div><div><br></div><div>And here's the client:</div><div><br></div><div>    import win32com.client<br>    server = win32com.client.Dispatch("{6B39CAA1-A320-4CB0-8DB4-352AA81E460E}")<br>    print(server.ping())<br></div><div><br></div><div>Let me know if you need any additional information. (As an aside, I'm also fine with using AutoHotkey to help register the server in the registry if that's needed.)</div><div><br></div><div>I've posted a question on StackOverflow if it helps: <br><a href="https://stackoverflow.com/questions/61811297/how-to-create-a-python-com-server-without-admin-permissions" target="_blank">https://stackoverflow.com/questions/61811297/how-to-create-a-python-com-server-without-admin-permissions</a> </div><div><div><br></div>Thank you for any input</div></div>