esprits top Esprit's Style

    -    エンジニアの足つぼ    -

WindowsXP レジストリカスタマイズ

※インターネットカフェや学校にあるようなどこにも触れないパソコンを設定します。
※以下、Admin制限が必要です。
※ConfTypeとは、GUIからの設定方法を示します。

〆 コントロールパネルへのアクセスを禁止する

KeyPathHKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer
KeyNameNoControlPanel
KeyTypeREG_DWORD
Data1
ConfTypeグループポリシエディタ gpedit.msc
コマンドラインで設定
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer"
     /v NoControlPanel /t REG_DWORD /d "1" /f

〆 コントロールパネルのある項目を隠す(ここでは音とマイクの設定)

KeyPathHKCU\Control Panel\don't load
KeyPathHKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Control Panel\don't load
KeyNamemmsys.cpl
KeyTypeREG_SZ
DataNo
ConfTypeGUIで設定不可?
コマンドラインで設定
reg add   "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\
     Control Panel\don't load" /v mmsys.cpl /t REG_SZ /d "No" /f

〆 WindowUpdateを禁止する

KeyPathHKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer
KeyNameNoWindowsUpdate
KeyTypeREG_DWORD
Data1
ConfTypeグループポリシエディタ gpedit.msc
コマンドラインで設定
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer"
     /v NoWindowsUpdate /t REG_DWORD /d "1" /f

〆 フォルダオプションを隠す

KeyPathHKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer
KeyNameNoFolderOptions
KeyTypeREG_DWORD
Data1
ConfTypeグループポリシエディタ gpedit.msc
コマンドラインで設定
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer"
     /v NoFolderOptions /t REG_DWORD /d "1" /f

〆 IEのインターネットオプションを隠す

KeyPathHKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer
KeyNameNoBrowserOptions
KeyTypeREG_DWORD
Data1
ConfTypeグループポリシエディタ gpedit.msc
コマンドラインで設定
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer"
     /v NoBrowserOptions /t REG_DWORD /d "1" /f

〆 ペイントからの壁紙の変更を禁止する。

KeyPathHKCU\Software\Microsoft\Windows\
CurrentVersion\Policies\ActiveDesktop
KeyNameNoChangingWallPaper
KeyTypeREG_DWORD
Data1
ConfTypeグループポリシエディタ gpedit.msc
コマンドラインで設定
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\
  ActiveDesktop" /v NoChangingWallPaper /t REG_DWORD /d "1" /f
※ただしエクスプローラより壁紙に設定したいファイルを選択した状態で、 左側のタスクバーや右クリックから壁紙の変更が可能です。
対処方法は、registry Editorより "HKEY_CURRENT_USER\Control Panel\Desktop"を選択し、編集⇒アクセス許可⇒禁止したいユーザの書き込み権限を禁止する。これでユーザの壁紙変更が不可になります。ただしKey名:ConvertedWallpaper Last WriteTimeも編集不能になるため、壁紙が設定できなくなります。つまり壁紙設定なし状態となります。

〆 スタートメニューの変更(右クリックおよびドラッグ)を禁止する

KeyPathHKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer
KeyNameNoChangeStartMenu
KeyTypeREG_DWORD
Data1
ConfTypeコントロールパネル→タスクバーとスタートメニュー→スタートメニュー→カスタマイズ→高度
コマンドラインで設定
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer"
  /v NoChangeStartMenu /t REG_DWORD /d "1" /f

〆 プリンタの新規追加を禁止する

KeyPathHKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer
KeyNameNoAddPrinter
KeyTypeREG_DWORD
Data1
ConfTypeグループポリシエディタ gpedit.msc
コマンドラインで設定
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer"
  /v NoAddPrinter /t REG_DWORD /d "1" /f

〆 スタートメニューの"プログラムのアクセスと規定値の設定"を無効にする

KeyPathHKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer
KeyNameNoSetFolders
KeyTypeREG_DWORD
Data1
ConfTypeグループポリシエディタ gpedit.msc
コマンドラインで設定
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer"
   /v NoSetFolders /t REG_DWORD /d "1" /f

〆 ネットワークプレイスのフォルダに最近使ったフォルダを表示しない

KeyPathHKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer
KeyNameNoRecentDocsNetHood
KeyTypeREG_DWORD
Data1
ConfTypeグループポリシエディタ gpedit.msc
コマンドラインで設定
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer"
   /v NoRecentDocsNetHood /t REG_DWORD /d "1" /f

〆 Windows終了時のウィンドウ状態を保存しない

KeyPathHKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer
KeyNameNoSaveSettings
KeyTypeREG_DWORD
Data1
ConfTypeグループポリシエディタ gpedit.msc
コマンドラインで設定
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer"
   /v NoSaveSettings /t REG_DWORD /d "1" /f

〆 Cドライブを隠す

KeyPathHKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer
KeyNameNoDrives
KeyTypeREG_DWORD
Data4
ConfTypeグループポリシエディタ gpedit.msc
コマンドラインで設定
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer"
   /v NoDrives /t REG_DWORD /d "4" /f

〆 スタートメニューに表示される最近使ったファイルの数を変更する

KeyPathHKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer
KeyNameMaxRecentDocs
KeyTypeREG_DWORD
Data3
ConfTypeタスクバーと[スタート]メニューのプロパティ→スタートメニュー→カスタマイズ
コマンドラインで設定
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer"
   /v MaxRecentDocs /t REG_DWORD /d "3" /f

〆 タスクバーとスタートメニューのプロパティを無効にする

KeyPathHKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer
KeyNameNoSetTaskbar
KeyTypeREG_DWORD
Data1
ConfTypeグループポリシエディタ gpedit.msc
コマンドラインで設定
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer"
   /v NoSetTaskbar /t REG_DWORD /d "1" /f

〆 タスクバー上での右クリックを無効にする

KeyPathHKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer
KeyNameNoTrayContextMenu
KeyTypeREG_DWORD
Data1
ConfTypeグループポリシエディタ gpedit.msc
コマンドラインで設定
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer"
   /v NoTrayContextMenu /t REG_DWORD /d "1" /f

〆 ネットワークドライブの接続・切断を無効にする

KeyPathHKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer
KeyNameNoNetConnectDisconnect
KeyTypeREG_DWORD
Data1
ConfTypeグループポリシエディタ gpedit.msc
コマンドラインで設定
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer"
   /v NoNetConnectDisconnect /t REG_DWORD /d "1" /f

〆 デスクトップのクリーンアップウィサードを無効にする

KeyPathHKCU\Software\Microsoft\Windows\CurrentVersion
\Explorer\Desktop\CleanupWiz
KeyNameNoRun
KeyTypeREG_DWORD
Data1
ConfTypeコントロールパネル→画面のプロパティ
コマンドラインで設定
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\
  Desktop\CleanupWiz" /v NoRun /t REG_DWORD /d "1" /f

〆 WindowsMessengerの自動起動を無効にする

KeyPathHKCU\Software\Microsoft\Windows\CurrentVersion\Run
KeyNameMSMSGS
KeyTypeREG_SZ
Data""
ConfTypeツール→オプション→パフォーマンス、or msconfig
コマンドラインで設定
reg delete   "HKCU\Software\Microsoft\Windows\
  CurrentVersion\Run" /v MSMSGS /f

〆 Windowsのエラー報告を無効にする

KeyPathHKLM\Software\Microsoft\PCHealth\ErrorReporting
KeyNameDoReport, ShowUI
KeyTypeREG_DWORD
Data0
ConfTypeコントロールパネル→システム→高度
コマンドラインで設定
reg add   "HKLM\Software\Microsoft\PCHealth\ErrorReporting" /v 
  DoReport /t REG_DWORD /d "0" /f
