[Solved] Is there an easy way to get "My Computer" and "Network" displayed?

Discussion in 'Windows 10' started by Earthnet, Apr 30, 2018.

  1. Earthnet

    Earthnet MDL Novice

    Joined:
    Apr 25, 2018
    Messages:
    48
    Likes Received:
    14
    Trophy Points:
    0
    When I boot up a Windows 10 Pro system, I always have to dig to make it look like Windows 7. :(

    Is there a program/script that can populate the desktop with shortcuts like:

    My Computer
    Network Neighborhood
    Control Panel

    And many others? I'm tired of fishing for them manually...

    Thanks!

    :)
     
  2. MELERIX

    MELERIX MDL Expert

    Joined:
    Nov 7, 2011
    Messages:
    1,163
    Likes Received:
    614
    Trophy Points:
    60
  3. dhjohns

    dhjohns MDL Guru

    Joined:
    Sep 5, 2013
    Messages:
    3,275
    Likes Received:
    1,735
    Trophy Points:
    120
  4. TairikuOkami

    TairikuOkami MDL Expert

    Joined:
    Mar 15, 2014
    Messages:
    1,057
    Likes Received:
    926
    Trophy Points:
    60
    Code:
    rem Control Panel
    reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel" /v "{5399E694-6CE5-4D6C-8FCE-1D8870FDCBA0}" /t REG_DWORD /d "0" /f
    
    rem Network
    reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel" /v "{F02C1A0D-BE21-4350-88B0-7367FC96EF3C}" /t REG_DWORD /d "0" /f
    
    rem Recycle Bin
    reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel" /v "{645FF040-5081-101B-9F08-00AA002F954E}" /t REG_DWORD /d "0" /f
    
    rem This PC
    reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel" /v "{20D04FE0-3AEA-1069-A2D8-08002B30309D}" /t REG_DWORD /d "0" /f
    
    rem User's Files
    reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel" /v "{59031a47-3f72-44a7-89c5-5595fe6b30ee}" /t REG_DWORD /d "0" /f
    
    taskkill /im explorer.exe /f & explorer.exe
    
     
  5. Earthnet

    Earthnet MDL Novice

    Joined:
    Apr 25, 2018
    Messages:
    48
    Likes Received:
    14
    Trophy Points:
    0
    Hi TairikuOkami -

    Nice script. Exactly what I needed, thanks!

    :)