in reply to Re: 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 work on 64-bit perl for windows. It requires(prerequisite) win32::api for the usage of win32::GuidGen. And i dont find any win32::api for 64 bit perl for windows.
  • Comment on Re^2: how to install win32::GuidGen on windows 64 bit OS

Replies are listed 'Best First'.
Re^3: how to install win32::GuidGen on windows 64 bit OS
by jand (Friar) on Mar 02, 2009 at 09:10 UTC
    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?

      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.