reg add   "HKLM\Software\Microsoft\PCHealth\ErrorReporting" /v 
  ShowUI /t REG_DWORD /d "0" /f

〆 スクリーンセーバーを無効にする

KeyPathHKCU\Control Panel\Desktop
KeyNameScreenSaveActive
KeyTypeREG_SZ
Data0
ConfTypeコントロールパネル→ディスクトップ
コマンドラインで設定
reg add   "HKCU\Control Panel\Desktop" /v ScreenSaveActive
   /t REG_SZ /d "0" /f
reg add   "HKCU\Control Panel\Desktop" /v ScreenSaveTimeOut
   /t REG_SZ /d "600" /f
reg add   "HKCU\Control Panel\Desktop" /v SCRNSAVE.EXE
   /t REG_SZ /d "0" /f

〆 検索時のアシスタント機能(ロッキーとか)を無効にする

KeyPathHKCU\Software\Microsoft\Search Assistant
KeyNameSocialUI
KeyTypeREG_DWORD
Data0
ConfType検索→パフォーマンスの変更
コマンドラインで設定
reg add   "HKCU\Software\Microsoft\Search Assistant"
   /v SocialUI /t REG_DWORD /d "0" /f

〆 フォルダオプションの"ネットワークのフォルダとプリンタを自動的に検索"を無効にする

KeyPathHKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced
KeyNameNoNetCrawling
KeyTypeREG_DWORD
Data0
ConfTypeフォルダオプション→表示
コマンドラインで設定
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
  /v NoNetCrawling /t REG_DWORD /d "1" /f

〆 フォルダオプションの"拡張子を隠す"を有効にする

KeyPathHKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced
KeyNameHideFileExt
KeyTypeREG_DWORD
Data1
ConfTypeフォルダオプション→表示
コマンドラインで設定
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
  /v HideFileExt /t REG_DWORD /d "1" /f

〆 フォルダオプションの"隠しファイル表示する"を無効にする

KeyPathHKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced
KeyNameHidden
KeyTypeREG_DWORD
Data2
ConfTypeフォルダオプション→表示
コマンドラインで設定
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
  /v Hidden /t REG_DWORD /d "2" /f

〆 IEインターネットオプションのスタートページを設定する

KeyPathHKCU\Software\Microsoft\Internet Explorer\Main
KeyNameStart Page
KeyTypeREG_SZ
Dataabout:blank
ConfTypeインターネットフォルダオプション→表示
コマンドラインで設定
reg add   "HKCU\Software\Microsoft\Internet Explorer\Main" /v "Start Page"
   /t REG_SZ /d "about:blank" /f

〆 IEインターネットオプションのページ保存先を設定する

KeyPathHKCU\Software\Microsoft\Internet Explorer\Main
KeyNameSave Directory
KeyTypeREG_SZ
Dataフォルダ名のフルパス
ConfTypeファイル→名前を付けて保存
KeyPathHKCU\Software\Microsoft\Internet Explorer\
KeyNameDownload Directory
KeyTypeREG_SZ
Dataフォルダ名のフルパス
ConfTypeファイル→名前を付けて保存
コマンドラインで設定
reg add   "HKCU\Software\Microsoft\Internet Explorer\Main" /v "Save Directory"
   /t REG_SZ /d "D:\IE Saved\" /f
reg add   "HKCU\Software\Microsoft\Internet Explorer" /v "Download Directory"
   /t REG_SZ /d "D:\IE Saved\" /f

〆 IEインターネットオプションの履歴期間を設定する

KeyPathHKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Url History
KeyNameDaysToKeep
KeyTypeREG_DWORD
Data1
ConfTypeインターネットフォルダオプション→表示
コマンドラインで設定
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings
  \Url History" /v "DaysToKeep" /t REG_DWORD /d "1" /f

〆 コントロールパネルをクラッシック表示に強制する。

KeyPathHKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer
KeyNameForceClassicControlPanel
KeyTypeREG_DWORD
Data1
ConfTypeグループポリシエディタ gpedit.msc
コマンドラインで設定
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer"
   /v ForceClassicControlPanel /t REG_DWORD /d "1" /f

