book
  • README
  • cheatsheet
    • bash
      • builtin
      • syntactic sugar
      • cmd
      • havefun
    • text-processing
      • awk
      • sed
      • html
      • json
      • regex
      • unicode
    • osx
    • curl
    • tricky
    • widget
    • proxy
    • colors
    • math
    • media
    • ssl
      • keystore
      • verification
      • server
      • client
      • tricky
    • windows
      • powershell
      • choco
      • wsl
      • wt
      • shortcut
      • clsid
      • env
      • shell:folder
  • vim
    • nvim
    • install
    • color
    • plugins
      • usage
      • other plugins
      • deprecated
    • tricky
    • viml
    • windows
    • troubleshooting
  • devops
    • admin tools
    • ssh
    • git
      • config
      • alias
      • submodule
      • eol
      • example
      • gerrit
        • gerrit API
      • github
      • troubleshooting
      • tricky
      • statistics
    • pre-commit
    • release-tools
    • tmux
      • cheatsheet
    • ansible
    • vault
    • artifactory
      • api
      • cli
      • aql
      • nginx cert
    • klocwork
      • kwadmin
      • kwserver
      • api
      • q&a
    • elk
    • mongodb
    • android
    • mobile
  • jenkins
    • config
      • windows
    • appearance
    • troubleshooting
    • jenkinsfile
      • utility
      • parallel
      • build
      • envvar
      • properties
      • trigger
      • node
    • script
      • job
      • build
      • stage
      • agent
      • security & authorization
      • exception
      • monitor
      • tricky
    • api
      • blueocean
    • cli
    • plugins
      • kubernetes
      • docker
      • shared-libs
      • lockable-resource
      • ansicolor
      • badge
      • groovy-postbuild
      • simple-theme
      • customizable-header
      • artifactory
      • jira-steps
      • job-dsl
      • build-timeline
      • crumbIssuer
      • coverage
      • uno-choice
      • tricky
  • virtualization
    • kubernetes
      • init
        • kubespray
        • kubeadm
          • environment
          • crio v1.30.4
          • docker v1.15.3
          • HA
        • addons
        • etcd
      • kubectl
        • pod
        • deploy
        • replicasets
        • namespace
        • secrets
      • node
      • certificates
      • events
      • kubeconfig
      • kubelet
      • troubleshooting
      • cheatsheet
      • auth
      • api
      • tools
        • monitor
        • helm
        • network
        • minikube
    • docker
      • run & exec
      • voume
      • remove
      • show info
      • dockerfile
      • dockerd
      • tricky
      • troubleshooting
      • windows
    • crio
    • podman
  • ai
    • prompt
  • osx
    • apps
      • init
      • brew
    • defaults
    • system
    • network
    • script
    • tricky
  • linux
    • devenv
    • util
      • time & date
      • output formatting
      • params
      • tricky
    • nutshell
    • disk
    • network
    • troubleshooting
    • system
      • apt/yum/snap
      • authorization
      • apps
      • x11
    • ubuntu
      • systemctl
      • x
    • rpi
  • programming
    • groovy
    • python
      • config
      • basic
      • list
      • pip
      • q&a
    • others
    • archive
      • angular
      • maven
      • mysql
        • installation
        • logs
      • ruby
        • rubyInstallationQ&A
  • tools
    • fonts
    • html & css
    • Jira & Confluence
    • node & npm
      • gitbook
      • hexo
      • github.page
      • code themes
    • app
      • microsoft office
      • vscode
      • virtualbox
      • iterm2
      • browser
      • skype
      • teamviewer
      • others
  • quotes
  • english
Powered by GitBook
On this page
  • shortcuts
  • disable shortcuts
  • icons
  • reference

Was this helpful?

  1. cheatsheet
  2. windows

shortcut

PreviouswtNextclsid

Last updated 1 year ago

Was this helpful?

reference :

shortcuts

