Reputation: 4609
I am using Windows 7 and Windows 2008 Server. I used the Ruby and Ruby on Rails one-click installer. What registry keys does the installer modify and create? Thanks!
Upvotes: 1
Views: 169
Reputation: 72524
If looking at the source is not enough (see Lous Lavenas answer) then you might take a look at Process Monitor. It allows you to monitor all registry related activites of a process.
Just start Process Monitor, add a filter for the installer, so you don't get spammed with registry actions from other processes, and run the installer.
Upvotes: 0
Reputation: 10378
It depends on the checkboxes you have selected.
Everything is in the source of the installer itself.
SYSTEM\CurrentControlSet\Control\Session Manager\Environment
(Admin) or Environment
(normal user), inside that PATH
and PATHEXT
. SourceSoftware\Classes
for .rb
, .rbw
and both RubyFile
and RubyFileW
either HKLM or HKCU. SourceSoftware
to identify the installer version, patchlevel and other information. Either HKLM (Admin) or HKCU (normal user). SourceHope that helps.
Upvotes: 3