<?xml version="1.0" encoding="windows-1252"?>
<node id="1018685" title="Re^3: WMI query with Threads" created="2013-02-14 00:17:49" updated="2013-02-14 00:17:49">
<type id="11">
note</type>
<author id="171588">
BrowserUk</author>
<data>
<field name="doctext">
&lt;blockquote&gt;&lt;i&gt;i am sorry if i am wrong about crash. the reason, i said perl crashed was because i got a message window&lt;/i&gt;&lt;/blockquote&gt;

&lt;p&gt;That is kind of important information to have omitted from your post.


&lt;p&gt;The good news is that I have reproduced your problem and have a solution for you. 

&lt;p&gt;The culprit is [mod://Win32::OLE]. Even this simple threaded code that [use]s that module in the main thread, fails in exactly the same when when you try to join a thread. Even if that thread makes no use of the module:&lt;code&gt;
#! perl -slw
use strict;
use threads;
use Win32::OLE qw[ in with ];

my $thread = async {
    sleep 3;
};

$thread-&gt;join;
&lt;/code&gt;

&lt;p&gt;However, if you [require] [mod://Win32::OLE] in the thread(s) where you want to use it, it works fine:&lt;code&gt;
#! perl -slw
use strict;
use threads;
#use Win32::OLE qw[ in with ];

my $thread = async {
    require Win32::OLE; Win32::OLE-&gt;import( qw[ in with ] );
    sleep 3;
};

$thread-&gt;join;
&lt;/code&gt;

&lt;p&gt;So the solution to your immediate problem is to comment out the [use] [mod://Win32::OLE] line at the top of your program and replace it with the [require] and import as shown above in the top of your thread subroutine.

&lt;p&gt;Try that and see how you get on.

&lt;div class="pmsig"&gt;&lt;div class="pmsig-171588"&gt;
&lt;hr /&gt;
&lt;font size=1 &gt;
&lt;div&gt;With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'&lt;/div&gt;
&lt;div&gt;Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.&lt;/div&gt;
&lt;div&gt;"Science is about questioning the status quo. Questioning authority". &lt;/div&gt;
&lt;div&gt;In the absence of evidence, opinion is indistinguishable from prejudice.
&lt;/div&gt;
&lt;/font&gt;

&lt;/div&gt;&lt;/div&gt;</field>
<field name="root_node">
1018589</field>
<field name="parent_node">
1018662</field>
</data>
</node>
