Jump to content

Sgt_Strider

Member
  • Posts

    529
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Canada

Posts posted by Sgt_Strider

  1. @ Sgt_Strider

    The colourful reply from gunsmokingman has the correct syntax!

    Here is mine in monochrome format

    @echo off
    rd /s/q "%UserProfile%\Favorites\Links"
    rd /s/q "%UserProfile%\Favorites\Favorites"
    rd /s/q %systemdrive%\drivers
    del %0

    Hope this helps!

    I see! I apologize if I seemed rude at all in my post.

    I copied and paste your syntax into my cleanup.cmd and it doesn't work. The favourites and link folder appears under the favourites tab in IE. I honestly don't know what is going on and I am becoming very frustrated.

  2. Changing colors is for apperance only or did you not know that.

    It just to make it look better than the standard black and white.

    If it not to hard you could take out this line Color F1 but that might

    require some thinking on your part.

    I am just in the habbit of adding it to my Cmd scripts.

    Not that I don't appreciate that, but my problem is not with asthetics right now. I'm trying to get my script working. Colours are the last thing that I need to worry about :blink:

  3. Alright now to fix some myths on this...

    @Sgt_Strider

    Wow this seems to be getting more complicated...Is it possible someone can edit my RunOnceEx.cmd file so that it'll work correctly? I just want to do it like that. Thanks!

    You should REALLY read what's been said.

    http://www.msfn.org/board/index.php?showto...ndpost&p=333760

    http://www.msfn.org/board/index.php?showto...ndpost&p=333914

    That's TWO of Yzöwl posts in THIS VERY TOPIC that did what you asked. You didn't read it TWICE.

    @ponghy and Yzöwl

    The error he got was RD was an unrecognized command. He did not try it through the CMD interprety as Yzöwl had fixed his code to do. RunonceEX and consequently ierunonce.dll are able to find any executable that is in the %path% which includes %systemroot%\system32. There is no problem with having just cmd.exe or rundll32.exe as the entire line without the path to them.

    This is all like a foreign language to me. I'm trying my best to learn this and apply it. :whistle:

    Ok this is how my RunOnceEx.cmd file looks like:

    @echo off

    SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx

    REG ADD %KEY%\001 /VE /D "Removing Items" /f
    REG ADD %KEY%\001 /V 1 /D "%systemdrive%\cleanup.cmd" /f

    This is how my Cleanup.cmd file looks like:

    @echo off
    RD /S /Q \"%systemdrive%\Documents and Settings\Administrator\Favorites\Links
    RD /S /Q \"%systemdrive%\Documents and Settings\Administrator\Favorites\Favorites
    RD /S /Q %systemdrive%\drivers
    del /f /q %systemdrive%\cleanup.cmd

    The favourites and links folder are not deleted, but my drivers folder is deleted. I don't understand why the favourites and Links folder keep on reappearing. I tried looking deeper and searching the forums a bit, but I still don't understand why the folders are not removed permanately.

  4. I'm not talking about the tweak that enables simple file sharing. The thing is that simple file sharing is already enabled, but I can't seem to have file sharing unless I go to the network setup wizard and enable file sharing there to actually be able to share my files with other computers connected to my home network. I think this is a new feature of SP2 cuz I never had to do this with Windows XP SP1 and before.

  5. RD is not a recognised command unless run from the command interpreter.
    @echo off
    SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx

    REG ADD %KEY%\005 /VE /D "Removing Favorites" /f
    REG ADD %KEY%\005 /V 1 /D "cmd /c rd /s/q \"%userprofile%\Favorites\Links\"" /f
    REG ADD %KEY%\005 /V 2 /D "cmd /c rd /s/q \"%userprofile%\Favorites\Favorites\"" /f

    REG ADD %KEY%\999 /V 1 /D "cmd /c rd /s/q %systemdrive%\drivers" /f

    This is the error message that I got:

    "Windows cannot find 'RD'. Make sure you type the name correctly, and then try again. To search for a file, click the Start button, and then click search."

    So how do I fix that? Thanks!

  6. This is how my RunOnceEx.cmd file looks like:

    @echo off

    SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx

    REG ADD %KEY%\005 /VE /D "Removing Favorites" /f
    REG ADD %KEY%\005 /V 1 /D "RD /S /Q \"%systemdrive%\Documents and Settings\Administrator\Favorites\Links\"" /f
    REG ADD %KEY%\005 /V 2 /D "RD /S /Q \"%systemdrive%\Documents and Settings\Administrator\Favorites\Favorites\"" /f

    REG ADD %KEY%\999 /V 1 /D "RD /S /Q %systemdrive%\drivers\" /f

    I get an error after Windows finish installing itself and the RunOnceEx.cmd files attempt to initialized the commands in the file. What I am trying to do is remove the favourites and links folder in Internet Explorer and the drivers installed via the winnt.sif method. If anyone here can figure out why the script isn't working and can correct it, that would be greatly appreciated. Thanks!

  7. Windows Registry Editor Version 5.00 

    ;=======================================================================
    ;      Startup / Shutdown
    ;=======================================================================
    ; Allows boot files to be placed optimally on the hard-drive for faster boots
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Dfrg\BootOptimizeFunction]
    "Enable"="Y"

    ; Speed up shutdown
    [HKEY_CURRENT_USER\Control Panel\Desktop]
    "AutoEndTasks"="1"
    "HungAppTimeout"="100"
    "WaitToKillAppTimeout"="1000"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control]
    "WaitToKillServiceTimeout"="1000"

    ; Disable Automatic Restart in the event of a BSOD
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl]
    "AutoReboot"=dword:00000000

    ; Prefetcher tweak (faster booting)
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management\PrefetchParameters]
    "EnablePrefetcher"=dword:00000003

    ; Modifying the Autocheck Time-out Value
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager]
    "AutoChkTimeOut"=dword:00000002

    ; Disable Hibernate
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Power]
    "Heuristics"=hex:05,00,00,00,00,01,00,00,00,00,00,00,00,00,00,00,3f,42,0f,00

    ; Disable Shutdown Event Tracker
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows NT\Reliability]
    "ShutdownReasonOn"=dword:00000000
    "ShutdownReasonUI"=dword:00000000

    ;=======================================================================
    ;      System Performance Tweaks
    ;=======================================================================
    ; Increase IoPageLockLimit (disk cache)
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management]
    "IoPageLockLimit"=dword:00020000

    ; Speeds up copying/moving of zip files (disable windows built in zip functionality)
    [-HKEY_CLASSES_ROOT\.zip\CompressedFolder]
    [-HKEY_CLASSES_ROOT\CLSID\{E88DCCE0-B7B3-11d1-A9F0-00AA0060FA31}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CompressedFolder]

    ; Speed up opening of My Computer and Explorer
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\stisvc]
    "Start"=dword:00000004
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
    "NoSaveSettings"=dword:00000000
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
    "NoNetCrawling"=dword:00000001
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer]
    "NoRemoteRecursiveEvents"=dword:00000001

    ; Force DLL To Unload From Memory
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\AlwaysUnloadDLL]
    @="1"

    ; Optimize System Cache Size (might cause data corruption if you have ATI vid card and 1 gig of ram)
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management]
    "LargeSystemCache"=dword:00000001

    ; Optimize Core System Performance
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management]
    "DisablePagingExecutive"=dword:00000001

    ;=======================================================================
    ;      General Setting
    ;=======================================================================
    ; Launch Browser In a Seperate process
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\BrowseNewProcess]
    "BrowseNewProcess"="Yes"

    ; Opens 16-bit apps in a seperate memory space, this increases stability when dealing with 16-bit apps.
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\WOW]
    "DefaultSeparateVDM"="Yes"

    ; Remove Alexa Spyware (comes built in Windows by default)
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Extensions\{c95fe080-8f5d-11d2-a20b-00aa003c157a}]

    ; Recycle Bin Uses 3% of Available Space Rather than 10%
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\BitBucket]
    "Percent"=dword:00000003

    ; Keyboard Num-Lock on
    [HKEY_CURRENT_USER\Control Panel\Keyboard]
    "InitialKeyboardIndicators"="2"

    ; Disable StickyKeys shortcut
    [HKEY_CURRENT_USER\Control Panel\Accessibility\StickyKeys]
    "Flags"="506"

    ; Disable Filterkeys shortcut
    [HKEY_CURRENT_USER\Control Panel\Accessibility\Keyboard Response]
    "Flags"="122"

    ; Disable ToggleKeys shortcut
    [HKEY_CURRENT_USER\Control Panel\Accessibility\ToggleKeys]
    "Flags"="58"

    ; Disable the Desktop Cleanup Wizard
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Desktop\CleanupWiz]
    "NoRun"=dword:00000001

    ; Remove System Folders Baricade
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\WebView\BarricadedFolders]
    "shell:ControlPanelFolder"=dword:00000000
    "shell:SystemDriveRootFolder"=dword:00000000
    "shell:ProgramFiles"=dword:00000000
    "shell:Windows"=dword:00000000
    "shell:System"=dword:0000000

    ; Control panel classic view
    "ForceClassicControlPanel"=dword:00000001

    ; Opens nfo files with Notepad
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.nfo]
    "Application"="NOTEPAD.EXE"
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.nfo\OpenWithList]
    "a"="Explorer.exe"
    "MRUList"="ba"
    "b"="NOTEPAD.EXE"
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.nfo\OpenWithProgids]
    "MSInfo.Document"=hex(0):

    ; Disable Error Reporting
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting]
    "AllOrNone"=dword:00000001
    "DoReport"=dword:00000000
    "IncludeKernelFaults"=dword:00000000
    "IncludeMicrosoftApps"=dword:00000000
    "IncludeWindowsApps"=dword:00000000
    "ShowUI"=dword:00000000

    ; Change Default Search Options
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer]
    "SearchSystemDirs"=dword:00000001
    "SearchHidden"=dword:00000001
    "IncludeSubFolders"=dword:00000001
    "CaseSensitive"=dword:00000000
    "SearchSlowFiles"=dword:00000000

    ;  Enable Classic Search
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\CabinetState]
    "FullPath"=dword:00000001
    "FullPathAddress"=dword:00000001
    "Use Search Asst"="Yes"
    "Settings"=hex:0c,00,02,00,1b,01,e7,77,60,00,00,00

    ; Disable "Search Dog" and use advanced search
    [HKEY_CURRENT_USER\Software\Microsoft\Search Assistant]
    "Actor"=""
    "SocialUI"=dword:00000000
    "UsageCount"=dword:00000000
    "UseAdvancedSearchAlways"=dword:00000001

    ; Search All File Types
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\ContentIndex]
    "FilterFilesWithUnknownExtensions"=dword:00000001

    ; Disable  Windows Tour
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Applets\Tour]
    "RunCount"=dword:00000000
    [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Applets\Tour]
    "RunCount"=dword:00000000

    ; Removes Briefcase, and Rich-Text-Document from New Menu
    [-HKEY_CLASSES_ROOT\.bfc\ShellNew]
    [-HKEY_CLASSES_ROOT\.rtf\ShellNew]
    [-HKEY_CLASSES_ROOT\.bmp\ShellNew]
    [-HKEY_CLASSES_ROOT\.wav\ShellNew]
    [-HKEY_CLASSES_ROOT\.zip\CompressedFolder\ShellNew]

    ; Turn off system beeps
    [HKEY_CURRENT_USER\Control Panel\Sound]
    "beep"="no"

    ; Show Detailed Info in Device Manager
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment]
    "DEVMGR_SHOW_DETAILS"=dword:00000001
    "DEVMGR_SHOW_NONPRESENT_DEVICES"="1"

    ; Turns off the balloon tips altogether
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
    "NoSMBalloonTip"=dword:00000000

    ; Disable Group Policy Duplication
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\system]
    "SynchronousMachineGroupPolicy"=dword:00000000
    "SynchronousUserGroupPolicy"=dword:00000000

    ; AMD Processor Fix
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management]
    "SecondLevelDataCache"=dword:00000200

    ;=======================================================================
    ;      Task Bar and Folder View
    ;=======================================================================
    ; Lock taskbar
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
    "TaskbarSizeMove"=dword:00000000

    ; apps don't steal the focus with popups
    [HKEY_CURRENT_USER\Control Panel\desktop]
    "ForegroundLockTimeout"=dword:00030d40

    ; Remove Shared Documents from My Computer
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
    "NoSharedDocuments"=dword:00000001
    [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
    "NoSharedDocuments"=dword:00000001
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\DelegateFolders\

    {59031a47-3f72-44a7-89c5-5595fe6b30ee}]

    ; Clear recent documents when log off, disable recent documents history, and remove the reent documents from the start

    menu*****
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
    "ClearRecentDocsOnExit"=dword:00000001
    "NoRecentDocsHistory"=dword:00000001
    "NoRecentDocsMenu"=dword:00000001

    ; cached "folder-view settings", currently 250 (to speed-up browsing local folders)
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell]
    "BagMRU Size"=dword:000000FA
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\ShellNoRoam]
    "BagMRU Size"=dword:000000FA

    ; Caching thumbnails settings
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer]
    "ThumbnailSize"=dword:00000020
    "ThumbnailQuality"=dword:0000001E

    ; Status bar, list view for Explorer
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Streams]
    "Settings"=hex:09,00,00,00,03,00,00,00,00,00,00,00,e0,a5,1f,0e,73,35,cf,11,ae,\
     69,08,00,2b,2e,12,62,04,00,00,00,04,00,00,00,43,00,00,00

    ; Display detail on windows explorer
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Streams]
    "Settings"=hex:08,00,00,00,04,00,00,00,01,00,00,00,00,77,7e,13,73,35,cf,11,ae,\
    69,08,00,2b,2e,12,62,04,00,00,00,10,00,00,00,43,00,00,00

    ; Sort Start Menu and Favorites in Alphabetical Order
    [-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder]

    ; Cache more Icons
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer]
    "Max Cached Icons"="8192"

    ; Change MenuShowDelay (Start Menu load speed)
    [HKEY_CURRENT_USER\Control Panel\Desktop]
    "MenuShowDelay"="200"

    ; Removes Language Bar
    [-HKEY_CLASSES_ROOT\CLSID\{540D8A8B-1C3F-4E32-8132-530F6A502090}]
    @=-
    "MenuTextPUI"=-

    ; Classic Menu
    [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
    "NoSimpleStartMenu"=dword:00000001

    ; Enable Quick Launch (CALL FROM CMDLINES to work)
    [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Streams\Desktop]
    "TaskbarWinXP"=hex:0c,00,00,00,08,00,00,00,02,00,00,00,00,00,00,00,b0,e2,2b,\
    d8,64,57,d0,11,a9,6e,00,c0,4f,d7,05,a2,22,00,1c,00,0a,01,00,00,1a,00,00,00,\
    01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,4c,00,00,00,01,14,02,00,00,\
    00,00,00,c0,00,00,00,00,00,00,46,83,00,00,00,10,00,00,00,a0,b0,48,5e,89,8d,\
    bd,01,00,d8,9e,e4,2a,8d,bd,01,00,45,fe,5e,89,8d,bd,01,00,00,00,00,00,00,00,\
    00,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,13,01,14,00,1f,0f,e0,4f,\
    d0,20,ea,3a,69,10,a2,d8,08,00,2b,30,30,9d,19,00,23,44,3a,5c,00,00,00,00,00,\
    00,00,00,00,00,00,00,00,00,00,00,00,cd,97,15,00,31,00,00,00,00,00,af,24,5c,\
    b9,10,80,57,69,6e,6e,74,00,00,20,00,31,00,00,00,00,00,af,24,a3,b9,10,00,50,\
    72,6f,66,69,6c,65,73,00,50,52,4f,46,49,4c,45,53,00,19,00,31,00,00,00,00,00,\
    c1,24,08,92,10,00,69,65,35,30,30,2e,30,30,30,00,00,28,00,31,00,00,00,00,00,\
    c1,24,08,92,10,00,41,70,70,6c,69,63,61,74,69,6f,6e,20,44,61,74,61,00,41,50,\
    50,4c,49,43,7e,31,00,21,00,31,00,00,00,00,00,c5,22,9d,91,10,00,4d,69,63,72,\
    6f,73,6f,66,74,00,4d,49,43,52,4f,53,7e,31,00,29,00,31,00,00,00,00,00,d3,22,\
    32,a6,10,00,49,6e,74,65,72,6e,65,74,20,45,78,70,6c,6f,72,65,72,00,49,4e,54,\
    45,52,4e,7e,31,00,24,00,31,00,00,00,00,00,db,22,76,ba,10,00,51,75,69,63,6b,\
    20,4c,61,75,6e,63,68,00,51,55,49,43,4b,4c,7e,31,00,00,00,8d,00,00,00,1c,00,\
    00,00,01,00,00,00,1c,00,00,00,36,00,00,00,0d,f0,ad,ba,8c,00,00,00,1a,00,00,\
    00,03,00,00,00,e7,18,2d,23,10,00,00,00,49,45,35,30,30,5f,58,31,43,00,43,3a,\
    5c,57,49,4e,4e,54,5c,50,72,6f,66,69,6c,65,73,5c,49,45,35,30,30,2e,30,30,30,\
    5c,41,70,70,6c,69,63,61,74,69,6f,6e,20,44,61,74,61,5c,4d,69,63,72,6f,73,6f,\
    66,74,5c,49,6e,74,65,72,6e,65,74,20,45,78,70,6c,6f,72,65,72,5c,51,75,69,63,\
    6b,20,4c,61,75,6e,63,68,00,00,10,00,00,00,05,00,00,a0,1a,00,00,00,a3,00,00,\
    00,00,00,00,00,08,00,00,00,02,00,00,00,cc,00,00,00,01,00,00,00,03,00,00,00,\
    4a,00,00,00,01,00,00,00,40,00,32,00,e6,01,00,00,c4,24,15,9f,20,00,4c,61,75,\
    6e,63,68,20,49,6e,74,65,72,6e,65,74,20,45,78,70,6c,6f,72,65,72,20,42,72,6f,\
    77,73,65,72,2e,6c,6e,6b,00,4c,41,55,4e,43,48,7e,32,2e,4c,4e,4b,00,00,00,40,\
    00,00,00,02,00,00,00,36,00,32,00,48,02,00,00,c4,24,15,9f,20,00,4c,61,75,6e,\
    63,68,20,4f,75,74,6c,6f,6f,6b,20,45,78,70,72,65,73,73,2e,6c,6e,6b,00,4c,41,\
    55,4e,43,48,7e,31,2e,4c,4e,4b,00,00,00,36,00,00,00,00,00,00,00,2c,00,32,00,\
    51,00,00,00,ec,22,46,39,20,00,53,68,6f,77,20,44,65,73,6b,74,6f,70,2e,73,63,\
    66,00,53,48,4f,57,44,45,7e,31,2e,53,43,46,00,00,00,52,00,00,00,e0,00,00,00,\
    00,00,00,00,16,00,00,00,00,00,00,00,00,00,00,00,16,00,00,00,00,00,00,00,01,\
    00,00,00,01,00,00,00,aa,4f,28,68,48,6a,d0,11,8c,78,00,c0,4f,d9,18,b4,37,02,\
    00,00,e0,00,00,00,00,00,00,00,16,00,00,00,00,00,00,00,00,00,00,00,16,00,00,\
    00,00,00,00,00,01,00,00,00

    ;=======================================================================
    ;      Visual Settings
    ;=======================================================================
    ; Removes More Themes Online..." option in the Themes dropdown box
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\DownloadSites]

    ; Disable screensavers
    [HKEY_CURRENT_USER\Control Panel\Desktop]
    "ScreenSaveActive"="0"
    [HKEY_CURRENT_USER\Control Panel\Desktop]
    "SCRNSAVE.EXE"=""
    [HKEY_USERS\.DEFAULT\Control Panel\Desktop]
    "ScreenSaveActive"="0"
    [HKEY_USERS\.DEFAULT\Control Panel\Desktop]
    "SCRNSAVE.EXE"=""

    ; Enable ClearType for ALL Users
    [HKEY_CURRENT_USER\Control Panel\Desktop]
    "FontSmoothingType"=dword:00000002

    ; Custom Visual Settings***********
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects]
    "VisualFXSetting"=dword:00000003
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\AnimateMinMax]
    "DefaultApplied"=dword:00000001
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\ComboBoxAnimation]
    "DefaultApplied"=dword:00000001
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\CursorShadow]
    "DefaultApplied"=dword:00000001
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\DragFullWindows]
    "DefaultApplied"=dword:00000001
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\DropShadow]
    "DefaultValue"=dword:00000001
    "DefaultApplied"=dword:00000001
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\FontSmoothing]
    "DefaultValue"=dword:00000001
    "DefaultApplied"=dword:00000001
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\ListBoxSmoothScrolling]
    "DefaultApplied"=dword:00000001
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\ListviewAlphaSelect]
    "DefaultValue"=dword:00000001
    "DefaultApplied"=dword:00000001
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\ListviewShadow]
    "DefaultValue"=dword:00000001
    "DefaultApplied"=dword:00000001
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\ListviewWatermark]
    "DefaultValue"=dword:00000001
    "DefaultApplied"=dword:00000001
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\MenuAnimation]
    "DefaultValue"=dword:00000001
    "DefaultApplied"=dword:00000001
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\SelectionFade]
    "DefaultValue"=dword:00000001
    "DefaultApplied"=dword:00000001
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\TaskbarAnimations]
    "DefaultValue"=dword:00000001
    "DefaultApplied"=dword:00000001
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\TooltipAnimation]
    "DefaultValue"=dword:00000001
    "DefaultApplied"=dword:00000001
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\WebView]
    "DefaultApplied"=dword:00000001

    ;=======================================================================
    ;      My Computer Right Click
    ;=======================================================================
    ; Adds Services to right click of My Computer
    [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\services]
    @=hex(2):53,00,65,00,72,00,76,00,69,00,63,00,65,00,73,00,00,00
    "SuppressionPolicy"=dword:4000003c
    [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\services\command]
    @=hex(2):25,00,77,00,69,00,6e,00,64,00,69,00,72,00,25,00,5c,00,73,00,79,00,73,

    00,74,00,65,00,6d,00,33,00,32,00,5c,00,6d,00,6d,00,63,00,2e,00,65,00,78,00,

    65,00,20,00,2f,00,73,00,20,00,25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,

    00,6f,00,6f,00,74,00,25,00,5c,00,73,00,79,00,73,00,74,00,65,00,6d,00,33,00,

    32,00,5c,00,73,00,65,00,72,00,76,00,69,00,63,00,65,00,73,00,2e,00,6d,00,73, 00,63,00,20,00,2f,00,73,00,00,00

    ; Adds Device Manager to right click of My Computer
    [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\DevMgr]
    @="Device Manager"
    [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\DevMgr\command]
    @="mmc.exe %%SYSTEMDRIVE%%\\WINDOWS\\SYSTEM32\\devmgmt.msc"

    ;=======================================================================
    ;                                 Internet Explorer and Outlook Express
    ;=======================================================================
    ; Disable Internet Explorer "Send information to the Internet" prompt
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\3]
    "1601"=dword:00000000

    ; Disable Internet Explorer Auto-Complete prompt
    [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\IntelliForms]
    "AskUser"=dword:00000000

    ; Disable Internet Explorer Cookie "Privacy Icon" prompt
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
    "PrivDiscUiShown"=dword:00000001

    ; Add Google As Main/default Search Page
    [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main]
    "Use Search Asst"="no"
    "Search Page"="http://www.google.com"
    "Search Bar"="http://www.google.com/ie_rsearch.html"
    [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchURL]
    @="http://www.google.com/keyword/%s"
    "provider"="gogl"
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Search]
    "SearchAssistant"="http://www.google.com/ie_rsearch.html"

    ; Remove All Browser Helper Objects
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects]
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects]

    ; Remove All Browser Extensions
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Extensions]
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Extensions]

    ; Remove All Toolbars
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Toolbar]
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Toolbar]

    ; Prune History to only 1 days
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Url History]
    "DaysToKeep"=dword:00000001

    ;=======================================================================
    ;      Multimedia
    ;=======================================================================
    ; Disables Preview of Movie file formats (allowing you to move/rename/delete without errors)
    [-HKEY_CLASSES_ROOT\.avi\ShellEx]
    [-HKEY_CLASSES_ROOT\.mpg\ShellEx]
    [-HKEY_CLASSES_ROOT\.mpe\ShellEx]
    [-HKEY_CLASSES_ROOT\.mpeg\ShellEx]

    ; Speed-up Access to AVI Media Files
    [-HKEY_CLASSES_ROOT\CLSID\{87D62D94-71B3-4b9a-9489-5FE6850DC73E}]
    [-HKEY_CLASSES_ROOT\SystemFileAssociations\.avi\shellex\PropertyHandler]

    ;=======================================================================
    ;      Networking
    ;=======================================================================
    ; Speed Up browsing remote computers (Your Network)
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\RemoteComputer\NameSpace\{D6277990-

    4C6A-11CF-8D87-00AA0060F5BF}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\RemoteComputer\NameSpace\{2227A280-

    3AEA-1069-A2DE-08002B30309D}]

    ;=======================================================================
    ;      Other Software
    ;=======================================================================
    ; MSN Messenger: Disables - Auto Busy & Away & Disables the annoying MSN Today On Logon
    [HKEY_CURRENT_USER\Software\Microsoft\MSNMessenger]
    "EnableBusyDetect"=dword:00000000
    "EnableIdleDetect"=dword:00000000
    "AppSettings"=hex:22,02,00,00

    ; disable balloon - Add your passport to XP messenger
    [HKEY_CURRENT_USER\Software\Microsoft\MessengerService]
    "PassportBalloon"=hex:0a,00,00,00

    ; notepad saves page setup and window positions
    [HKEY_CURRENT_USER\Software\Microsoft\Notepad]
    "fSavePageSettings"=dword:00000001
    "fSaveWindowPositions"=dword:00000001

    ; Enable status bar, Tahoma font as default, and enable word wrap.
    [HKEY_CURRENT_USER\Software\Microsoft\Notepad]
    "StatusBar"=dword:00000001
    "lfFaceName"="Tahoma"
    "fWrap"=dword:00000001

    ; Gets rid of tray icon for taking survey (office 2k3)
    [HKEY_CURRENT_USER\Software\Microsoft\Office\11.0\Common\Internet]
    "UseOnlineContent"=dword:00000002
    [HKEY_CURRENT_USER\Software\Microsoft\Office\Common]
    "QMEnable"=dword:00000000

    ; Enables Live Scrolling in Microsoft Word
    [HKEY_CURRENT_USER\Software\Microsoft\Office\11.0\Word\Options]
    "LiveScrolling"="1"
    [HKEY_CURRENT_USER\Software\Microsoft\Office\10.0\Word\Options]
    "LiveScrolling"="1"
    [HKEY_CURRENT_USER\Software\Microsoft\Office\8.0\Word\Options]
    "LiveScrolling"="1"

    ; Get rid of 'EULA' dialog for MS-PowerPoint Viewer 2003
    [HKEY_CURRENT_USER\Software\Microsoft\PowerPoint Viewer\11.0]
    "EULAAccepted"=dword:00000001

    ;=======================================================================
    ;      Win XP SP2
    ;=======================================================================
    ; Gets rid of anoying popup for running files you download from internet
    [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Download]
    "CheckExeSignatures"="no"
    "RunInvalidSignatures"=dword:00000000
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Attachments]
    "SaveZoneInformation"=dword:00000001
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Associations]
    "LowRiskFileTypes"=".zip;.rar;.nfo;.txt;.exe;.bat;.com;.cmd;.reg;.msi;.htm;.html;.gif;.bmp;.jpg;.avi;.mpg;.mpeg;.mov
    ;.mp3;.

    m3u;.wav;"

    ; Disable Security center
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Security Center]
    "AntiVirusDisableNotify"=dword:00000001
    "AntiVirusOverride"=dword:00000001
    "FirewallDisableNotify"=dword:00000001
    "FirewallOverride"=dword:00000001
    "FirstRunDisabled"=dword:00000001
    "UpdatesDisableNotify"=dword:00000001
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\wscsvc]
    "Start"=dword:00000004

    ; Disable Information Bar Prompt in Internet Explorer
    [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\InformationBar]
    "FirstTime"=dword:00000000

    I was wondering if someone here can double check my registry tweaks for redundant tweaks and I was wondering if the custom visual settings really work and what it does? I got all of these tweaks from the registry sticky thread. Thanks.

  8. You could create a file called "MenuOrder.reg" in your windows directory (or \$OEM$\$$\ directory), like this:

    Windows Registry Editor Version 5.00

    [-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder]

    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]
    "MenuOrder"="regedit /s menuorder.reg"

    , then add the following line to CMDLINES.TXT like so:

    "regedit /s menuorder.reg"

    Not only will it clear the start menu order, it will also sort the favorites menu.

    It's clear the start menu order or you mean rearrange it alphabetically? Will this method work if I place it in my registry tweaks file or I will need to make it separate? Don't you mean $1 instead of $$ for the location?

  9. You have to specify the locale ID for the specific IME, not just "Mandarin".

    If you include the correct Language and Language Group for CJK languages in winnt.sif Setup will also install Files for East Asian Languages.

    Language Group

    9 = Trad Chi

    10 = Simp. Chi

    See my list:

    http://www.msfn.org/board/index.php?showto...ndpost&p=288617

    I looked at your list for Chinese simplified and Chinese Traditional and I'm extremely confused. How do I know which Chinese input method to use? Thanks!

×
×
  • Create New...