〆 リモートディスクトップ接続を許可する。

KeyPathHKLM\SYSTEM\CurrentControlSet\Control\Terminal Server
KeyNamefDenyTSConnections
KeyTypeREG_DWORD
Data0
ConfTypeコントロールパネル → システム → リモート
コマンドラインで設定
reg add   "HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server"
   /v fDenyTSConnections /t REG_DWORD /d "1" /f

〆 WindowsのCD書き込み機能を無効にする。

KeyPathHKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer
KeyNameNoCDBurning
KeyTypeREG_DWORD
Data1
ConfTypeグループポリシエディタ gpedit.msc
コマンドラインで設定
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer"
   /v NoCDBurning /t REG_DWORD /d "1" /f

〆 WindowsのCD自動再生機能を無効にする。

KeyPathHKLM\SYSTEM\CurrentControlSet\Services\Cdrom
KeyNameAutoRun
KeyTypeREG_DWORD
Data0
ConfTypeグループポリシエディタ gpedit.msc
ユーザの構成-管理テンプレート-Windowsコンポーネント-エクスプローラ-CD焼付け機能
コマンドラインで設定
reg add   "HKLM\SYSTEM\CurrentControlSet\Services\Cdrom"
   /v AutoRun /t REG_DWORD /d "0" /f

〆 エクスプローラの縮小表示のキャッシュを無効にする。

KeyPathHKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer
KeyNameNoThumnailCache
KeyTypeREG_DWORD
Data1
ConfTypeグループポリシエディタ gpedit.msc
コマンドラインで設定
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer"
   /v NoThumnailCache /t REG_DWORD /d "1" /f

〆 タスクバー中のツールバーの変更を無効にする。
  タスクバー上での右クリック→ツールバーをグレイアウトする

KeyPathHKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer
KeyNameNoCloseDragDropBands
KeyTypeREG_DWORD
Data1
ConfTypeグループポリシエディタ gpedit.msc
コマンドラインで設定
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer"
   /v NoCloseDragDropBands /t REG_DWORD /d "1" /f

〆 「ようこそ」画面にAdministratorを表示させる。

KeyPathHKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList
KeyNameAdministrator
KeyTypeREG_DWORD
Data1
ConfTypeF8 -> SafeModeで起動?!
コマンドラインで設定
reg add   "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon
   \SpecialAccounts\UserList"  /v Administrator /t REG_DWORD /d "1" /f

〆 マスタブラウザにならないようにする。

KeyPathHKLM\SYSTEM\CurrentControlSet\Services\Browser\Parameters
KeyNameMaintainServerList
KeyTypeREG_SZ
DataNo
ConfType不明。
コマンドラインで設定
reg add   "HKLM\SYSTEM\CurrentControlSet\Services\Browser\Parameters"
    /v MaintainServerList /t REG_SZ /d "No" /f

〆 マスタブラウザになるようにする。

KeyPathHKLM\SYSTEM\CurrentControlSet\Services\Browser\Parameters
KeyNameIsDomainMaster
KeyTypeREG_SZ
DataTRUE
ConfType不明。
コマンドラインで設定
reg add   "HKLM\SYSTEM\CurrentControlSet\Services\Browser\Parameters"
    /v IsDomainMaster /t REG_SZ /d "TRUE" /f

〆 Regedit の最終アクセス位置をクリアする

KeyPathHKCU\Software\Microsoft\Windows\CurrentVersion\Applets\Regedit
KeyNameLastKey
KeyTypeREG_SZ
DataMy Conmupter
ConfTyperegedit.exe を閉じる
コマンドラインで設定
reg add   "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion
  \Applets\Regedit" /v "LastKey" /t REG_SZ /d "My Computer" /f

〆 Regedit のお気に入りを追加する

