-
Notifications
You must be signed in to change notification settings - Fork 0
win general
This page addresses mainly Windows 10
-
UUIDs for mounted drives: execute the
mountvol
command (after the help message all drives will be shown) -
Start menu entries
- ALL Users:
C:\ProgramData\Microsoft\Windows\Start Menu
- Current User:
%appdata%\Microsoft\Windows\Start Menu
- ALL Users:
- Location of Windows native icons (see here)
This is probably the most annoying Windows feature in existence. You move a window and accidentally all other windows get minimised. Afterwards you see yourself shaking windows for a few minutes (you want your windows back "unminimised" and in their previous position) since this feature almost never works when it is deliberately wanted.
You can change this by
- local group policy or
- Windows registry
- Open
Edit Group Policy
- In the tree view go to:
User Configuration
>Administrative Templates
>Desktop
-
Enable
Turn off Aero Shake window minimizing mouse gesture
Import the following (DWORD 32-bit
) to your registry:
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"DisallowShaking"=dword:00000001
- Open
regedit.exe
- Go to
Computer\HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced
- In
Advanced
add a new entry (DWORD (32-bit) Value
)- Named
ShowSecondsInSystemClock
- Value:
1
- Named
- Sign out and sign back in again
If you have Chocolatey installed just type RefreshEnv
(NOT choco RefreshEnv
).
PS > $env:Path
PS > $env:Path = "<string containing the PATH variables>"
# Append to env variable
PS > $env:TEAMS = $env:TEAMS + "<new path>"
Assigning an empty string deletes it.
PS > $env:Path = ''
> net use
New connections will be remembered.
Status Local Remote Network
-------------------------------------------------------------------------------
E: \\vboxsrv\Desktop VirtualBox Shared Folders
H: \\vboxsrv\share VirtualBox Shared Folders
OK \\server\mynet Microsoft Windows Network
The command completed successfully.
> net use K: \\myserver\path\to\network\share /USER:<DOMAIN>\<USR>
# ^^---- mount point
If the following error occurs:
System error 1219 has occurred.
Multiple connections to a server or shared resource by the same user, using more
than one user name, are not allowed. Disconnect all previous connections to the
server or shared resource and try again.
delete the connection via net use /DELETE \\myserver\path\to\network\share
.
This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License *.
Code (snippets) are licensed under a MIT License *.
* Unless stated otherwise