[!TIP] windows apps location: %LocalAppData%\Microsoft\WindowsApps

reference :

  • insert commands

    %LocalAppData%\Microsoft\WindowsApps\wt.exe

ubuntu 18.04

  • insert commands

    %LocalAppData%\Microsoft\WindowsApps\ubuntu1804.exe

cmd admin

references:

  • create shortcut by New -> Shortcut

  • insert commands

  • setup shortcut name

  • setup Run as administrator for the shortcut

  • move shortcut to Start Menu : Ctrl + r -> shell:Programs

references:

configuration in Task Scheduler

  • win -> insert Task Scheduler -> Enter

  • General Tab : -> Name: RunAdminCMD (or any you want) -> [x] Run with highest privileges

  • Conditions Tab : -> [ ] Start the task only if the computer is on AC power

  • Actions Tab : -> New -> Browse Program/script: -> select the path (i.e.: C:\Windows\System32\cmd.exe) -> OK

    or

  • Triggers Tab : -> New -> Begin the task: : At Startup (or At log on) -> OK

  • Settings Tab : -> [ ] Stop the task if runing longer than: 3 days -> OK

  • Save and Run

shortcut setup

  • right click -> New -> Shortcut

  • Type the location of the item: : schtasks /run /tn "<taskName>" -> Next

    schtasks /run /tn "<taskName>"
    • i.e.:

      schtasks /run /tn "RunAdminCMD"
  • Type a name of this shortbut: : any name you want (i.e.: Command Prompt) -> Finish

  • right click the new shortcut -> Properties -> Shortcut Tab : Change Icon

  • Look for icons in this file :

    %SystemRoot%\System32\imageres.dll
  • put the shortcut to anywhere you want

  • Internet Settings

    > inetcpl.cpl
  • Internet Settings with Connections Tab

    > rundll32.exe shell32.dll,Control_RunDLL inetcpl.cpl,,4
    > inetcpl.cpl ,4
    > control inetcpl.cpl,,4
  • > REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer  /d "hhttp=proxy-url:port;https=proxy-url:port;ftp=proxy-url:port;socks=proxy-url:port;" /t REG_SZ /f

Desktop Icon Settings

> rundll32.exe shell32.dll,Control_RunDLL desk.cpl,,0

Notification Area Icons

> explorer shell:::{05d7b0f4-2121-4eff-bf6b-ed3f69b894d9}

Personalization

> explorer shell:::{ED834ED6-4B5A-4bfe-8F11-A626DCB6A921}

Screen Saver

> rundll32.exe shell32.dll,Control_RunDLL desk.cpl,,1

System

> control /name Microsoft.System
  • or

    > control sysdm.cpl

System Icon

> explorer shell:::{05d7b0f4-2121-4eff-bf6b-ed3f69b894d9} \SystemIcons,,0

user environment variables

rundll32.exe sysdm.cpl,EditEnvironmentVariables

disable shortcuts

disable ctrl+,

  • %SystemRoot%\System32\shell32.dll

  • %SystemRoot%\system32\imageres.dll

  • %systemroot%\system32\DeviceCenter.dll

  • %systemroot%\explorer.exe

  • %systemroot%\system32\ddores.dll

  • %systemroot%\system32\mmcndmgr.dll

  • %systemroot%\system32\mmres.dll

  • %systemroot%\system32\netcenter.dll

  • %systemroot%\system32\networkexplorer.dll

  • %systemroot%\system32\pnidui.dll

  • %systemroot%\system32\setupapi.dll

  • %systemroot%\system32\compstui.dll

  • %systemroot%\system32\dsuiext.dll

  • %systemroot%\system32\mstscax.dll

  • %systemroot%\system32\comres.dll

  • %systemroot%\system32\mstsc.exe

  • %systemroot%\system32\actioncentercpl.dll

  • %systemroot%\system32\aclui.dll

  • %systemroot%\system32\autoplay.dll

  • %systemroot%\system32\comctl32.dll

  • %systemroot%\system32\xwizards.dll

  • %systemroot%\system32\ncpa.cpl

  • %systemroot%\system32\url.dll

  • %systemroot%\system32\pifmgr.dll

  • %systemroot%\system32\accessibilitycpl.dl

  • %systemroot%\system32\moricons.dll

  • %systemroot%system32\netshell.dll

  • %systemroot%\system32\sensorscpl.dll

  • %systemroot%\system32\wmploc.dll

  • %systemroot%\system32\wpdshext.dll

  • systemroot%\system32\ieframe.dll

  • %systemroot%\system32\wiashext.dll