KeyPathHKCU\Software\Microsoft\Windows\CurrentVersion\Applets
\Regedit\Favorites
KeyNameお気に入りに登録する名前
KeyTypeREG_SZ
DataRegistoryのパス
ConfTyperegedit.exe →お気に入り→追加
コマンドラインで設定
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Applets\Regedit
  \Favorites" /v "HKCU_Run" /t REG_SZ /d "マイ コンピュータ\HKEY_CURRENT_USER
    \Software\Microsoft\Windows\CurrentVersion\Run" /f
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Applets\Regedit
  \Favorites" /v "HKLM_Run" /t REG_SZ /d "マイ コンピュータ
    \HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /f
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Applets\Regedit
  \Favorites" /v "HKLM_Winlogon" /t マイ コンピュータ\HKEY_LOCAL_MACHINE
    \SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /f

〆 Windows Media Player 再生中にスクリーンセイバーを起動させない

KeyPathHKCU\Software\Microsoft\MediaPlayer\Preferences
\Uninstall
KeyNameEnableScreensaver
KeyTypeREG_DWORD
Data0
ConfType不明。
コマンドラインで設定
reg add   "HKCU\Software\Microsoft\MediaPlayer\Preferences"
 /v "EnableScreensaver" /t REG_DWORD /d "0" /f

〆 Windowsへの自動をログオンの設定する

KeyPathHKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon
KeyNameAutoAdminLogon
KeyTypeREG_SZ
Data1
KeyNameDefaultDomainName
KeyTypeREG_SZ
Data?? domain_name
KeyNameDefaultUserName
KeyTypeREG_SZ
Data?? user_name
KeyNameDefaultPassword
KeyTypeREG_SZ
Data******
ConfTypeGUIより設定不可能?
コマンドラインで設定
reg add "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon"
     /v AutoAdminLogon    /t REG_SZ /d "1" /f
reg add "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon"
     /v DefaultDomainName /t REG_SZ /d "domain_name" /f
reg add "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon"
     /v DefaultUserName   /t REG_SZ /d "user_name" /f
reg add "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon"
     /v DefaultPassword   /t REG_SZ /d "passwd" /f

〆 タスクバーの設定をコマンドラインから行う

KeyPathHKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced
ConfTypeコントロールパネル→スタートメニューとタスクバー
コマンドラインで設定
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
   /v TaskbarAnimations /t REG_DWORD /d "0" /f
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
   /v TaskbarGlomming /t REG_DWORD /d "1" /f
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
   /v TaskbarSizeMove /t REG_DWORD /d "0" /f
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer"
   /v EnableAutoTray /t REG_DWORD /d "0" /f

〆 スタートメニューの全般設定をコマンドラインから行う

KeyPathHKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced
ConfTypeコントロールパネル→スタートメニューとタスクバー
コマンドラインで設定
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
   /v Start_LargeMFUIcons /t REG_DWORD /d "1" /f
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
   /v Start_MinMFU /t REG_DWORD /d "3" /f

〆 スタートメニューの高度な設定をコマンドラインから行う

KeyPathHKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced
ConfTypeコントロールパネル→スタートメニューとタスクバー
コマンドラインで設定
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
 /v Start_AutoCascade /t REG_DWORD /d "1" /f
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
 /v Start_NotifyNewApps /t REG_DWORD /d "0" /f
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
 /v Start_ShowRecentDocs /t REG_DWORD /d "1" /f
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
 /v Start_ShowControlPanel /t REG_DWORD /d "1" /f
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
 /v Start_EnableDragDrop /t REG_DWORD /d "0" /f
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
 /v Start_ShowHelp /t REG_DWORD /d "1" /f
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
 /v StartMenuFavorites /t REG_DWORD /d "0" /f
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
 /v Start_ShowMyComputer /t REG_DWORD /d "1" /f
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
 /v Start_ShowMyDocs /t REG_DWORD /d "1" /f
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
 /v Start_ShowMyMusic /t REG_DWORD /d "1" /f
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
 /v Start_ShowNetPlaces /t REG_DWORD /d "1" /f
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
 /v Start_ShowMyPics /t REG_DWORD /d "1" /f
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
 /v Start_ShowNetConn /t REG_DWORD /d "1" /f
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
 /v Start_ShowPrinters /t REG_DWORD /d "1" /f
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
 /v Start_ShowRun /t REG_DWORD /d "1" /f
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
 /v Start_ScrollPrograms /t REG_DWORD /d "0" /f
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
 /v Start_ShowSetProgramAccessAndDefaults /t REG_DWORD /d "0" /f
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
 /v StartMenuAdminTools /t REG_DWORD /d "0" /f

