programmercarlito has asked for the wisdom of the Perl Monks concerning the following question:
Like where do I put this in the main code or in this file.
HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main “Start Page”=”http://www.howtogeek.com/”
I want to change the default homepage on the web browser internally. Like if the user wanted to get into the browsers settings he/she would see that its changed.use Win32::TieRegistry 0.20 ( UseOptionName=>UseOptionValue[,...] ); $Registry->SomeMethodCall(arg1,...); $subKey= $Registry->{"Key\\SubKey\\"}; $valueData= $Registry->{"Key\\SubKey\\\\ValueName"}; $Registry->{"Key\\SubKey\\"}= { "NewSubKey" => {...} }; $Registry->{"Key\\SubKey\\\\ValueName"}= "NewValueData"; $Registry->{"\\ValueName"}= [ pack("fmt",$data), REG_DATATYPE ];
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Win32: TieRegistry
by soonix (Chancellor) on May 08, 2015 at 10:00 UTC | |
|
Re: Win32: TieRegistry to change the default homepage on the web browser internally HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main
by Anonymous Monk on May 08, 2015 at 06:33 UTC |