reference

CONTROL PANEL ITEM

COMMANDS

Add a Device wizard

%windir%\System32\DevicePairingWizard.exe

Add Hardware wizard

%windir%\System32\hdwwiz.exe

Add a Printer wizard

rundll32.exe shell32.dll,SHHelpShortcuts_RunDLL AddPrinter

Additional Clocks

rundll32.exe shell32.dll,Control_RunDLL timedate.cpl,,1

Administrative Tools

control /name Microsoft.AdministrativeTools OR control admintools

AutoPlay

control /name Microsoft.AutoPlay

Backup and Restore (Windows 7)

control /name Microsoft.BackupAndRestoreCenter

BitLocker Drive Encryption

control /name Microsoft.BitLockerDriveEncryption

Color and Appearance

explorer shell:::{ED834ED6-4B5A-4bfe-8F11-A626DCB6A921} -Microsoft.Personalization\pageColorization

Color Management

control /name Microsoft.ColorManagement

Credential Manager

control /name Microsoft.CredentialManager

Date and Time (Date and Time)

control /name Microsoft.DateAndTime OR control timedate.cpl OR control date/time OR rundll32.exe shell32.dll,Control_RunDLL timedate.cpl,,0

Date and Time (Additional Clocks)

rundll32.exe shell32.dll,Control_RunDLL timedate.cpl,,1

Default Programs

control /name Microsoft.DefaultPrograms

Desktop Background

explorer shell:::{ED834ED6-4B5A-4bfe-8F11-A626DCB6A921} -Microsoft.Personalization\pageWallpaper

Desktop Icon Settings

rundll32.exe shell32.dll,Control_RunDLL desk.cpl,,0

Device Manager

control /name Microsoft.DeviceManager OR control hdwwiz.cpl OR devmgmt.msc

Devices and Printers

control /name Microsoft.DevicesAndPrinters OR control printers

Ease of Access Center

control /name Microsoft.EaseOfAccessCenter OR control access.cpl

File Explorer Options (General tab)

control /name Microsoft.FolderOptions OR control folders OR rundll32.exe shell32.dll,Options_RunDLL 0

File Explorer Options (View tab)

rundll32.exe shell32.dll,Options_RunDLL 7

File Explorer Options (Search tab)

rundll32.exe shell32.dll,Options_RunDLL 2

File History

control /name Microsoft.FileHistory

Fonts

control /name Microsoft.Fonts OR control fonts

Game Controllers

control /name Microsoft.GameControllers OR control joy.cpl

Get Programs

control /name Microsoft.GetPrograms OR rundll32.exe shell32.dll,Control_RunDLL appwiz.cpl,,1

HomeGroup

control /name Microsoft.HomeGroup

Indexing Options

control /name Microsoft.IndexingOptions OR rundll32.exe shell32.dll,Control_RunDLL srchadmin.dll

Infrared

control /name Microsoft.Infrared OR control irprops.cpl OR control /name Microsoft.InfraredOptions

Internet Properties (General tab)

control /name Microsoft.InternetOptions OR control inetcpl.cpl OR rundll32.exe shell32.dll,Control_RunDLL inetcpl.cpl,,0

Internet Properties (Security tab)

rundll32.exe shell32.dll,Control_RunDLL inetcpl.cpl,,1

