I hardly launch command prompt or powershell to execute commands. I prefer to create scripts. If I ever do... I use this Run as TrustedInstaller [from Context menu] I prefer PowerRun--it doesn't give me errors It's also past midnight here in my part of the world. I'm already in bed just using my phone
If you also find any tool to edit Create > New Items menu please share here. because; ps1 cannot be added txt and bmp cannot be removed
guys i want make my own windows 11 iso but dont know which aplication is good for remove all things ? i see only ntlite any another aplication for removing staffs and integration update into iso ?
On the new Microsoft Defender Preview, has anyone bypassed the this account is not authorized notification? If so, How?
Does anyone know how to speed up boot time on Windows 11? Something must have happened after the latest update and the starting loop, which was moving twice before that, now has gone to 6 times or 7, meaning something is delaying the process. Thanks!
Hello everybody. Despite searched through the whole thread, can't find these answers. Does anyone know how to: Enable "Show always all tray icons"? If i'm not wrong, with early release i used "start explorer "shell:::{05d7b0f4-2121-4eff-bf6b-ed3f69b894d9}" and then checked "show all icons". Now with 22000.282 every reboot this settings is lost returning into an auto-hide state. Tried also an old registry settings "EnableAutoTray" but doesn't work. Remove .bmp ShellNewHandler without remove MsPaint? I can't find the correct clsid (or something like that) using processviewer as regmon/filemon. Thank you anyway
do not know if you already have Show Classic Kontextmenue Code: Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32] @="" restart is required
Remove Shortcut Name Extension Code: @echo off REG ADD "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer" /V link /T REG_Binary /D 00000000 /F Reg Delete "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\NamingTemplates" /V ShortcutNameTemplate /F :: To kill and restart explorer taskkill /f /im explorer.exe start explorer.exe Credit Shawn Brink @Elevenforum(dot)com
It doesn't "remove" shortcut, it stops new shortcuts being named with "Shortcut". Added to main post index as: Stop New Shortcuts Being Named With "Shortcut" [Added 06-Nov2021
Never wrote it "removed" shortcut, I wrote it removes Shortcut Name Extension It's all good nevertheless, thanks for maintaining the tweaks, most helpful.
I've used this BAT file since Window 7 - still works on 11, tested on OS build 22000.282 Clear Event Viewer BAT File Code: @echo off FOR /F "tokens=1,2*" %%V IN ('bcdedit') DO SET adminTest=%%V IF (%adminTest%)==(Access) goto noAdmin for /F "tokens=*" %%G in ('wevtutil.exe el') DO (call :do_clear "%%G") echo. echo goto theEnd :do_clear echo clearing %1 wevtutil.exe cl %1 goto :eof :noAdmin exit