〆 WindowsXP SP2 セキュリティセンターの警告のみを無効にする

KeyPathHKLM\SOFTWARE\Microsoft\Security Center
KeyNameAntiVirusDisableNotify
KeyNameFirewallDisableNotify
KeyNameUpdatesDisableNotify
KeyTypeREG_DWORD
Data1
ConfTypeセキュリティセンター→警告の設定
コマンドラインで設定
reg add   "HKLM\SOFTWARE\Microsoft\Security Center"
   /v AntiVirusDisableNotify /t REG_DWORD /d "1" /f
reg add   "HKLM\SOFTWARE\Microsoft\Security Center"
   /v FirewallDisableNotify /t REG_DWORD /d "1" /f
reg add   "HKLM\SOFTWARE\Microsoft\Security Center"
   /v UpdatesDisableNotify /t REG_DWORD /d "1" /f

〆 WindowsXP SP2 自動更新機能を無効にする

KeyPathHKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate
KeyNameNoAutoUpdate
KeyTypeREG_DWORD
Data1
ConfType???
コマンドラインで設定
reg add   "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate"
   /v NoAutoUpdate /t REG_DWORD /d "1" /f

〆 エクスプローラ 上での右クリックからコマンドプロンプトを開けるようにする

※Vistaでは、レジストリを変更しなくても、Shift+右クリックで「コマンドウィンドをここで開く」からコマンドプロンプトを開くことができます
KeyPathHKCR\Directory\shell
KeyNameOpenNew
KeyTypeREG_SZ
DataCommand
KeyNameOpenNew\Command
KeyTypeREG_SZ
Datacmd.exe /k "cd %L"
ConfTypePowerToys
コマンドラインで設定
reg add   "HKCR\Directory\shell\OpenNew"
reg add   "HKCR\Directory\shell\OpenNew"
     /v "" /t REG_SZ /d "Command" /f
reg add   "HKCR\Directory\shell\OpenNew\Command"
reg add   "HKCR\Directory\shell\OpenNew\Command"
     /v "" /t REG_SZ /d "cmd.exe /k \"cd %L\"" /f

〆 簡易ファイル共有を無効に設定した場合に自動で設定されてしまう管理共有を無効に設定する

管理共有は、ドライブのプロパティで確認できる C$ などのこと(IPC$は管理共有ではない)。
KeyPathHKLM\SYSTEM\CurrentControlSet\Services\Lanmanserver\parameters
KeyNameAutoShareWks
KeyTypeREG_DWORD
Data0
ConfType???
コマンドラインで設定
reg add   "HKLM\SYSTEM\CurrentControlSet\Services\Lanmanserver\parameters"
   /v AutoShareWks /t REG_DWORD /d "0" /f

〆 レジストリに保存されるネットワークドライブの接続履歴を削除する

KeyPathHKCU\Software\Microsoft\Windows\CurrentVersion\
Explorer\Map Network Drive MRU
KeyNamea ~ zまで
KeyTypeREG_SZ
コマンドラインで削除
reg delete "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\
    Map Network Drive MRU" /va /f

〆 レジストリに保存される「ファイル名を指定して実行」のコマンド履歴を削除する