Internet Properties (Privacy tab)

rundll32.exe shell32.dll,Control_RunDLL inetcpl.cpl,,2

Internet Properties (Content tab)

rundll32.exe shell32.dll,Control_RunDLL inetcpl.cpl,,3

Internet Properties (Connections tab)

rundll32.exe shell32.dll,Control_RunDLL inetcpl.cpl,,4

Internet Properties (Programs tab)

rundll32.exe shell32.dll,Control_RunDLL inetcpl.cpl,,5

Internet Properties (Advanced tab)

rundll32.exe shell32.dll,Control_RunDLL inetcpl.cpl,,6

iSCSI Initiator

control /name Microsoft.iSCSIInitiator

Keyboard

control /name Microsoft.Keyboard OR control keyboard

Language

control /name Microsoft.Language

Mouse Properties (Buttons tab 0)

control /name Microsoft.Mouse OR control main.cpl OR control mouse OR rundll32.exe shell32.dll,Control_RunDLL main.cpl,,0

Mouse Properties (Pointers tab 1)

control main.cpl,,1 OR rundll32.exe shell32.dll,Control_RunDLL main.cpl,,1

Mouse Properties (Pointer Options tab 2)

control main.cpl,,2 OR rundll32.exe shell32.dll,Control_RunDLL main.cpl,,2

Mouse Properties (Wheel tab 3)

control main.cpl,,3 OR rundll32.exe shell32.dll,Control_RunDLL main.cpl,,3

Mouse Properties (Hardware tab 4)

control main.cpl,,4 OR rundll32.exe shell32.dll,Control_RunDLL main.cpl,,4

Network and Sharing Center

control /name Microsoft.NetworkAndSharingCenter

Network Connections

control ncpa.cpl OR control netconnections

Network Setup Wizard

control netsetup.cpl

Notification Area Icons

explorer shell:::{05d7b0f4-2121-4eff-bf6b-ed3f69b894d9}

ODBC Data Source Administrator

control odbccp32.cpl

Offline Files

control /name Microsoft.OfflineFiles

Performance Options (Visual Effects)

%windir%\system32\SystemPropertiesPerformance.exe

Performance Options (Data Execution Prevention)

%windir%\system32\SystemPropertiesDataExecutionPrevention.exe

Personalization

explorer shell:::{ED834ED6-4B5A-4bfe-8F11-A626DCB6A921}

Phone and Modem

control /name Microsoft.PhoneAndModem OR control telephon.cpl

Power Options

control /name Microsoft.PowerOptions OR control powercfg.cpl

Power Options - Advanced settings

control powercfg.cpl,,1

Power Options - Create a Power Plan

control /name Microsoft.PowerOptions /page pageCreateNewPlan

Power Options - Edit Plan Settings

control /name Microsoft.PowerOptions /page pagePlanSettings

Power Options - System Settings

control /name Microsoft.PowerOptions /page pageGlobalSettings

Presentation Settings

%windir%\system32\PresentationSettings.exe

Programs and Features

control /name Microsoft.ProgramsAndFeatures OR control appwiz.cpl

Recovery

control /name Microsoft.Recovery

Region (Formats tab)

control /name Microsoft.RegionAndLanguage OR control /name Microsoft.RegionalAndLanguageOptions /page /p:"Formats" OR control intl.cpl OR control international

Region (Location tab)

control /name Microsoft.RegionalAndLanguageOptions /page /p:"Location"

Region (Administrative tab)

control /name Microsoft.RegionalAndLanguageOptions /page /p:"Administrative"

RemoteApp and Desktop Connections

control /name Microsoft.RemoteAppAndDesktopConnections

Scanners and Cameras

control /name Microsoft.ScannersAndCameras OR control sticpl.cpl

Screen Saver Settings

rundll32.exe shell32.dll,Control_RunDLL desk.cpl,,1

Security and Maintenance

