Windows 8.1 Registry Tweaks

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

  1. pra_viilon

    pra_viilon MDL Novice

    Aug 16, 2012
    37
    3
    0
    So, using this tweak, I can install store apps to my memory card on my tablet, can't I?
    Anybody tested it out?
     
  2. expert

    expert MDL Member

    Nov 3, 2007
    124
    125
    10
    Closing Modern apps in Win8.1

    Amazing Fast !!!

    [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\ImmersiveShell\Switcher]
    "CloseDwellTimeout"=dword:00000001
    "MouseCloseThresholdPercent"=dword:00000063
     
  3. MrCobra

    MrCobra MDL Novice

    Nov 23, 2008
    34
    6
    0
    #223 MrCobra, Jul 2, 2014
    Last edited by a moderator: Apr 20, 2017
    Running 8.1 Pro (x64)

    I've put this in and the non admin option tells me that I don't have any programs configured to perform this action. The admin option does nothing. If I mod them to include Powershell then they both work.

    Any insights?
     
  4. Shenj

    Shenj MDL Expert

    Aug 12, 2010
    1,554
    654
    60
    I've had Windows bug once like this, maybe you are running into the same bug?

    If you go to Explorer > File > Open command prompt when you see the bug, you'd get the same error there, a reboot fixes it but i only had it happen once so i have no idea why it even happens in the first place, blame Windows :p
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. MrCobra

    MrCobra MDL Novice

    Nov 23, 2008
    34
    6
    0
    Using Explorer > File > Open works perfectly. It's the context menu entries that are bugged. o_O

    Thanks for your reply.
     
  6. Shenj

    Shenj MDL Expert

    Aug 12, 2010
    1,554
    654
    60
    #226 Shenj, Jul 6, 2014
    Last edited by a moderator: Apr 20, 2017
    Weird, i don't have /cmd actually replaced here but it should work just fine.

    I use it somewhat like this, which isn't much different to what i posted.
    Code:
    [HKEY_CURRENT_USER\Software\Classes\Directory\Background\shell\#Stuff]
    "SubCommands"="Windows.MultiVerb.cmd;Windows.MultiVerb.cmdPromptAsAdministrator;|;Windows.MultiVerb.Powershell;Windows.MultiVerb.PowershellAsAdmin"
    "MUIVerb"="Stuff"
    "SeparatorBefore"=""
    
    [HKEY_CURRENT_USER\Software\Classes\Directory\shell\#Stuff]
    "SubCommands"="Windows.MultiVerb.cmd;Windows.MultiVerb.cmdPromptAsAdministrator;|;Windows.MultiVerb.Powershell;Windows.MultiVerb.PowershellAsAdmin"
    "MUIVerb"="Stuff"
    "SeparatorBefore"=""
    If that also doesn't work then there is simply something off with your windows installation, but i wouldn't know what.. all this does is call a command in
    Code:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell
    Keep in mind that this only works with folders and explorer, for files(Classes\*\Shell) you need to use the "location" commands you find in CommandStore.

    Like this...
    Code:
    [HKEY_CURRENT_USER\Software\Classes\*\shell\#Stuff]
    "MUIVerb"="Stuff"
    "SubCommands"="Windows.location.cmd;Windows.location.cmdPromptAsAdministrator;|;Windows.location.Powershell;Windows.location.PowershellAsAdmin"
    "SeparatorAfter"=""
    I use #... for my classnames, just makes it easier to see what's mine, has no other purpose.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. xc1

    xc1 MDL Novice

    Jul 10, 2014
    2
    0
    0
    #227 xc1, Jul 10, 2014
    Last edited by a moderator: Apr 20, 2017
    Anyway to run third party application at startup? With windows 8, I was able to do so by modifying below registry but it seems it's no longer functioning.

    Code:
    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies
    Is there a alternative to run application before metro UI with admin privileges?
     
  8. mabaega

    mabaega MDL Senior Member

    Dec 30, 2010
    291
    181
    10
    #228 mabaega, Jul 10, 2014
    Last edited by a moderator: Apr 20, 2017
    for startup
    Code:
    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run
     
  9. xc1

    xc1 MDL Novice

    Jul 10, 2014
    2
    0
    0
    #229 xc1, Jul 10, 2014
    Last edited by a moderator: Apr 20, 2017

    Hmm. it seems it didn't work. I used same string name & value as my old one.
    Code:
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run] "Shell"-"C:\\Myfile.exe"
    my old:
    Code:
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System] "Shell"-"C:\\Myfile.exe"
     
  10. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,092
    24,400
    340
    #230 s1ave77, Jul 10, 2014
    Last edited by a moderator: Apr 20, 2017
    Code:
    Windows Registry Editor Version 5.00
    
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run] 
    "AnyNameHere"="C:\\Myfile.exe"
    Add via CMD:

    Code:
    REG ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Run /v AnyNameHere /t REG_SZ /d "%systemdrive%\Myfile.exe" /f
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  11. Dos_Probie

    Dos_Probie MDL Member

    Jul 18, 2012
    249
    86
    10
    #231 Dos_Probie, Jul 11, 2014
    Last edited: Jul 11, 2014
    removed, see below
     
  12. rk_bakshi

    rk_bakshi MDL Novice

    Oct 8, 2009
    12
    0
    0
    Windows registry is full of useful, powerful tweaks. Wonder why world considers it registry hell. :mad:
     
  13. Shenj

    Shenj MDL Expert

    Aug 12, 2010
    1,554
    654
    60
    #234 Shenj, Jul 15, 2014
    Last edited: Jul 15, 2014
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  14. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,461
    92,547
    340
    #235 abbodi1406, Jul 15, 2014
    Last edited by a moderator: Apr 20, 2017
    This will restart the process without the need for manual start :D
    Code:
    TSKILL EXPLORER
     
  15. sunilk

    sunilk MDL Member

    May 15, 2014
    111
    16
    10
    great tips for the task
     
  16. ssszenith

    ssszenith MDL Novice

    Jan 23, 2011
    38
    2
    0
    my kind of tweak :p
     
  17. monkeylove

    monkeylove MDL Member

    Dec 8, 2013
    110
    26
    10
    Is there a way to make the background color of the main and tree windows of the file explorer grey? I tried one tweak, and it works for other applications but not for file explorer.Also, whenever I wake the PC from hibernate, the machine makes a new theme and removes the grey background, so I have to reload the saved theme.
     
  18. RickSteele

    RickSteele MDL Addicted

    Nov 12, 2009
    833
    483
    30
    #239 RickSteele, Oct 21, 2014
    Last edited by a moderator: Apr 20, 2017
    If anyone anywhere has been able to prevent that F*****g hybernation from completely and totally loading during setup (and I don't mean post install or at first Logon) Windows 8.1 Update 1 could you pretty please :wallbash: post it here. I cannot find the hybernation disable entry for autounattend in the Windows 8.1 Update 1 ADK help file. I looked for it because the usual entry we used in Windows 7 does not work anymore; and any facsimile thereof. There are no topics for hybernation, hybernate, hyberfil which translates to nothing for hybernation management in unattend. There is the new feature Fast Start which if disabled is supposed to also prevent hyberfil.sys from loading at all. It disables Fast Start and prevents the feature from being written to HDD/SSD during setup, but, Hybernation files are still written in all their glory to your nice SSD at first logon. I have searched until my one brain cell is numb-googla' is not my friend. :mad:
    I have merged the following reg entries to my mounted install wim and the "feature" in the boot wim's is disabled.

    Code:
    Windows Registry Editor Version 5.00
    
    ; DISABLEHIBERBOOT
    [HKEY_LOCAL_MACHINE\WIM_System\ControlSet001\Control\Session Manager\Power]
    "HiberbootEnabled"=dword:00000000
    
    ; DISABLE HIBERNATION
    [HKEY_LOCAL_MACHINE\WIM_System\ControlSet001\Control\Power]
    "HibernateEnabled"=dword:00000000
    
    I just cannot figure out why and how setup manages to change the
    Code:
    [HKEY_LOCAL_MACHINE\WIM_System\ControlSet001\Control\Power]
    "HibernateEnabled"=dword:00000000
    to
    Code:
    [HKEY_LOCAL_MACHINE\WIM_System\ControlSet001\Control\Power]
    "HibernateEnabled"=dword:00000001
    Setup does not change any of the other services entries I have modified offline-not even Fast Start; just HibernateEnabled. So, it must be a script or something M$ has decided to throw in just so they can help SSD manufacturers out in selling more SSD's as they in their all encompassing thoughtfulness add to flash cell degeneration by using up all those don't need it anyways write cycles. F*****g P****s.
    Thanks
     
  19. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,615
    210
    #240 MSMG, Oct 21, 2014
    Last edited by a moderator: Apr 20, 2017
    (OP)
    I use this two lines code to disable Hibernate feature in the windows setup oobe.cmd/setupcomplete.cmd file to automate the process

    Code:
    powercfg -h off 
    powercfg /hibernate off