Results 1 to 25 of 105

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Cheaters Always Win wysiwyg's Avatar
    Join Date: Sep:2006
    Location: Sofia
    Posts: 3,285

    Windows 10 ( )

    , , , / ...

    Windows 10 - " Windows 10".

    Windows - 10.0.10240. Microsoft.com

    :

    : , Windows 10 , ?
    Windows 10 1 , , Windows 7/8/8.1,
    Home = Home
    Ultimate Pro = Pro
    Enterprise = Enterprise
    OEM = OEM
    Retail = Retail
    /Hidden:

    : , Windows 10 ?
    ,
    Home - $120 $100 OEM*
    Pro - $200 $140 OEM*
    *OEM ,
    /Hidden:

    : Windows 10 , Windows 7/8.x?
    , Windows 7/8.x, Windows 10 .
    /Hidden:


    :

    : Windows 10?
    : USB , DVD.

    : Windows 10?
    : 18-22GB.

    : , 7/8 10?
    30-35GB , . 5GB, Windows Windows.old, .
    /Hidden:

    : 7/8 10, % , ?
    - , Windows. , , Disk Cleanup TEMP : *:\Windows\Temp %TEMP% ... , .
    * Windows
    BAT ( , Windows C: )
    Code:
    @echo off
    
    IF EXIST c:\windows\temp\ del /f /s /q c:\windows\temp\
    
    DEL /f /s /q %temp%\
    
    IF EXIST "C:\Users\" (
        for /D %%x in ("C:\Users\*") do ( 
            rmdir /s /q "%%x\AppData\Local\Temp" 
            mkdir "%%x\AppData\Local\Temp" 
        )
    )
    
    IF EXIST "C:\Users\" (
        for /D %%x in ("C:\Users\*") do ( 
            rmdir /s /q "%%x\AppData\Local\Microsoft\Windows\Temporary Internet Files" 
            mkdir "%%x\AppData\Local\Microsoft\Windows\Temporary Internet Files" 
        )
    )
    /Hidden:

    : Windows 7/8 ( 7/8 10) , ?
    Windows. Windows 10 , .
    /Hidden:

    : Windows 10, ? ( , OEM)
    / , - Microsoft, , Windows .
    /Hidden:

    : Intel Pentium G3258 , ?
    Code:
    1.      BIOS
    2.  Advanced -> CPU Configuration -> Active CPU Cores
    3.   "1" (   "All")
    4.     Windows
    5.      *:\Windows\System32 
    6.     mcupdate_GenuineIntel.dll     OLDmcupdate_GenuineIntel.dll,   
    7.  ,   BIOS      3  "All"
    /Hidden:


    :

    : ?
    , ( Pro/Enterprise, Home, )
    Code:
    1. Run gpedit.msc
    2. Computer Configuration
    3. Administrative Templates
    4. Windows Components
    5. Windows Update
    6. Configure Automatic Updates -> Enabled
    7. Options -> "2 - Notify for download and notify for install"
    ,
    Code:
    1. Right Click on "This PC" -> Properties
    2. Click on "Advanced System Settings"
    3. Click on "Hardware"
    4. Click on "Device Installation Setting"
    5. Choose "No let me choose what to do"
    6. Choose "Never install driver software from Windows Update"
    /Hidden:

    : (Store/Application Store)?
    PowerShell
    Code:
    Get-AppxProvisionedPackage -online | Remove-AppxProvisionedPackage -online
    Get-AppxPackage -AllUsers | Remove-AppxPackage
    CMD :
    Code:
    dism /online /remove-package /packagename:Microsoft-Windows-DiagTrack-Internal-Package~31bf3856ad364e35~amd64~~10.0.10240.16384
    dism /online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.3DBuilder_2015.624.2254.0_neutral_~_8wekyb3d8bbwe 
    dism /online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.BingFinance_10004.3.193.0_neutral_~_8wekyb3d8bbwe 
    dism /online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.BingNews_10004.3.193.0_neutral_~_8wekyb3d8bbwe 
    dism /online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.Getstarted_2015.622.1108.0_neutral_~_8wekyb3d8bbwe 
    dism /online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.MicrosoftOfficeHub_2015.4218.23751.0_neutral_~_8wekyb3d8bbwe 
    dism /online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.MicrosoftSolitaireCollection_3.1.6103.0_neutral_~_8wekyb3d8bbwe 
    dism /online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.Office.OneNote_2015.4201.10091.0_neutral_~_8wekyb3d8bbwe 
    dism /online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.SkypeApp_3.2.1.0_neutral_~_kzf8qxf38zg5c 
    dism /online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.WindowsPhone_2015.620.10.0_neutral_~_8wekyb3d8bbwe 
    dism /online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.XboxApp_2015.617.130.0_neutral_~_8wekyb3d8bbwe 
    dism /online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.ZuneMusic_2019.6.10841.0_neutral_~_8wekyb3d8bbwe 
    dism /online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.ZuneVideo_2019.6.10811.0_neutral_~_8wekyb3d8bbwe
    /Hidden:

    : OneDrive?
    BAT
    Code:
    @echo off
    cls
    
    set x86="%SYSTEMROOT%\System32\OneDriveSetup .exe"
    set x64="%SYSTEMROOT%\SysWOW64\OneDriveSetup .exe"
    
    echo Closing OneDrive process.
    echo.
    taskkill /f /im OneDrive.exe > NUL 2>&1
    ping 127.0.0.1 -n 5 > NUL 2>&1
    
    echo Uninstalling OneDrive.
    echo.
    if exist %x64% (
    %x64% /uninstall
    ) else (
    %x86% /uninstall
    )
    ping 127.0.0.1 -n 5 > NUL 2>&1
    
    echo Removing OneDrive leftovers.
    echo.
    rd "%USERPROFILE%\OneDrive" /Q /S > NUL 2>&1
    rd "C:\OneDriveTemp" /Q /S > NUL 2>&1
    rd "%LOCALAPPDATA%\Microsoft\OneDrive" /Q /S > NUL 2>&1
    rd "%PROGRAMDATA%\Microsoft OneDrive" /Q /S > NUL 2>&1
    
    echo Removing OneDrive from the Explorer Side Panel.
    echo.
    REG DELETE "HKEY_CLASSES_ROOT\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /f > NUL 2>&1
    REG DELETE "HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{01 8D5C66-4533-4307-9B53-224DE2ED1FE6}" /f > NUL 2>&1
    
    pause
    /Hidden:

    : / (Logging)?
    BAT
    Code:
    sc config DiagTrack start= disabled
    sc config diagnosticshub.standardcollector.service start= disabled
    sc config dmwappushservice start= disabled
    sc config RemoteRegistry start= disabled
    sc config TrkWks start= disabled
    sc config WMPNetworkSvc start= disabled
    /Hidden:

    : Lock ?
    REG
    Code:
    Windows Registry Editor Version 5.00 
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Personalization] 
    "NoLockScreen"=dword:00000001
    /Hidden:

    : Windows (login) ?
    Code:
    1.  WinButton + R
    2.  "control userpasswords2"   OK
    3.     Advanced User Accounts
    4.    Users must enter a user name and password to use this computer   OK
    5.     .       ( )   OK
    6.   ,       
    /Hidden:

    : Cortana, ?
    REG
    Code:
    Windows Registry Editor Version 5.00
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Windows Search]
    "AllowCortana"=dword:00000000
    /Hidden:

    : (Pictures/Videos/Music) File Explorer?
    REG , ,
    Code:
    Windows Registry Editor Version 5.00
    
    ; Remove Desktop From This PC
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}]
    ; Remove Documents From This PC
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{A8CDFF1C-4878-43be-B5FD-F8091C1C60D0}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{d3162b92-9365-467a-956b-92703aca08af}]
    ; Remove Downloads From This PC
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{374DE290-123F-4565-9164-39C4925E467B}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{088e3905-0323-4b02-9826-5d99428e115f}]
    ; Remove Music From This PC
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{1CF1260C-4DD0-4ebb-811F-33C572699FDE}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{3dfdf296-dbec-4fb4-81d1-6a3438bcf4de}]
    ; Remove Pictures From This PC
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{3ADD1653-EB32-4cb0-BBD7-DFA0ABB5ACCA}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{24ad3ad4-a569-4530-98e1-ab02f9417aa8}]
    ; Remove Videos From This PC
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{A0953C92-50DC-43bf-BE83-3742FED03C9C}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{f86fa3ab-70d2-4fc7-9c99-fcbf05467f3a}]
    /Hidden:


    : 7/8 10 - , ?
    , Windows 10 Windows ( Windows.old). :
    Code:
    1.  Disk Cleanup
    2.      
    3.  Cleanup System Files
    4.       
    5.      ,       OK
    ! Windows.old, Windows- Windows 10! , .
    7/8 Windows.old, 10, 10 7/8 , Windows.old.
    /Hidden:


    Windows 10
    Code:
    Windows -  Start Menu
    Windows + Tab -  Task View
    Windows + Q -     Windows  Cortana ( )
    Windows + S -     Windows  Cortana ( )
    Windows + I  -  Settings
    Windows + A -  Notifications
    Windows + L -  Windows 10
    Windows + Ctrl + D -     
    Windows + Ctrl + F4 -       
    Windows + Ctrl + [Left][Right] -     
    Windows + [Left][Right][Up][Down] -     
    Windows + H -  ,       ,    
    Windows + K -       
    Windows + X -     Start  (       Start )
    Windows + G -  Game Bar,                
    Windows + D -    
    Windows + E -  File Explorer ( Windows Explorer)
    Windows + Space -     (    )
    Windows + Shift + [Left][Right] -         (    2  )
    Windows + [1][2][3][] -  ,   "" (pinned)  task 
    Windows + R -  
    Windows + P - Project a screen
    Alt + Tab -    
    Alt + Space Restore, move, size, minimize, maximize or close current window. Also works like a charm for Windows 10 modern apps.
    Alt + F4 - a)    / b)    desktop,    /  
    /Hidden:


    , , .

    , , , .
    Last edited by wysiwyg; 5th August 2015 at 01:21.

  2. #2
    Registered User mihail0067's Avatar
    Join Date: Aug:2009
    Location: Troyan
    Posts: 1,110
    ... 10 ?
    ?
    AMD Athlon II X2 240, Asus M2N68-AM SE2 NVIDIA nForce Networking Controller TP-LINK Wireless USB Adapter 722N ... ?

  3. #3
    ;) DoC's Avatar
    Join Date: Dec:2006
    Location: zhe internetz
    Posts: 12,749
    Quote Originally Posted by wysiwyg View Post
    : , Windows 10 , ?
    : Windows 10 1 , , Windows 7/8/8.1,
    Home = Home
    Ultimate Pro = Pro
    Enterprice = Enterprice
    . 1 (.. ) . Enterprise
    Last edited by DoC; 1st August 2015 at 10:26.
    .

    #makeHWBGgreatagain

  4. #4
    Registered User
    Join Date: Apr:2015
    Location: Bulgaria
    Posts: 179
    ,gpedit Home/Core Windows 10.

  5. #5
    -==-
    Join Date: Sep:2003
    Location:
    Posts: 6,444
    He who asks is a fool for five minutes, but he who does not ask reamins a fool forever. Old Chinese saying
    Quote Originally Posted by worm4 View Post
    a .

  6. #6
    Registered User Old_Firehand's Avatar
    Join Date: Nov:2002
    Location:
    Posts: 1,104
    7, 10 ?

  7. #7
    ;) DoC's Avatar
    Join Date: Dec:2006
    Location: zhe internetz
    Posts: 12,749
    Quote Originally Posted by Old_Firehand View Post
    7, 10 ?
    , . hwid .
    .

    #makeHWBGgreatagain

  8. #8
    Registered User
    Join Date: Jul:2001
    Location:
    Posts: 1,711
    Lenovo G580, Win8,
    8.1 82% Win8.

    Win10, 8.1. ( ).

    Win10 Pro ISO,
    Win10
    Win8?
    Hakuna matata

  9. #9
    Registered User kolumb's Avatar
    Join Date: Aug:2006
    Location: Burgas
    Posts: 1,582
    Windows 10 - .

    :

    . "" - paste- CMD Administrator:
    Code:
    dism /online /remove-package /packagename:Microsoft-Windows-DiagTrack-Internal-Package~31bf3856ad364e35~amd64~~10.0.10240.16384
    
    dism /online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.3DBuilder_2015.624.2254.0_neutral_~_8wekyb3d8bbwe 
    dism /online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.BingFinance_10004.3.193.0_neutral_~_8wekyb3d8bbwe 
    dism /online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.BingNews_10004.3.193.0_neutral_~_8wekyb3d8bbwe 
    dism /online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.Getstarted_2015.622.1108.0_neutral_~_8wekyb3d8bbwe 
    dism /online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.MicrosoftOfficeHub_2015.4218.23751.0_neutral_~_8wekyb3d8bbwe 
    dism /online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.MicrosoftSolitaireCollection_3.1.6103.0_neutral_~_8wekyb3d8bbwe 
    dism /online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.Office.OneNote_2015.4201.10091.0_neutral_~_8wekyb3d8bbwe 
    dism /online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.SkypeApp_3.2.1.0_neutral_~_kzf8qxf38zg5c 
    dism /online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.WindowsPhone_2015.620.10.0_neutral_~_8wekyb3d8bbwe 
    dism /online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.XboxApp_2015.617.130.0_neutral_~_8wekyb3d8bbwe 
    dism /online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.ZuneMusic_2019.6.10841.0_neutral_~_8wekyb3d8bbwe 
    dism /online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.ZuneVideo_2019.6.10811.0_neutral_~_8wekyb3d8bbwe
    . Lock Screen - , .REG :
    Code:
    Windows Registry Editor Version 5.00 
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Personalization] 
    "NoLockScreen"=dword:00000001
    . Cortana, :
    Code:
    Windows Registry Editor Version 5.00
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Windows Search]
    "AllowCortana"=dword:00000000
    . "This PC" Windows Explorer:

    Code:
    Windows Registry Editor Version 5.00
    
    ; Remove Desktop From This PC
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}]
    ; Remove Documents From This PC
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{A8CDFF1C-4878-43be-B5FD-F8091C1C60D0}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{d3162b92-9365-467a-956b-92703aca08af}]
    ; Remove Downloads From This PC
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{374DE290-123F-4565-9164-39C4925E467B}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{088e3905-0323-4b02-9826-5d99428e115f}]
    ; Remove Music From This PC
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{1CF1260C-4DD0-4ebb-811F-33C572699FDE}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{3dfdf296-dbec-4fb4-81d1-6a3438bcf4de}]
    ; Remove Pictures From This PC
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{3ADD1653-EB32-4cb0-BBD7-DFA0ABB5ACCA}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{24ad3ad4-a569-4530-98e1-ab02f9417aa8}]
    ; Remove Videos From This PC
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{A0953C92-50DC-43bf-BE83-3742FED03C9C}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{f86fa3ab-70d2-4fc7-9c99-fcbf05467f3a}]
    /Hidden: x86


    Code:
    Windows Registry Editor Version 5.00
    
    ; Remove Desktop From This PC
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}]
    ; Remove Documents From This PC
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{A8CDFF1C-4878-43be-B5FD-F8091C1C60D0}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{d3162b92-9365-467a-956b-92703aca08af}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{A8CDFF1C-4878-43be-B5FD-F8091C1C60D0}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{d3162b92-9365-467a-956b-92703aca08af}]
    ; Remove Downloads From This PC
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{374DE290-123F-4565-9164-39C4925E467B}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{088e3905-0323-4b02-9826-5d99428e115f}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{374DE290-123F-4565-9164-39C4925E467B}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{088e3905-0323-4b02-9826-5d99428e115f}]
    ; Remove Music From This PC
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{1CF1260C-4DD0-4ebb-811F-33C572699FDE}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{3dfdf296-dbec-4fb4-81d1-6a3438bcf4de}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{1CF1260C-4DD0-4ebb-811F-33C572699FDE}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{3dfdf296-dbec-4fb4-81d1-6a3438bcf4de}]
    ; Remove Pictures From This PC
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{3ADD1653-EB32-4cb0-BBD7-DFA0ABB5ACCA}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{24ad3ad4-a569-4530-98e1-ab02f9417aa8}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{3ADD1653-EB32-4cb0-BBD7-DFA0ABB5ACCA}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{24ad3ad4-a569-4530-98e1-ab02f9417aa8}]
    ; Remove Videos From This PC
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{A0953C92-50DC-43bf-BE83-3742FED03C9C}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{f86fa3ab-70d2-4fc7-9c99-fcbf05467f3a}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{A0953C92-50DC-43bf-BE83-3742FED03C9C}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{f86fa3ab-70d2-4fc7-9c99-fcbf05467f3a}]
    /Hidden: x64


    (forums.mydigitallife.info), .
    Last edited by kolumb; 2nd August 2015 at 01:05.
    Desktop - Ryzen 5 5600X, Asus Prime B500-Plus, Asus Strix RX 6600XT OC, 2x16GB Crusial Ballistix DDR4-3200, Corsair MP600 500GB M2.Gen 4.0x4, SEASONIC Focus Plus SSR-650FX, Corsair Carbide 270R, HP Z24i

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

Copyright © 1999-2011 . .
iskamPC.com | mobility.BG | Bloody's Techblog | | 3D Vision Blog |