control /name Microsoft.ActionCenter OR control wscui.cpl

Set Associations

control /name Microsoft.DefaultPrograms /page pageFileAssoc

Set Default Programs

control /name Microsoft.DefaultPrograms /page pageDefaultProgram

Set Program Access and Computer Defaults

rundll32.exe shell32.dll,Control_RunDLL appwiz.cpl,,3

Sound (Playback tab)

control /name Microsoft.Sound OR control mmsys.cpl OR %windir%\System32\rundll32.exe shell32.dll,Control_RunDLL mmsys.cpl,,0

Sound (Recording tab)

%windir%\System32\rundll32.exe shell32.dll,Control_RunDLL mmsys.cpl,,1

Sound (Sounds tab)

%windir%\System32\rundll32.exe shell32.dll,Control_RunDLL mmsys.cpl,,2

Sound (Communications tab)

%windir%\System32\rundll32.exe shell32.dll,Control_RunDLL mmsys.cpl,,3

Speech Recognition

control /name Microsoft.SpeechRecognition

Storage Spaces

control /name Microsoft.StorageSpaces

Sync Center

control /name Microsoft.SyncCenter

System

control /name Microsoft.System OR control sysdm.cpl

System Icons

explorer shell:::{05d7b0f4-2121-4eff-bf6b-ed3f69b894d9} \SystemIcons,,0

System Properties (Computer Name)

%windir%\System32\SystemPropertiesComputerName.exe

System Properties (Hardware)

%windir%\System32\SystemPropertiesHardware.exe

System Properties (Advanced)

%windir%\System32\SystemPropertiesAdvanced.exe

System Properties (System Protection)

%windir%\System32\SystemPropertiesProtection.exe

System Properties (Remote)

%windir%\System32\SystemPropertiesRemote.exe

Tablet PC Settings

control /name Microsoft.TabletPCSettings

Text to Speech

control /name Microsoft.TextToSpeech

Troubleshooting

explorer shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\0\::{C58C4893-3BE0-4B45-ABB5-A63E4B8C8651}

User Accounts

control /name Microsoft.UserAccounts OR control userpasswords

User Accounts (netplwiz)

netplwiz OR control userpasswords2

Windows Defender Firewall

control /name Microsoft.WindowsFirewall OR control firewall.cpl

Windows Defender Firewall Allowed apps

explorer shell:::{4026492F-2F69-46B8-B9BF-5654FC07E423} -Microsoft.WindowsFirewall\pageConfigureApps

Windows Defender Firewall with Advanced Security

%WinDir%\System32\WF.msc

Windows Features

%windir%\System32\OptionalFeatures.exe OR rundll32.exe shell32.dll,Control_RunDLL appwiz.cpl,,2

Windows Mobility Center

control /name Microsoft.MobilityCenter

Work Folders

%windir%\System32\WorkFolders.exe

![cmdadm](../../screenshot/win/cmd-admin-7.png)

cmd admin without UAC check via

Task Scheduler (Local) -> Create Task...

Windows Start | Run commands
List of Commands to Open Control Panel Items in Windows 10
windows terminal
8 Ways to Open the Windows Terminal in Windows 11
PNG to ICO Converter
icon
download terminal.ico
icon
download ubuntu.ico
Create Elevated Command Prompt Shortcut in Windows 10
Open Elevated Command Prompt in Windows 10
Task Scheduler
Create Administrator Mode Shortcuts Without UAC Prompts in Windows 10
How to Create Administrator Shortcut Without UAC Password Prompt
lansettings
or
or
proxy setup
icons
shortcuts
windows terminal
ubuntu 18.04
cmd admin
cmd admin without UAC check via Task Scheduler
lansettings
Desktop Icon Settings
Notification Area Icons
Personalization
Screen Saver
System
System Icon
user environment variables
disable shortcuts
disable ctrl+,
icons
reference
disable sougou ctrl+,
disable sougou ctrl+,