Hi,


> With Win32::Process::Create...(and CREATE_NEW_CONSOLE flag)
>
> this works => u:\\mydir\\test.exe
> but this does not => \\\\myserver\\mydir\test.exe
>

Best to add error catching code to the 'Win32::Process::Create'
call. Something like :

or die ErrorReport();

where sub ErrorReport is defined like:

sub ErrorReport{
print Win32::FormatMessage( Win32::GetLastError() );
}

That will show you whether you have supplied an unrecognised server name
('The network name cannot be found.'), or whether you have specified an
incorrect path ('The network path was not found.'), or whether there is some
other problem.

> Is UNC not supported with Win32::Process::Create?
>

I believe it is supported.

Hope this helps.

Cheers,
Rob

_______________________________________________
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
http://listserv.ActiveState.com/mailman/listinfo/perl-win32-users

Reply via email to