Demonstration of using Windows 10 Start Menus (System and User) from the Console
Read more
Code:
@SETLOCAL
@ECHO OFF
:: File: strtmnu.btm
:: _4ver: 32.10
:: _winver: 10.0
::
:: Viewer that I use for DebugString
:: https://learn.microsoft.com/en-us/sysinternals/downloads/debugview
::
:: To remove all lines containing the word DebugString,
:: type strtmnu.btm | find /v "DebugString" > newfile.btm
:: del strtmnu.btm
:: ren newfile.btm strtmnu.btm
pushd
iff %_x64 eq 1 then
iff %_admin eq 1...
Read more