Is there any way to change behavior of middle-mouse button pressed on programs in task bar? As default it opens another instance of application. I would like to close program instead.
I need to disable some option from File Explorer. Anyone knows if there are tweaks for that? Thanks in advance
I know this is a reg tweak post, but i get around deleting shortcuts like those by actually deleting them at first logon. (In autoit) I use, as an example. FileDelete(@StartupCommonDir & "\FirstLogon.lnk") FileDelete(@StartMenuCommonDir & "\Default Programs.lnk")
I cant seem to locate these files.. And if they are deleted those options in File Explorer will be unavailable for my users? Should I not be able to do something with these built-in features? I dont want my users to be able to start cmd or powershell, or to hide or unhide files. I have a group policy that hides all items on the desktop. With 2 clicks my users can unhide these items.. I also have cmd.exe powershell.exe powershell-ise.exe in the applocker policy, but those dont stop my users from starting them from the file explorer quick access.
All I did find was a PowerShell command: Code: (new-object -c "microsoft.update.servicemanager").addservice2("7971f918-a847-4430-9279-4a52d1efe18d",7,"") Could you check it out? Unfortunately it required a reboot here.
Not sure if this has been posted already, but.. Disable System Restore: Code: Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows NT\SystemRestore] "DisableConfig"=dword:00000001 "DisableSR"=dword:00000001
What we can do disable it is nail the services which runs it. reg add "HKLM\SYSTEM\CurrentControlSet\Services\wscsvc" /v "Start" /d "4" /t "REG_DWORD" /f Start 4 - disabled Start 3 - Manual Start 2 - Automatic This is the currentcontrol list which controls every service in windows. In this case the Windows Security Center Service is names mscsvc. Now you need to apply that then hit: net stop wscsvc And your done.
Disable downloaded file block (eliminates requirement to "unblock" downloaded files in File Properties); set default risk to normal: Code: Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies] [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Associations] "DefaultFileTypeRisk"=dword:00001808 [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Attachments] "SaveZoneInformation"=dword:00000001