Zobrazují se příspěvky se štítkemWIN. Zobrazit všechny příspěvky
Zobrazují se příspěvky se štítkemWIN. Zobrazit všechny příspěvky
11. 11. 2019
4. 9. 2019
21. 3. 2018
16. 2. 2018
30. 1. 2018
13. 11. 2017
3. 11. 2017
How to remove OneDrive (or others) from File Explorer on Windows 10
OneDrive
HKEY_CLASSES_ROOT\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}
System.IsPinnedToNameSpaceTree
Change the DWORD value from 1 to 0
How to remove OneDrive from File Explorer on Windows 10 | Windows Central
... or other Folders
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace
3D Objects
{0DB7E03F-FC29-4DC6-9020-FF41B59E513A}
Desktop
{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}
Documents
{A8CDFF1C-4878-43be-B5FD-F8091C1C60D0}
{d3162b92-9365-467a-956b-92703aca08af}
Downloads
{374DE290-123F-4565-9164-39C4925E467B}
{088e3905-0323-4b02-9826-5d99428e115f}
Music
{1CF1260C-4DD0-4ebb-811F-33C572699FDE}
{3dfdf296-dbec-4fb4-81d1-6a3438bcf4de}
Pictures
{3ADD1653-EB32-4cb0-BBD7-DFA0ABB5ACCA}
{24ad3ad4-a569-4530-98e1-ab02f9417aa8}
Videos
{A0953C92-50DC-43bf-BE83-3742FED03C9C}
{f86fa3ab-70d2-4fc7-9c99-fcbf05467f3a}
If you are running a 64-bit Windows version, repeat the same under this key:
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace
https://winaero.com/blog/remove-3d-objects-this-pc/
30. 10. 2017
Dočasný profil je načten po přihlášení k systému
Remove a Corrupted User Profile from the Registry
C:\users\TEMP
K tomuto problému dochází, pokud profil aktuálního uživatele byl omylem odstraněn ze systému.
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList
... remove old key
13. 10. 2017
Jak automaticky aktivovat klávesu Num Lock při startu Windows
Registry
HKEY_USERS\.DEFAULT\Control Panel\Keyboard
a změňte hodnotu řetězce InitialKeyboardIndicators
na 2 (pro Windows 7) nebo 80000002 (pro Windows 8 a Windows 10).
Někdy může původní řetězec nabývat hodnoty 2147483648
V tom případě změňte na 2147483650
HKEY_USERS\.DEFAULT\Control Panel\Keyboard
a změňte hodnotu řetězce InitialKeyboardIndicators
na 2 (pro Windows 7) nebo 80000002 (pro Windows 8 a Windows 10).
Někdy může původní řetězec nabývat hodnoty 2147483648
V tom případě změňte na 2147483650
UAC is off but still get warnings - WIN 10
Enter GPedit.msc
in Start Search to run Local Group Policy
editor.
Navigate
to the following tree branch:
Computer Configuration -> Windows
Settings -> Security Settings -> Local Policies -> Security Options
Locate
the following policy in the right pane:
User Account Control: Behavior of the
elevation prompt for administrators in Admin Approval Mode
Set its value to Elevate without prompt
Locate
the following policy in the right pane:
User Account Control: Detect
application installations and prompt for elevation
Set its value to Disabled
Locate
the following policy in the right pane:
User Account Control: Run all
administrators in Admin Approval Mode
Set its value to Disabled
Locate
the following policy in the right pane:
User Account Control: Only elevate
UIAccess applications that are installed in secure locations
Set its value to Disabled
14. 9. 2017
23. 3. 2017
Can you change windows update settings via command line?
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\AUOptions
- Don't check
- Check but don't download
- Download but don't install
- Download and install
... anebo:
18. 7. 2016
Add "My computer" icon on desktop
Make .bat file:
reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel /v {20D04FE0-3AEA-1069-A2D8-08002B30309D} /t REG_DWORD /d 0 /f
... run as user ... logoff and logon ...
20. 8. 2015
12. 1. 2015
Turn off hibernation - Remove old service pack files
Turn off hibernation on desktop PCs:
powercfg -h off
Remove old service pack files:
DISM /online /Cleanup-Image /SpSuperseded
4. 11. 2014
Take a screen shot from command line in Windows
Take a screen shot from command line in Windows
MiniCap is a minimal screenshot capture app intended to be invoked from the commandline
Take a screenshot of a remote computer with psexec and nircmd
NirCMD
MiniCap is a minimal screenshot capture app intended to be invoked from the commandline
Take a screenshot of a remote computer with psexec and nircmd
NirCMD
14. 10. 2014
Jak používat Chocolatey, pomocníka pro instalaci aplikací
Jak používat Chocolatey, pomocníka pro instalaci aplikací | PC World.cz
Chocolatey install
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin
Uninstalling Chocolatey
Should you decide you don't like Chocolatey, you can uninstall it simply by removing the folder (and the environment variable(s) that it creates). Since it is not actually installed on your system, you don't have to worry that it cluttered up your registry (the applications that you installed with Chocolatey or manually, now that's a different story).
Folder: C:\ProgramData\chocolatey
choco install Firefox - install Firefox
choco install javaruntime - install Java Runtime (JRE) 7.0.71
choco install flashplayeractivex
choco install flashplayerplugin
choco list -localonly - lists all packages chocolatey has installed on your local system
Chocolatey Update (cup)
chocolatey update packageName or shortcut with cup packageName
Update all packages to the latest version with cup all
chocolatey update - updates chocolatey to the latest version
Multiple installs
choco install pkg1 pkg2 pkgN
Uninstalls a package
chocolatey uninstall packageName or shortcut with cuninst packageName
Chocolatey install
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin
Uninstalling Chocolatey
Should you decide you don't like Chocolatey, you can uninstall it simply by removing the folder (and the environment variable(s) that it creates). Since it is not actually installed on your system, you don't have to worry that it cluttered up your registry (the applications that you installed with Chocolatey or manually, now that's a different story).
Folder: C:\ProgramData\chocolatey
choco install Firefox - install Firefox
choco install javaruntime - install Java Runtime (JRE) 7.0.71
choco install flashplayeractivex
choco install flashplayerplugin
choco list -localonly - lists all packages chocolatey has installed on your local system
Chocolatey Update (cup)
chocolatey update packageName or shortcut with cup packageName
Update all packages to the latest version with cup all
chocolatey update - updates chocolatey to the latest version
Multiple installs
choco install pkg1 pkg2 pkgN
Uninstalls a package
chocolatey uninstall packageName or shortcut with cuninst packageName
25. 6. 2014
How can I remove old network connections?
Specifically looking in this registry key,
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Network\{4D36E972-E325-11CE-BFC1-08002BE10318}
You can delete the subkeys of old devices and rename your current ones to whatever you want.
LAN LAN2 LAN14
http://forums.techguy.org/networking/459097-remove-old-network-adapters-os.html
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Network\{4D36E972-E325-11CE-BFC1-08002BE10318}
You can delete the subkeys of old devices and rename your current ones to whatever you want.
LAN LAN2 LAN14
http://forums.techguy.org/networking/459097-remove-old-network-adapters-os.html
5. 2. 2014
Windows 8 update to 8.1 - admin permission problem
Brand new Windows 8 workstation - with 100% of the updates installed and rebooted.
Spent hours enabling the local admin account, creating other profiles.. running windows updates.
Finally it shows up in the store - but I can't seem to download it.
The store shows up with the 8.1 upgrade - but displays the error that you have to be an administrator to install.
I uninstalled the KB2871389 then I downloaded it manually and manually installed it.
After rebooting I was able to get the 8.1 to download and install it.
LINK
Spent hours enabling the local admin account, creating other profiles.. running windows updates.
Finally it shows up in the store - but I can't seem to download it.
The store shows up with the 8.1 upgrade - but displays the error that you have to be an administrator to install.
I uninstalled the KB2871389 then I downloaded it manually and manually installed it.
After rebooting I was able to get the 8.1 to download and install it.
LINK
Přihlásit se k odběru:
Příspěvky (Atom)



