今日もどこかで・・・

windowsサーバ設定や、クラインと展開などの覚書き

internetExplorerのフルスクリーン起動

2010-12-06 11:23:56 | windows7
InternetExplorerのウィンドウサイズは以下のレジストリに記述されています。
"HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main
のWindow_Placementです。でここにBinary値を書き込めばいいのですが・・・
フルスクリーン起動したい場合は、使用しているモニターサイズによって値が
変わります。

例)2c0000000200000003000000ffffffffffffffffffffffffffffffffe8000000e90000000804000040030000
↑むろんサイズによって変わるので注意

InternetExplorer の検索プロバイダー

2010-12-06 11:16:07 | windows7
internetExplorerの検索プロバイダー窓の一覧をカスタマイズするには
http://support.microsoft.com/kb/918238/
↑で一意なGUIDとありますが、PCによってレジストリ内に表示されるGUIDが
異なることがありました。そこでGUIDに文字列をしようしてみたら意外と動いて
しまいました。
Defaultプロファイルを作成する段階でわかっていれば設定してから、プロファイル
作成を行ったのですが・・・・
後から気づいたのでデフォルトのNTUSER.DATを編集することにしました。
んで大変なのでbatで実行することにしました。
こんなかんじです。
reg load HKLM\TEMP C:\Users\Default\NTUSER.DAT
reg add "HKLM\TEMP\Software\Microsoft\Internet Explorer\SearchScopes" /v DefaultScope /t REG_SZ /d Google /f
reg add "HKLM\TEMP\Software\Microsoft\Internet Explorer\SearchScopes" /v Version /t REG_DWORD /d 2 /f
reg add "HKLM\TEMP\Software\Microsoft\Internet Explorer\SearchScopes\Google" /v DisplayName /t REG_SZ /d Google /f
reg add "HKLM\TEMP\Software\Microsoft\Internet Explorer\SearchScopes\Google" /v URL /t REG_SZ /d "http://www.google.co.jp/search?hl=ja&q={searchTerms}&lr=lang_ja" /f
reg add "HKLM\TEMP\Software\Microsoft\Internet Explorer\SearchScopes\Google" /v FaviconURL /t REG_SZ /d "http://www.google.com/favicon.ico" /f
reg add "HKLM\TEMP\Software\Microsoft\Internet Explorer\SearchScopes\Google" /v FaviconPath /t REG_SZ /d "http://www.google.com/favicon.ico" /f
reg add "HKLM\TEMP\Software\Microsoft\Internet Explorer\SearchScopes\Google" /v SuggestionsURL_JSON /t REG_SZ /d "http://suggestqueries.google.com/complete/search?output=firefox&client=IE8&hl={Language}&qu={searchTerms}" /f
reg add "HKLM\TEMP\Software\Microsoft\Internet Explorer\SearchScopes\Google" /v OSDFileURL /t REG_SZ /d "http://www.ieaddons.com/jp/DownloadHandler.ashx?ResourceId=10012" /f

reg add "HKLM\TEMP\Software\Microsoft\Internet Explorer\SearchScopes\yahoo" /v DisplayName /t REG_SZ /d Yahoo /f
reg add "HKLM\TEMP\Software\Microsoft\Internet Explorer\SearchScopes\yahoo" /v URL /t REG_SZ /d "http://search.yahoo.co.jp/search?b=1&n=10&ei=UTF-8&fr=ie8sc&p={searchTerms}" /f
reg add "HKLM\TEMP\Software\Microsoft\Internet Explorer\SearchScopes\yahoo" /v FaviconURL /t REG_SZ /d "http://search.yahoo.co.jp/favicon.ico" /f
reg add "HKLM\TEMP\Software\Microsoft\Internet Explorer\SearchScopes\yahoo" /v FaviconPath /t REG_SZ /d "http://search.yahoo.co.jp/favicon.ico" /f
reg add "HKLM\TEMP\Software\Microsoft\Internet Explorer\SearchScopes\yahoo" /v SuggestionsURL_JSON /t REG_SZ /d "http://search.yahooapis.jp/AssistSearchService/V2/webassistSearch?output=iejson&p={searchTerms}&appid=oQsoxcyxg66enp0TYoirkKoryq6rF8bK76mW0KYxZ0v0WPLtn.Lix6wy8F_LwGWHUII-" /f
reg add "HKLM\TEMP\Software\Microsoft\Internet Explorer\SearchScopes\yahoo" /v OSDFileURL /t REG_SZ /d "http://www.ieaddons.com/jp/DownloadHandler.ashx?ResourceId=2538" /f
reg unload HKLM\TEMP