[REPO] Windows 10 Technical Preview

Discussion in 'Windows 10' started by s1ave77, Oct 6, 2014.

  1. Алексей

    Алексей MDL Novice

    Mar 17, 2015
    1
    0
    0
    Thank you for the work done.
     
  2. Smorgan

    Smorgan Glitcher

    Mar 25, 2010
    1,855
    1,051
    60
    #202 Smorgan, Apr 16, 2015
    Last edited: Apr 16, 2015
    I'd like to convert some of the registry tweaks to powershell and improve on the dism commands.

    Dism /Online /Cleanup-Image /RestoreHealth /source:wim:X:\sources\install.wim:1 /limitaccess
    Where X is the drive letter

    Change to:

    Dism /Online /Cleanup-Image /RestoreHealth /source:wim:%SystemDrive%:\sources\install.wim:1 /limitaccess

    Also I may start adding the powershell way to registry tweaks.
     
  3. arseny92

    arseny92 MDL Secret Weapon

    Sep 22, 2009
    570
    1,272
    30
    #203 arseny92, Apr 16, 2015
    Last edited by a moderator: Apr 20, 2017
    Code:
    Get-Help Repair-WindowsImage
     
  4. Smorgan

    Smorgan Glitcher

    Mar 25, 2010
    1,855
    1,051
    60
    #204 Smorgan, Apr 17, 2015
    Last edited by a moderator: Apr 20, 2017
    Also I have some customizations for the Windows Search:

    Registry method:

    Code:
    Disable the Search in the task bar:
    
    Windows Registry Editor Version 5.00
    
    [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Search]
    "EnableProactive"=dword:00000000
    "SearchboxTaskbarMode"=dword:00000000
    
    Make the search go to an icon:
    
    Windows Registry Editor Version 5.00
    
    [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Search]
    "EnableProactive"=dword:00000000
    "SearchboxTaskbarMode"=dword:00000001
    
    Make the search go to a text box:
    
    Windows Registry Editor Version 5.00
    
    [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Search]
    "EnableProactive"=dword:00000000
    "SearchboxTaskbarMode"=dword:00000001

    PowerShell way:
    Code:
    New-Item -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Search" -Force | out-null
    
    Disable Search
    New-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Search" -Name "SearchboxTaskbarMode" -Value "0" -PropertyType "DWORD" -Force | out-null
    
    Make it a Search Icon
    New-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Search" -Name "SearchboxTaskbarMode" -Value "1" -PropertyType "DWORD" -Force | out-null
    
    Make it a Search text box
    New-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Search" -Name "SearchboxTaskbarMode" -Value "2" -PropertyType "DWORD" -Force | out-null
     
  5. golephish

    golephish MDL Member

    Apr 26, 2011
    104
    7
    10
    thank you as always! time to start windows 11 thread ;p
     
  6. residentcl

    residentcl MDL Novice

    Feb 17, 2013
    43
    14
    0
    @Residentcl @Windows @DVBViewer HEVC is supported at platform level, so all apps can use in Win10. :thumbsup:
    twitter.com/GabeAul/status/595328052688592897
     
  7. Belarathon

    Belarathon MDL Senior Member

    Nov 21, 2007
    316
    37
    10
    Does anyone have a registry tweak for disabling the lock screen? The Windows 8 hack doesn't work, and the only thing that seems to work thus far is disabling with GPEDIT.msc under admin templates/control panel/personalization. My laptop is Core, so I don't have that option. TIA!
     
  8. tracit99

    tracit99 MDL Senior Member

    Oct 17, 2014
    278
    105
    10
    #208 tracit99, Jul 2, 2015
    Last edited: Jul 2, 2015
    HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Personalization

    NoLockScreen DWORD

    0 or delete = enable
    1 = disable

    You may have to create the Personalization key and the NoLockScreen dword in regedit yourself. You may have to restart for it to be disabled. This is what you will see in the registry if you use gpedit to disable the lock screen. Some people have reported this tweak not working in some W10 builds.
     
  9. EFA11

    EFA11 Avatar Guru

    Oct 7, 2010
    8,719
    6,741
    270
    lol MS said Windows 10 is the last windows. We shall see :D
     
  10. Belarathon

    Belarathon MDL Senior Member

    Nov 21, 2007
    316
    37
    10
    Thanks...I'll give it another try. I looked in the registry after using gpedit to see what was generated, but could find nothing.
     
  11. Tito

    Tito Super Mod / Adviser
    Staff Member

    Nov 30, 2009
    18,682
    18,582
    340
    @s1ave77

    Any chance of getting update? Otherwise this thread should be demoted.

    :D
     
  12. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,104
    24,378
    340
    Can be suspended. Atm i would prefer to not handle this :eek:. Enough projects to maintain.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  13. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,104
    24,378
    340
    Hopefully there will be others taking over some work here ... a REPO would still be handy as soon as GA goes by :good3:.

    SO THIS IS DOGGIE CALLING TO ARMS!
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  14. Tito

    Tito Super Mod / Adviser
    Staff Member

    Nov 30, 2009
    18,682
    18,582
    340
    Unstuck!