KeyPathHKCU\Software\Microsoft\Windows\CurrentVersion\
Explorer\RunMRU
KeyNamea ~ zまで
KeyTypeREG_SZ
コマンドラインで削除
reg delete "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\RunMRU"
/va /f

〆 レジストリとファイルに保存される「リモートディスクトップ接続」の接続先の履歴を削除する

KeyPathHKCU\Software\Microsoft\Terminal Server Client\Default\
KeyNameMRU0 ~ MRU9まで
KeyTypeREG_SZ
コマンドラインで削除
del /s /a:H /q "%USERPROFILE%\My Documents\Default.rdp"
reg delete "HKCU\Software\Microsoft\Terminal Server Client\Default" /va /f

〆 レジストリに保存されるInternetExplorerのアドレスバーへ記述したURLの履歴を削除する

KeyPathHKCU\Software\Microsoft\Internet Explorer\TypedURLs
KeyNameurl1 ~ url?まで
KeyTypeREG_SZ
コマンドラインで削除
reg delete "HKCU\Software\Microsoft\Windows\Internet Explorer\TypedURLs" /va /f

〆 ネットワークに自分のコンピュータ名を表示させない。

KeyPathHKLM\SYSTEM\CurrentControlSet\Services\lanmanserver\parameters
KeyNameHidden
KeyTypeREG_DWORD
Data1
ConfType不明。
コマンドラインで設定
reg add   "HKLM\SYSTEM\CurrentControlSet\Services\lanmanserver\parameters"
     /v "Hidden" /t REG_DWORD /d "1" /f

〆 ようこそ画面で特定のアカウントを非表示にする。

KeyPathHKCU\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList
KeyNameAdministrator
KeyTypeREG_DWORD
Data0
ConfType不明。
コマンドラインで設定(この例はAministratorを消す)
reg add   "HKCU\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\
    SpecialAccounts\UserList" /v "Administrator" /t REG_DWORD /d "0" /f

〆 ようこそ画面で未読メール表示の有効期限の日数を設定する。

KeyPathHKCU\Software\Microsoft\Windows\CurrentVersion\UnreadMail
KeyNameMessageExpiryDays
KeyTypeREG_DWORD
Data1
ConfType不明。
コマンドラインで設定(この例は有効期限1日)
reg add   "HKCU\Software\Microsoft\Windows\CurrentVersion\UnreadMail"
     /v "MessageExpiryDays" /t REG_DWORD /d "1" /f

〆 InternetExplorer のHTMLエディタを変更する。

KeyPathHKLM\SOFTWARE\Microsoft\Internet Explorer\
View Source Editor\Editor Name
KeyName""
KeyTypeREG_SZ
DataC:\Program Files\TeraPad\TeraPad.exe
ConfType不明。
コマンドラインで設定
reg add   "HKLM\SOFTWARE\Microsoft\Internet Explorer\View Source Editor\
    Editor Name" /v "" /t REG_SZ /d "D:\Program Files\TeraPad\TeraPad.exe" /f

〆 「プログラムの追加と削除」に残ってしまった項目を消す。

KeyPathHKCU\Software\Microsoft\Windows\CurrentVersion\Uninstall
HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall
KeyNameいろいろ
KeyTypeREG_DWORD
Data1
ConfTyperegedit
コマンドラインで設定
アプリケーションのフォルダ名が不明のため、レジストリエディタからの削除のみ。

〆 シャットダウンの際に行うサービスの終了確認の待ち時間を短くする。

KeyPathHKLM\SYSTEM\CurrentControlSet\Control
KeyNameWaitToKillServiceTimeout
KeyTypeREG_SZ
Data5000
ConfType
コマンドラインで設定(この例は5秒)
reg add   "HKLM\SYSTEM\CurrentControlSet\Control"
     /v "WaitToKillServiceTimeout" /t REG_SZ /d "5000" /f
The link to this site is free.   /   Last Updated : 28.May.2012   
Copyright © ESPRITS STYLE. 2003-2007   /   ご意見、感想、苦情は、 こちらへ...
counter