in reply to Re^2: how to install win32::GuidGen on windows 64 bit OS
in thread how to install win32::GuidGen on windows 64 bit OS

Win32::GuidGen() does not require Win32-API (I'm very certain, as I actually wrote it myself). It is a function in the Win32 module and included in core Perl. Please try it:
perl -MWin32 -le "print Win32::GuidGen()"

If it doesn't work, what does happen?

Replies are listed 'Best First'.
Re^4: how to install win32::GuidGen on windows 64 bit OS
by Anonymous Monk on May 24, 2011 at 19:18 UTC
    Something has changed recently. I used to use "ppm" to install Win32::Guidgen and then call Win32::Guidgen::Create(). That don't work no mo. However, it seems that now you don't need to do that. You can just call Win32::GuidGen() as described by it's author above, and that works just dandy.