[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

ruby win32-process

Ze Maria

11/22/2007 3:17:00 PM

Hi guys,
I've being using win32-utils package, more specifically win32-process.
I've used it windows XP but now I've some servers running Windows Server
2008, and when I execute the
require 'win32/process'

I get the following error message:

irb(main):031:0> require 'win32/process'
RuntimeError: GetProcAddress: SetConsoleCommandHistoryMode or
SetConsoleCommandH
istoryModeA

from
c:/ruby/lib/ruby/gems/1.8/gems/windows-pr-0.6.2/lib/windows/console
rb:76:in `initialize'
from
c:/ruby/lib/ruby/gems/1.8/gems/windows-pr-0.6.2/lib/windows/console
rb:76:in `new'
from
c:/ruby/lib/ruby/gems/1.8/gems/windows-pr-0.6.2/lib/windows/console
rb:76
from
c:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `ge
m_original_require'
from
c:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `re
quire'
from
c:/ruby/lib/ruby/gems/1.8/gems/win32-process-0.5.0-mswin32/lib/win3
2/process.rb:6
from
c:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `ge
m_original_require'
from
c:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `re
quire'
from (irb):31


Tks in advance
Jose
--
Posted via http://www.ruby-....

4 Answers

Daniel Berger

11/22/2007 3:31:00 PM

0

Ze Maria wrote:
> Hi guys,
> I've being using win32-utils package, more specifically win32-process.
> I've used it windows XP but now I've some servers running Windows Server
> 2008, and when I execute the
> require 'win32/process'
>
> I get the following error message:
>
> irb(main):031:0> require 'win32/process'
> RuntimeError: GetProcAddress: SetConsoleCommandHistoryMode or
> SetConsoleCommandH
> istoryModeA
>
> from
> c:/ruby/lib/ruby/gems/1.8/gems/windows-pr-0.6.2/lib/windows/console
> .rb:76:in `initialize'

<snip>

You'll want to upgrade your windows-pr library. :)

Regards,

Dan

Ze Maria

11/22/2007 3:44:00 PM

0

Daniel Berger wrote:
> Ze Maria wrote:
>> SetConsoleCommandH
>> istoryModeA
>>
>> from
>> c:/ruby/lib/ruby/gems/1.8/gems/windows-pr-0.6.2/lib/windows/console
>> .rb:76:in `initialize'
>
> <snip>
>
> You'll want to upgrade your windows-pr library. :)
>
> Regards,
>
> Dan

But how ?
I already have the latest version for windows , wi32-process 0.6.2
--
Posted via http://www.ruby-....

Daniel Berger

11/22/2007 3:55:00 PM

0

Ze Maria wrote:
> Daniel Berger wrote:
>> Ze Maria wrote:
>>> SetConsoleCommandH
>>> istoryModeA
>>>
>>> from
>>> c:/ruby/lib/ruby/gems/1.8/gems/windows-pr-0.6.2/lib/windows/console
>>> .rb:76:in `initialize'
>> <snip>
>>
>> You'll want to upgrade your windows-pr library. :)
>>
>> Regards,
>>
>> Dan
>
> But how ?
> I already have the latest version for windows , wi32-process 0.6.2

windows-pr and win32-process are two separate libraries.

gem install windows-pr

windows-pr is currently at release 0.7.2

Regards,

Dan

Ze Maria

11/22/2007 4:03:00 PM

0

Daniel Berger wrote:
> Ze Maria wrote:
>>> You'll want to upgrade your windows-pr library. :)
>>>
>>> Regards,
>>>
>>> Dan
>>
>> But how ?
>> I already have the latest version for windows , wi32-process 0.6.2
>
> windows-pr and win32-process are two separate libraries.
>
> gem install windows-pr
>
> windows-pr is currently at release 0.7.2
>
> Regards,
>
> Dan

Hello Dan,
Thanks it worked fine.
Best Regards,
José
--
Posted via http://www.ruby-....