Tweets from pichat
| Two songs from the year I created my first web sites. http://t.co/8eHrOA9K + http://t.co/AuWb2etI #video #retro About 1 day ago from pichat (Mark Seuffert) |
Tweets from 600infos
| I HAVE NYANED FOR 888.4 SECONDS! http://t.co/JQYOZebv via @nyannyancat About 1 week, 5 days ago from 600infos (Wolf) |
Trace: » FR1015 - new shortcut topwindow [F3] » Colorscheme Talk » HTTP_USER_AGENT ändern » embedding sound » Backup a FTP Directory with wget » klassische Suche aktivieren mit der Suche in PHP oder CPP-Files
You are here: Pichat Wiki (en) » Snippets » klassische Suche aktivieren mit der Suche in PHP oder CPP-Files
Table of Contents
klassische Suche aktivieren mit der Suche in PHP oder CPP-Files
Batch script:
- classic_search_and_register.bat
@echo off REM classic_search_and_register.bat REM Version 1.0 2010-10-03 Mark Wolfgruber REM Source http://pichat-wiki.de/snippets/klassische_suche set _extensions=php phps php3 cpp echo %date% %time% ### will register search options pause set /p _a=Activate classic search option <nul reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\CabinetState" /f /v "Use Search Asst" /t REG_SZ /d no >nul 2>&1 && echo ... OK || echo ... ERROR echo %date% %time% Register for Plain Text Persistent Handler for %%A in (%_extensions%) do ( set /p _a=- Fileextension: .%%A <nul reg add "HKCR\.%%A\PersistentHandler" /f /ve /t REG_SZ /d {5e941d80-bf96-11cd-b579-08002b30bfeb} >nul 2>&1 && echo ... OK || echo ... ERROR ) echo %date% %time% ### ready for search now ... press [Win] + [F] pause >nul
Regsitry file
Filename: ksamsip.reg (422 B, 1y ago, 74 downloads)
Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\CabinetState] "Use Search Asst"="no" [HKEY_CLASSES_ROOT\.php\PersistentHandler] @="{5e941d80-bf96-11cd-b579-08002b30bfeb}" [HKEY_CLASSES_ROOT\.phps\PersistentHandler] @="{5e941d80-bf96-11cd-b579-08002b30bfeb}" [HKEY_CLASSES_ROOT\.php3\PersistentHandler] @="{5e941d80-bf96-11cd-b579-08002b30bfeb}" [HKEY_CLASSES_ROOT\.cpp\PersistentHandler] @="{5e941d80-bf96-11cd-b579-08002b30bfeb}"