Windows 10 Tweaks & Fixes

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

  1. oediv

    oediv MDL Junior Member

    Feb 1, 2013
    63
    8
    0
    hei guys,

    is there a way to create this "show desktop" button in the bottom right corner of the screen/taskbar like in windows 7/8

    thanks
     
  2. aliennumberseven

    aliennumberseven MDL Novice

    Nov 12, 2012
    17
    1
    0
    Windows 10 has the "show desktop" button in the bottom right corner. I am using windows 10 pro.
     
  3. fredpsycho83

    fredpsycho83 MDL Junior Member

    Feb 4, 2008
    60
    56
    0
    #603 fredpsycho83, Aug 3, 2015
    Last edited by a moderator: Apr 20, 2017
    exactly, extreme right of the bar.

    but for the icon, the link was this in 7 and 8, not tested on 10 but you can try

    Code:
    %windir%\explorer.exe shell:::{3080F90D-D7AD-11D9-BD98-0000947B0257}
    EDIT : just tested, it works. Create a shorcut with this link and it does the job
     
  4. YnGWiE27

    YnGWiE27 MDL Novice

    Mar 1, 2013
    8
    0
    0
    help

    please someone can help:
    post number #582

    question number 2: how i can add sidebar gadgets? (i found a dir about here: C:\Users\(User Name)\AppData\Local\Microsoft\Windows Sidebar)


    Thank you so much to everyone who want help me!
     
  5. YnGWiE27

    YnGWiE27 MDL Novice

    Mar 1, 2013
    8
    0
    0
    so i need third-party software. Thanks dude!
     
  6. T-S

    T-S MDL Guru

    Dec 14, 2012
    3,984
    1,331
    120
    #607 T-S, Aug 3, 2015
    Last edited by a moderator: Apr 20, 2017
    The link is already present in w10 just like in the previous windows, it is in the quicklaunch folder. Just enable quicklaunch or open the folder and copy the link somewhere else.
     
  7. T-S

    T-S MDL Guru

    Dec 14, 2012
    3,984
    1,331
    120
    You can use the files taken from vista, but 7sidebar is way easier to install
     
  8. fredpsycho83

    fredpsycho83 MDL Junior Member

    Feb 4, 2008
    60
    56
    0
    #609 fredpsycho83, Aug 3, 2015
    Last edited: Aug 3, 2015
    ... or just use the extreme right of the taskbar ...
     
  9. YnGWiE27

    YnGWiE27 MDL Novice

    Mar 1, 2013
    8
    0
    0
    another question

    sorry guys, i've another question.

    I'm on win10 pro x64 but i've problems with jump list. I can pin only 13 links.
    Appunti01.jpg

    Option from task and menu properties like win7 is disappeared
    Appunti02.jpg

    I found a solution on web for increase the number from the regedit:

    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced

    value dword32bit "Start_JumpListItems" and add a number between 0 to 60

    but it doesn't works. Damn, is it a win10 bug or what?
     
  10. Dubioza Kolektiv

    Dubioza Kolektiv MDL Addicted

    Dec 27, 2012
    870
    1,470
    30
    Can i uninstall cortana?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  11. compgen_1534

    compgen_1534 MDL Addicted

    Jul 26, 2015
    510
    279
    30
    Have a look at TNBT thread :)
     
  12. cactusjuice92

    cactusjuice92 MDL Novice

    Apr 13, 2015
    27
    4
    0
    Use LTSB Enterprise version. You can find links in the stickied SVF Repository post.
     
  13. Yasser Da Silva

    Yasser Da Silva MDL Senior Member

    Mar 15, 2015
    499
    2,567
    30
    can i change the background color of File Explorer without installing themes (with registry maybe)
     
  14. lordashram

    lordashram MDL Novice

    Jul 27, 2015
    22
    11
    0
    #615 lordashram, Aug 4, 2015
    Last edited by a moderator: Apr 20, 2017
    Keep your tweaks and customizations after a reboot or Windows Update

    A problem I had ran into was that some of the registry tweaks would require me to re-run them either after a reboot or after a Windows Update (the all folders reappearing in Explorer is a good example). So by using Task Scheduler I can have it set to launch my bat file that reimports my registry tweaks every time I login from a reboot, or just login from a logoff. And also do it with elevated Admin privileges and without an UAC prompt.

    Create a bat file that imports your reg tweaks, eg.
    Code:
    REG import C:\PATH\TO\TWEAKS1.reg
    REG import C:\PATH\TO\TWEAKS2.reg
    Name it something like Tweaks.bat and save it somewhere,like maybe
    C:\Windows\HiddenPr0nStash
    or whatever

    Next create a new text file and insert the following into it:
    Code:
    <?xml version="1.0" encoding="UTF-16"?>
    <Task version="1.4" xmlns="h t t p :// schemas. microsoft. com / windows/2004/02/mit/task">
      <RegistrationInfo>
        <Date>2015-07-29T00:00:00.000000</Date>
        <Author>Administrator</Author>
        <URI>\WinTweaks</URI>
      </RegistrationInfo>
      <Triggers>
        <LogonTrigger>
          <Enabled>true</Enabled>
        </LogonTrigger>
      </Triggers>
      <Principals>
        <Principal id="Author">
          <LogonType>S4U</LogonType>
          <RunLevel>HighestAvailable</RunLevel>
        </Principal>
      </Principals>
      <Settings>
        <MultipleInstancesPolicy>IgnoreNew</MultipleInstancesPolicy>
        <DisallowStartIfOnBatteries>false</DisallowStartIfOnBatteries>
        <StopIfGoingOnBatteries>false</StopIfGoingOnBatteries>
        <AllowHardTerminate>true</AllowHardTerminate>
        <StartWhenAvailable>false</StartWhenAvailable>
        <RunOnlyIfNetworkAvailable>false</RunOnlyIfNetworkAvailable>
        <IdleSettings>
          <StopOnIdleEnd>true</StopOnIdleEnd>
          <RestartOnIdle>false</RestartOnIdle>
        </IdleSettings>
        <AllowStartOnDemand>true</AllowStartOnDemand>
        <Enabled>true</Enabled>
        <Hidden>false</Hidden>
        <RunOnlyIfIdle>false</RunOnlyIfIdle>
        <DisallowStartOnRemoteAppSession>false</DisallowStartOnRemoteAppSession>
        <UseUnifiedSchedulingEngine>true</UseUnifiedSchedulingEngine>
        <WakeToRun>false</WakeToRun>
        <ExecutionTimeLimit>PT72H</ExecutionTimeLimit>
        <Priority>7</Priority>
      </Settings>
      <Actions Context="Author">
        <Exec>
          <Command>C:\PATH\TO\Tweaks.bat</Command>
        </Exec>
      </Actions>
    </Task>
    Remove the spaces from
    "h t t p :// schemas. microsoft. com / windows/2004/02/mit/task">
    since I have too low a post count

    Then Change
    <Command>C:\PATH\TO\Tweaks.bat</Command>
    to point to your actual bat file that has your reg imports.

    Then save it as something.xml

    Then either fire up Task Scheduler and import it in or better yet from a command prompt:
    schtasks.exe /Create /XML "C:\PATH\TO\something.xml" /tn WhatEverYouWantToNameIt
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  15. hanzzon2

    hanzzon2 MDL Member

    Dec 1, 2007
    134
    45
    10
    Anyone have the info about what the option to disable the automatic HWID registration with Microsofts servers was?
    I know it was in one of these threads but can't find it anymore :(
     
  16. EFA11

    EFA11 Avatar Guru

    Oct 7, 2010
    8,710
    6,739
    270
    how do you plan to activate then? or activation isn't needed for you?
     
  17. oediv

    oediv MDL Junior Member

    Feb 1, 2013
    63
    8
    0
    hey guys,
    just removed some apps also the photo app
    now windows open pictures in paint, not a big problem but cant do diashow
    i just readed days ago that there is a way to enable win 7 photo viewer (you know what i mean)
    would be awesome if someone can post it how to do :)
    thanks
     
  18. hanzzon2

    hanzzon2 MDL Member

    Dec 1, 2007
    134
    45
    10
    It's just for testing, I don't want M$ to block my machines HWID just because I make allot of reinstalls...
     
  19. fredpsycho83

    fredpsycho83 MDL Junior Member

    Feb 4, 2008
    60
    56
    0
    #620 fredpsycho83, Aug 4, 2015
    Last edited by a moderator: Apr 20, 2017
    create a *.bat, execute with admin rights

    Code:
    Reg.exe add "HKCU\Software\Classes\.jpg" /ve /t REG_SZ /d "PhotoViewer.FileAssoc.Tiff" /f
    Reg.exe add "HKCU\Software\Classes\.jpeg" /ve /t REG_SZ /d "PhotoViewer.FileAssoc.Tiff" /f
    Reg.exe add "HKCU\Software\Classes\.gif" /ve /t REG_SZ /d "PhotoViewer.FileAssoc.Tiff" /f
    Reg.exe add "HKCU\Software\Classes\.png" /ve /t REG_SZ /d "PhotoViewer.FileAssoc.Tiff" /f
    Reg.exe add "HKCU\Software\Classes\.bmp" /ve /t REG_SZ /d "PhotoViewer.FileAssoc.Tiff" /f
    Reg.exe add "HKCU\Software\Classes\.tiff" /ve /t REG_SZ /d "PhotoViewer.FileAssoc.Tiff" /f
    Reg.exe add "HKCU\Software\Classes\.ico" /ve /t REG_SZ /d "PhotoViewer.FileAssoc.Tiff" /f
    Reg.exe add "HKCR\Applications\photoviewer.dll\shell\open" /v "MuiVerb" /t REG_SZ /d "@photoviewer.dll,-3043" /f
    Reg.exe add "HKCR\Applications\photoviewer.dll\shell\open\command" /ve /t REG_EXPAND_SZ /d "%%SystemRoot%%\System32\rundll32.exe \"%%ProgramFiles%%\Windows Photo Viewer\PhotoViewer.dll\", ImageView_Fullscreen %%1" /f
    Reg.exe add "HKCR\Applications\photoviewer.dll\shell\open\DropTarget" /v "Clsid" /t REG_SZ /d "{FFE2A43C-56B9-4bf5-9A79-CC6D4285608A}" /f
    Reg.exe add "HKCR\Applications\photoviewer.dll\shell\print\command" /ve /t REG_EXPAND_SZ /d "%%SystemRoot%%\System32\rundll32.exe \"%%ProgramFiles%%\Windows Photo Viewer\PhotoViewer.dll\", ImageView_Fullscreen %%1" /f 
    Reg.exe add "HKCR\Applications\photoviewer.dll\shell\print\DropTarget" /v "Clsid" /t REG_SZ /d "{60fd46de-f830-4894-a628-6fa81bc0190d}" /f