Word print does not land in queue

Hi guys,

So i am having some trouble, getting offices files to land in the queue.

I am using a powershell script to print every file in a folder, this works. I can see all the files be printed and go the printer Queue.
Powershell code for printing: Start-Process -FilePath "$($location)$($file)" –Verb Print -PassThru | %{sleep 10;$_} | kill

I have a program running in the background that uses the code if(!jobQueue.WaitForJobs(count, timer)) to check for if all the jobs are found, within the given time limit.(time limit is not the problem i checked that)
This shows me that if i print a word document, it does not show up in the queue.
PDF works fine.

Thank you for your help