http://qs321.pair.com?node_id=11137432


in reply to Re^2: Bareword issue with Perl 5.34
in thread Bareword issue with Perl 5.34

I think you want

use if $^O eq 'MSWin32', 'Win32::OLE', 'CP' => 'CP_UTF8';

That is still the "old" way of using Win32::OLE. The new way would be something like:

use if $^O eq 'MSWin32', 'Win32::OLE'; if( $^O eq 'MSWin32' ) { Win32::OLE->Options( CP => 'CP_UTF8' ); # or maybe # Win32::OLE->Options( CP => Win32::OLE::CP_UTF8 ); }