Windows 8.1 Registry Tweaks

Discussion in 'Windows 8' started by MSMG, Jul 2, 2013.

  1. mustang999

    mustang999 MDL Novice

    Oct 26, 2013
    8
    0
    0
    Is there any way to change behavior of middle-mouse button pressed on programs in task bar?
    As default it opens another instance of application. I would like to close program instead.
     
  2. Move

    Move MDL Novice

    Feb 6, 2014
    5
    0
    0
    I need to disable some option from File Explorer. Anyone knows if there are tweaks for that?
    explorer1.JPG

    explorer2.JPG

    Thanks in advance
     
  3. HALIKUS

    HALIKUS MDL Addicted

    Jul 29, 2009
    526
    372
    30
    I know this is a reg tweak post, but i get around deleting shortcuts like those by actually deleting them at first logon. (In autoit) I use, as an example.

    FileDelete(@StartupCommonDir & "\FirstLogon.lnk")
    FileDelete(@StartMenuCommonDir & "\Default Programs.lnk")
     
  4. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,461
    92,547
    340
    He's asking to delete built-in features in the Explorer Ribbon, not possible i guesss
     
  5. Move

    Move MDL Novice

    Feb 6, 2014
    5
    0
    0
    #185 Move, Feb 7, 2014
    Last edited: Feb 7, 2014
    I cant seem to locate these files.. And if they are deleted those options in File Explorer will be unavailable for my users?

    Should I not be able to do something with these built-in features? I dont want my users to be able to start cmd or powershell, or to hide or unhide files. I have a group policy that hides all items on the desktop. With 2 clicks my users can unhide these items.. I also have cmd.exe powershell.exe powershell-ise.exe in the applocker policy, but those dont stop my users from starting them from the file explorer quick access.
     
  6. Carlos Detweiller

    Carlos Detweiller Emperor of Ice-Cream
    Staff Member

    Dec 21, 2012
    7,059
    8,359
    240
    #186 Carlos Detweiller, Feb 9, 2014
    Last edited by a moderator: Apr 20, 2017
    All I did find was a PowerShell command:
    Code:
    (new-object -c "microsoft.update.servicemanager").addservice2("7971f918-a847-4430-9279-4a52d1efe18d",7,"")
    
    Could you check it out? Unfortunately it required a reboot here.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,461
    92,547
    340
    #187 abbodi1406, Feb 9, 2014
    Last edited by a moderator: Apr 20, 2017
    Working well without reboot needed
     
  8. wk-952

    wk-952 MDL Member

    Sep 2, 2012
    116
    287
    10
    #188 wk-952, Feb 27, 2014
    Last edited by a moderator: Apr 20, 2017
  9. spidernz

    spidernz MDL Senior Member

    May 20, 2011
    390
    114
    10
    #189 spidernz, Mar 3, 2014
    Last edited by a moderator: Apr 20, 2017
  10. Superfly

    Superfly MDL Expert

    Jan 12, 2010
    1,142
    543
    60
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  11. spidernz

    spidernz MDL Senior Member

    May 20, 2011
    390
    114
    10
    worked great thanks!

    Regfile is similar to the hidden files one :)
     
  12. =)(=

    =)(= Guest

    #192 =)(=, Mar 8, 2014
    Last edited by a moderator: Apr 20, 2017
    Not sure if this has been posted already, but..

    Disable System Restore:

    Code:
    Windows Registry Editor Version 5.00
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows NT\SystemRestore]
    "DisableConfig"=dword:00000001
    "DisableSR"=dword:00000001
     
  13. pekini

    pekini MDL Novice

    Apr 1, 2013
    1
    0
    0
    Can anyone tell me a registry tweak to enable orr disable action center on windows 8.1? thanks
     
  14. Smorgan

    Smorgan Glitcher

    Mar 25, 2010
    1,855
    1,051
    60
    What we can do disable it is nail the services which runs it.

    reg add "HKLM\SYSTEM\CurrentControlSet\Services\wscsvc" /v "Start" /d "4" /t "REG_DWORD" /f

    Start 4 - disabled
    Start 3 - Manual
    Start 2 - Automatic

    This is the currentcontrol list which controls every service in windows. In this case the Windows Security Center Service is names mscsvc. Now you need to apply that then hit:

    net stop wscsvc

    And your done.
     
  15. GreyOwl09

    GreyOwl09 MDL Novice

    Oct 26, 2012
    29
    7
    0
    Is there a way to disable the ribbon ui in file explorer ?
     
  16. RickSteele

    RickSteele MDL Addicted

    Nov 12, 2009
    833
    483
    30
    #199 RickSteele, Apr 20, 2014
    Last edited by a moderator: Apr 20, 2017
    Disable downloaded file block (eliminates requirement to "unblock" downloaded files in File Properties); set default risk to normal:

    Code:
    Windows Registry Editor Version 5.00
    
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies]
    
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Associations]
    "DefaultFileTypeRisk"=dword:00001808
    
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Attachments]
    "SaveZoneInformation"=dword:00000001
    
     
  17. saper1972

    saper1972 MDL Novice

    Feb 6, 2010
    20
    1
    0
    I need reg tweaks to remove drive Q after install Office 2010 starter on Win 8.1.