Windows 10 Tweaks & Fixes

Discussion in 'Windows 10' started by Zardoc, Jul 17, 2015.

  1. Zardoc

    Zardoc MDL Addicted

    Feb 7, 2008
    590
    276
    30
    Nope. :tasty:
     
  2. TairikuOkami

    TairikuOkami MDL Expert

    Mar 15, 2014
    1,258
    1,159
    60
    Then I guess, that you have an error somewhere, because it does not, but the one on howtogeek does.

    hxxp://s15.postimg.org/e4cxsp96j/capture_07202015_173351.jpg
     
  3. mtrai

    mtrai MDL Addicted

    Apr 24, 2008
    700
    257
    30
    #223 mtrai, Jul 20, 2015
    Last edited: Jul 20, 2015
    Do not remember seeing this posted but here is where edge stores favorite:

    C:\Users\ "user"\AppData\Local\Packages\Microsoft.MicrosoftEdge_8wekyb3d8bbwe\AC\MicrosoftEdge\User\Default\Favorite

    Where "user" is your user name minus the space at "user"

    Also Microsoft.MicrosoftEdge_8wekyb3d8bbwe might be a different string at the end.

    /edit forgot a forward slash...fixed
     
  4. Zardoc

    Zardoc MDL Addicted

    Feb 7, 2008
    590
    276
    30

    try it again. I must of missed part of my code. :rolleyes:
     
  5. xomniversex

    xomniversex MDL Member

    Sep 20, 2012
    222
    97
    10
  6. wasd123

    wasd123 MDL Novice

    Jul 20, 2015
    29
    11
    0
    I am the only one getting again the folders crap in This PC after every update? o_O
     
  7. Mrox2

    Mrox2 MDL Senior Member

    Jul 25, 2014
    273
    39
    10
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  8. drakulaboy

    drakulaboy MDL Novice

    Jul 17, 2015
    25
    16
    0
    #229 drakulaboy, Jul 20, 2015
    Last edited by a moderator: Apr 20, 2017
    not much wow, but i like this tweak, CMD text is green) feel like a hacker :biggrin:

    Code:
    Windows Registry Editor Version 5.00
    
    [HKEY_CURRENT_USER\Software\Microsoft\Command Processor]
    "DefaultColor"=dword:0000000a
     
  9. Zardoc

    Zardoc MDL Addicted

    Feb 7, 2008
    590
    276
    30
    #230 Zardoc, Jul 20, 2015
    Last edited: Jul 20, 2015
    (OP)
    Just a note to you'all that some security updates may reset certain tweaks to default like hide PC folders. :tasty:
     
  10. EFA11

    EFA11 Avatar Guru

    Oct 7, 2010
    8,710
    6,739
    270
    yes the GIANT MS SUCK has descended upon on us from WUworld
     
  11. Mr Jinje

    Mr Jinje MDL Expert

    Aug 19, 2009
    1,769
    1,106
    60
    Not if you use DSC to push the setting every 30 minutes. Think of "Desired State Configuration" like a powershell script that behaves as a domain free group policy.
     
  12. Zardoc

    Zardoc MDL Addicted

    Feb 7, 2008
    590
    276
    30
    Yep you're right but not every peep knows how to uses Windows PowerShell Desired State Configuration. BTW, got a shell command? :tasty:[h=1][/h]
     
  13. dhjohns

    dhjohns MDL Guru

    Sep 5, 2013
    3,262
    1,733
    120
    LOL, you have to run registry tweak after each update.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  14. TairikuOkami

    TairikuOkami MDL Expert

    Mar 15, 2014
    1,258
    1,159
    60
    #235 TairikuOkami, Jul 20, 2015
    Last edited: Jul 20, 2015
    I run my reg file every time I turn off my computer, for security reasons as well, to remove run entries, possible infections.

    hxxp://pastebin.com/m26z309a

     
  15. Zardoc

    Zardoc MDL Addicted

    Feb 7, 2008
    590
    276
    30
    #236 Zardoc, Jul 20, 2015
    Last edited by a moderator: Apr 20, 2017
    (OP)
    Wow nice reg file. :tasty:

    I haven't seen this one in a while.
    Code:
    "AutoEndTasks"="1"
    "HungAppTimeout"="1000"
    "LockScreenAutoLockActive"="0"
    "MenuShowDelay"="0"
    "ScreenSaveActive"="1"
    "ScreenSaverIsSecure"="0"
    "ScreenSaveTimeOut"="250"
    "SCRNSAVE.EXE"="C:\\Windows\\system32\\Mystify.scr"
    "TileWallpaper"="0"
    "WaitToKillAppTimeout"="1000"
    "WaitToKillServiceTimeout"="1000"
    "Wallpaper"="D:\\Software\\Temp\\Pics\\Wallpaper.jpg"
    "WallpaperStyle"="2"
    
    
     
  16. Mr Jinje

    Mr Jinje MDL Expert

    Aug 19, 2009
    1,769
    1,106
    60
    #237 Mr Jinje, Jul 20, 2015
    Last edited by a moderator: Apr 20, 2017
    Naw, just run a script like this once in powershell, it will re-run itself under the System account every 30 minutes or so --- or whatever the new default timeout is in W10 DSC.

     
  17. Zardoc

    Zardoc MDL Addicted

    Feb 7, 2008
    590
    276
    30
    #238 Zardoc, Jul 20, 2015
    Last edited by a moderator: Apr 20, 2017
    (OP)
    Clear event viewer. You can run as .Bat :tasty:
    Code:
    @echo off
    FOR /F "tokens=1,2*" %%V IN ('bcdedit') DO SET adminTest=%%V
    IF (%adminTest%)==(Access) goto noAdmin
    for /F "tokens=*" %%G in ('wevtutil.exe el') DO (call :do_clear "%%G")
    echo.
    echo goto theEnd
    :do_clear
    echo clearing %1
    wevtutil.exe cl %1
    goto :eof
    :noAdmin
    exit
     
  18. Zardoc

    Zardoc MDL Addicted

    Feb 7, 2008
    590
    276
    30
    Man, I'm no Jeffrey Snover. I'm old school reg commands. I need to understand the ins and outs of PowerShell. :tasty:
     
  19. Mr Jinje

    Mr Jinje MDL Expert

    Aug 19, 2009
    1,769
    1,106
    60