Access forbidden. An instance of PDFCreator is currently running

Hello!

I'm using PDFCreator via COM-connector.
The code is very simple:
PDFCreatorQueue= New COMObject("PDFCreator.JobQueue");
PDFCreatorQueue.Initialize();
PDFCreatorQueue.ReleaseCom();

and... I get error message:
(PDFCreator.ComImplementation): Access forbidden. An instance of PDFCreator is currently running.

I've tried to release com before Initialize:
PDFCreatorQueue= New COMObject("PDFCreator.JobQueue");
PDFCreatorQueue.ReleaseCom();
PDFCreatorQueue.Initialize();
PDFCreatorQueue.ReleaseCom();
but I got message:
(PDFCreator.ComImplementation): No COM Instance was found.

I've looked to task manager, there is not any process like PDFCreator.

What I'm doing wrong?
How can I kill instance which is not respond ?

1 Like

It happening to me as well!