Well, I really did have aSENIOR
day yesterday !Last night I thought to myself, rather than searching the Internet for
Shell
commands and then testing them on my system, whyNOT
see if I could put a command together to directly extract them.I investigated and found that
ALL the folders reside in theSee Also"shell:::[52205fd8-447d-801a-d0b52f22e83e1]" - Windows 10 Help ForumsAdd, Delete, Enable, or Disable Startup Items in Windows 10 - Windows 10 Help ForumsRegistry Key
. . .Code:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions
So, to cut a long story short, I created this command one liner . . .Code:
PowerShell Get-ChildItem 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions' ^| ForEach-Object {New-Object -TypeName PSObject -Property (@{RelativePath=$_.GetValue('RelativePath');Name=$_.GetValue('Name')})} ^| Sort-Object -Property Name ^| Format-Table -AutoSize Name, RelativePath
Then I thought that I would make the command more readable in case @Brink wanted to add it to the Tutorial:Code:
PowerShell Get-ChildItem 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions' ^| ^ ForEach-Object { ^ New-Object ` ^ -TypeName PSObject ` ^ -Property (@{RelativePath=$_.GetValue('RelativePath');Name=$_.GetValue('Name')}) ^} ^| Sort-Object -Property Name ^| Format-Table -AutoSize Name, RelativePath
Then I thought that I would convert it into pure PowerShell:Code:
Get-ChildItem 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions' | ForEach-Object { New-Object ` -TypeName PSObject ` -Property (@{RelativePath=$_.GetValue('RelativePath');Name=$_.GetValue('Name')}) } | Sort-Object -Property Name | Format-Table -AutoSize Name, RelativePath
Here is the completed Script for ALL theShell
commands CURRENTLY listed using the above for [Win 10 Home] and [Win 10 Professional], and BOTH [32-bit] and [64-bit].Code:
@echo offif not "%1"=="max" start /max cmd /c %0 max & Exit /b:: ##############################################################################################:: # Title : Shell Commands - Complete List #:: # Created By: Paul Black #:: # Created On: 30-Jun-2022 #:: # Filename : Shell_Commands_Complete_List_By_Name.bat #:: # Tutorial : https://www.tenforums.com/tutorials/3109-shell-commands-list-windows-10-a.html #:: ##############################################################################################set "Title=Shell Commands - Complete List" & set "Author=Paul Black"title %Title% - Written by %Author%.setlocal EnableDelayedExpansionfsutil Dirty Query %SystemDrive% > nul && goto:[RunAs]echo CreateObject^("Shell.Application"^). ^ShellExecute "%~0","+","","RunAs",1 > "%Temp%\+.vbs" && "%Temp%\+.vbs" & Exit:[RunAs]:Optionsecho. & echo ===================================================================================================================================================================== echo %Title%:- echo =====================================================================================================================================================================echo. & echo INFORMATION:echo. & echo ^> A Shell Command can be typed in the Run [Win+R] Dialog Box, Search, File Explorer Address Bar, and Internet Explorer Address Bar to open a Windows Shell Folder. echo ^> Some of the [Options] Names have a space, and some do NOT. This is exactly as they appear and are used in [explorer shell:^<Command_Name^>]. echo ^> ALL the [Options] have been confirmed as CURRENTLY correct for [Win 10 Home] and [Win 10 Professional]. echo ^> BOTH [32-bit] and [64-bit] are identical except for [ProgramFilesCommonX64] and [ProgramFilesX64] being additionally included in the [64-bit] version. echo ^> The [Options] are Sorted by [Name].echo. & echo CAVEATS:echo. & echo ^> Games [explorer shell:Games] was removed in [Win 10 Version 1803].echo. & echo ---------------------------------------------------------------------------------------------------------------------------------------------------------------------echo. & echo Options:echo. & echo [ 0] EXIT this Program.echo. &echo [ 1] 3D Objects [ 35] ConnectionsFolder [ 69] My Pictures [103] RecycleBinFolderecho [ 2] AccountPictures [ 36] Contacts [ 70] My Video [104] ResourceDirecho [ 3] AddNewProgramsFolder [ 37] ControlPanelFolder [ 71] MyComputerFolder [105] Retail Demoecho [ 4] Administrative Tools [ 38] Cookies [ 72] NetHood [106] Ringtonesecho [ 5] AppData [ 39] CredentialManager [ 73] NetworkPlacesFolder [107] Roamed Tile Imagesecho [ 6] AppDataDesktop [ 40] CryptoKeys [ 74] OEM Links [108] Roaming Tilesecho [ 7] AppDataDocuments [ 41] CSCFolder [ 75] OneDrive [109] SavedGamesecho [ 8] AppDataFavorites [ 42] Desktop [ 76] OneDriveCameraRoll [110] SavedPicturesecho [ 9] AppDataProgramData [ 43] Development Files [ 77] OneDriveDocuments [111] SavedPicturesLibraryecho [ 10] Application Shortcuts [ 44] Device Metadata Store [ 78] OneDriveMusic [112] Screenshotsecho [ 11] AppMods [ 45] DocumentsLibrary [ 79] OneDrivePictures [113] Searchesecho [ 12] AppsFolder [ 46] Downloads [ 80] Original Images [114] SearchHistoryFolderecho [ 13] AppUpdatesFolder [ 47] DpapiKeys [ 81] Personal [115] SearchHomeFolderecho [ 14] Cache [ 48] Favorites [ 82] PhotoAlbums [116] SearchTemplatesFolderecho [ 15] Camera Roll [ 49] Fonts [ 83] PicturesLibrary [117] SendToecho [ 16] CameraRollLibrary [ 50] GameTasks [ 84] Playlists [118] Start Menuecho [ 17] Captures [ 51] History [ 85] PrintersFolder [119] Startupecho [ 18] CD Burning [ 52] HomeGroupCurrentUserFolder [ 86] PrintHood [120] SyncCenterFolderecho [ 19] ChangeRemoveProgramsFolder [ 53] HomeGroupFolder [ 87] Profile [121] SyncResultsFolderecho [ 20] Common Administrative Tools [ 54] ImplicitAppShortcuts [ 88] ProgramFiles [122] SyncSetupFolderecho [ 21] Common AppData [ 55] InternetFolder [ 89] ProgramFilesCommon [123] Systemecho [ 22] Common Desktop [ 56] Libraries [ 90] ProgramFilesCommonX64 [124] SystemCertificatesecho [ 23] Common Documents [ 57] Links [ 91] ProgramFilesCommonX86 [125] SystemX86echo [ 24] Common Programs [ 58] Local AppData [ 92] ProgramFilesX64 [126] Templatesecho [ 25] Common Start Menu [ 59] Local Documents [ 93] ProgramFilesX86 [127] ThisDeviceFolderecho [ 26] Common Start Menu Places [ 60] Local Downloads [ 94] Programs [128] ThisPCDesktopFolderecho [ 27] Common Startup [ 61] Local Music [ 95] Public [129] User Pinnedecho [ 28] Common Templates [ 62] Local Pictures [ 96] PublicAccountPictures [130] UserProfilesecho [ 29] CommonDownloads [ 63] Local Videos [ 97] PublicGameTasks [131] UserProgramFilesecho [ 30] CommonMusic [ 64] LocalAppDataLow [ 98] PublicLibraries [132] UserProgramFilesCommonecho [ 31] CommonPictures [ 65] LocalizedResourcesDir [ 99] Quick Launch [133] UsersFilesFolderecho [ 32] CommonRingtones [ 66] MAPIFolder [100] Recent [134] UsersLibrariesFolderecho [ 33] CommonVideo [ 67] MusicLibrary [101] Recorded Calls [135] VideosLibraryecho [ 34] ConflictFolder [ 68] My Music [102] RecordedTVLibrary [136] Windowsecho. & echo =====================================================================================================================================================================& echo.set "UserInput="set /p "UserInput=>Enter an Option number and press <Enter>: "if "%UserInput%"=="" cls & goto :Optionsif /i %UserInput%==0 Exitif /i %UserInput%==1 goto:3DObjectsif /i %UserInput%==2 goto:AccountPicturesif /i %UserInput%==3 goto:AddNewProgramsFolderif /i %UserInput%==4 goto:AdministrativeToolsif /i %UserInput%==5 goto:AppDataif /i %UserInput%==6 goto:AppDataDesktopif /i %UserInput%==7 goto:AppDataDocumentsif /i %UserInput%==8 goto:AppDataFavoritesif /i %UserInput%==9 goto:AppDataProgramDataif /i %UserInput%==10 goto:ApplicationShortcutsif /i %UserInput%==11 goto:AppModsif /i %UserInput%==12 goto:AppsFolderif /i %UserInput%==13 goto:AppUpdatesFolderif /i %UserInput%==14 goto:Cacheif /i %UserInput%==15 goto:CameraRollif /i %UserInput%==16 goto:CameraRollLibraryif /i %UserInput%==17 goto:Capturesif /i %UserInput%==18 goto:CDBurningif /i %UserInput%==19 goto:ChangeRemoveProgramsFolderif /i %UserInput%==20 goto:CommonAdministrativeToolsif /i %UserInput%==21 goto:CommonAppDataif /i %UserInput%==22 goto:CommonDesktopif /i %UserInput%==23 goto:CommonDocumentsif /i %UserInput%==24 goto:CommonProgramsif /i %UserInput%==25 goto:CommonStartMenuif /i %UserInput%==26 goto:CommonStartMenuPlacesif /i %UserInput%==27 goto:CommonStartupif /i %UserInput%==28 goto:CommonTemplatesif /i %UserInput%==29 goto:CommonDownloadsif /i %UserInput%==30 goto:CommonMusicif /i %UserInput%==31 goto:CommonPicturesif /i %UserInput%==32 goto:CommonRingtonesif /i %UserInput%==33 goto:CommonVideoif /i %UserInput%==34 goto:ConflictFolderif /i %UserInput%==35 goto:ConnectionsFolderif /i %UserInput%==36 goto:Contactsif /i %UserInput%==37 goto:ControlPanelFolderif /i %UserInput%==38 goto:Cookiesif /i %UserInput%==39 goto:CredentialManagerif /i %UserInput%==40 goto:CryptoKeysif /i %UserInput%==41 goto:CSCFolderif /i %UserInput%==42 goto:Desktopif /i %UserInput%==43 goto:DevelopmentFilesif /i %UserInput%==44 goto:DeviceMetadataStoreif /i %UserInput%==45 goto:DocumentsLibraryif /i %UserInput%==46 goto:Downloadsif /i %UserInput%==47 goto:DpapiKeysif /i %UserInput%==48 goto:Favoritesif /i %UserInput%==49 goto:Fontsif /i %UserInput%==50 goto:GameTasksif /i %UserInput%==51 goto:Historyif /i %UserInput%==52 goto:HomeGroupCurrentUserFolderif /i %UserInput%==53 goto:HomeGroupFolderif /i %UserInput%==54 goto:ImplicitAppShortcutsif /i %UserInput%==55 goto:InternetFolderif /i %UserInput%==56 goto:Librariesif /i %UserInput%==57 goto:Linksif /i %UserInput%==58 goto:LocalAppDataif /i %UserInput%==59 goto:LocalDocumentsif /i %UserInput%==60 goto:LocalDownloadsif /i %UserInput%==61 goto:LocalMusicif /i %UserInput%==62 goto:LocalPicturesif /i %UserInput%==63 goto:LocalVideosif /i %UserInput%==64 goto:LocalAppDataLowif /i %UserInput%==65 goto:LocalizedResourcesDirif /i %UserInput%==66 goto:MAPIFolderif /i %UserInput%==67 goto:MusicLibraryif /i %UserInput%==68 goto:MyMusicif /i %UserInput%==69 goto:MyPicturesif /i %UserInput%==70 goto:MyVideoif /i %UserInput%==71 goto:MyComputerFolderif /i %UserInput%==72 goto:NetHoodif /i %UserInput%==73 goto:NetworkPlacesFolderif /i %UserInput%==74 goto:OEMLinksif /i %UserInput%==75 goto:OneDriveif /i %UserInput%==76 goto:OneDriveCameraRollif /i %UserInput%==77 goto:OneDriveDocumentsif /i %UserInput%==78 goto:OneDriveMusicif /i %UserInput%==79 goto:OneDrivePicturesif /i %UserInput%==80 goto:OriginalImagesif /i %UserInput%==81 goto:Personalif /i %UserInput%==82 goto:PhotoAlbumsif /i %UserInput%==83 goto:PicturesLibraryif /i %UserInput%==84 goto:Playlistsif /i %UserInput%==85 goto:PrintersFolderif /i %UserInput%==86 goto:PrintHoodif /i %UserInput%==87 goto:Profileif /i %UserInput%==88 goto:ProgramFilesif /i %UserInput%==89 goto:ProgramFilesCommonif /i %UserInput%==90 goto:ProgramFilesCommonX64if /i %UserInput%==91 goto:ProgramFilesCommonX86if /i %UserInput%==92 goto:ProgramFilesX64if /i %UserInput%==93 goto:ProgramFilesX86if /i %UserInput%==94 goto:Programsif /i %UserInput%==95 goto:Publicif /i %UserInput%==96 goto:PublicAccountPicturesif /i %UserInput%==97 goto:PublicGameTasksif /i %UserInput%==98 goto:PublicLibrariesif /i %UserInput%==99 goto:QuickLaunchif /i %UserInput%==100 goto:Recentif /i %UserInput%==101 goto:RecordedCallsif /i %UserInput%==102 goto:RecordedTVLibraryif /i %UserInput%==103 goto:RecycleBinFolderif /i %UserInput%==104 goto:ResourceDirif /i %UserInput%==105 goto:RetailDemoif /i %UserInput%==106 goto:Ringtonesif /i %UserInput%==107 goto:RoamedTileImagesif /i %UserInput%==108 goto:RoamingTilesif /i %UserInput%==109 goto:SavedGamesif /i %UserInput%==110 goto:SavedPicturesif /i %UserInput%==111 goto:SavedPicturesLibraryif /i %UserInput%==112 goto:Screenshotsif /i %UserInput%==113 goto:Searchesif /i %UserInput%==114 goto:SearchHistoryFolderif /i %UserInput%==115 goto:SearchHomeFolderif /i %UserInput%==116 goto:SearchTemplatesFolderif /i %UserInput%==117 goto:SendToif /i %UserInput%==118 goto:StartMenuif /i %UserInput%==119 goto:Startupif /i %UserInput%==120 goto:SyncCenterFolderif /i %UserInput%==121 goto:SyncResultsFolderif /i %UserInput%==122 goto:SyncSetupFolderif /i %UserInput%==123 goto:Systemif /i %UserInput%==124 goto:SystemCertificatesif /i %UserInput%==125 goto:SystemX86if /i %UserInput%==126 goto:Templatesif /i %UserInput%==127 goto:ThisDeviceFolderif /i %UserInput%==128 goto:ThisPCDesktopFolderif /i %UserInput%==129 goto:UserPinnedif /i %UserInput%==130 goto:UserProfilesif /i %UserInput%==131 goto:UserProgramFilesif /i %UserInput%==132 goto:UserProgramFilesCommonif /i %UserInput%==133 goto:UsersFilesFolderif /i %UserInput%==134 goto:UsersLibrariesFolderif /i %UserInput%==135 goto:VideosLibraryif /i %UserInput%==136 goto:Windowsgoto :Options:3DObjectsexplorer shell:3D Objects & cls & goto :Options:AccountPicturesexplorer shell:AccountPictures & cls & goto :Options:AddNewProgramsFolderexplorer shell:AddNewProgramsFolder & cls & goto :Options:AdministrativeToolsexplorer shell:Administrative Tools & cls & goto :Options:AppDataexplorer shell:AppData & cls & goto :Options:AppDataDesktopexplorer shell:AppDataDesktop & cls & goto :Options:AppDataDocumentsexplorer shell:AppDataDocuments & cls & goto :Options:AppDataFavoritesexplorer shell:AppDataFavorites & cls & goto :Options:AppDataProgramDataexplorer shell:AppDataProgramData & cls & goto :Options:ApplicationShortcutsexplorer shell:Application Shortcuts & cls & goto :Options:AppModsexplorer shell:AppMods & cls & goto :Options:AppsFolderexplorer shell:AppsFolder & cls & goto :Options:AppUpdatesFolderexplorer shell:AppUpdatesFolder & cls & goto :Options:Cacheexplorer shell:Cache & cls & goto :Options:CameraRollexplorer shell:Camera Roll & cls & goto :Options:CameraRollLibraryexplorer shell:CameraRollLibrary & cls & goto :Options:Capturesexplorer shell:Captures & cls & goto :Options:CDBurningexplorer shell:CD Burning & cls & goto :Options:ChangeRemoveProgramsFolderexplorer shell:ChangeRemoveProgramsFolder & cls & goto :Options:CommonAdministrativeToolsexplorer shell:Common Administrative Tools & cls & goto :Options:CommonAppDataexplorer shell:Common AppData & cls & goto :Options:CommonDesktopexplorer shell:Common Desktop & cls & goto :Options:CommonDocumentsexplorer shell:Common Documents & cls & goto :Options:CommonProgramsexplorer shell:Common Programs & cls & goto :Options:CommonStartMenuexplorer shell:Common Start Menu & cls & goto :Options:CommonStartMenuPlacesexplorer shell:Common Start Menu Places & cls & goto :Options:CommonStartupexplorer shell:Common Startup & cls & goto :Options:CommonTemplatesexplorer shell:Common Templates & cls & goto :Options:CommonDownloadsexplorer shell:CommonDownloads & cls & goto :Options:CommonMusicexplorer shell:CommonMusic & cls & goto :Options:CommonPicturesexplorer shell:CommonPictures & cls & goto :Options:CommonRingtonesexplorer shell:CommonRingtones & cls & goto :Options:CommonVideoexplorer shell:CommonVideo & cls & goto :Options:ConflictFolderexplorer shell:ConflictFolder & cls & goto :Options:ConnectionsFolderexplorer shell:ConnectionsFolder & cls & goto :Options:Contactsexplorer shell:Contacts & cls & goto :Options:ControlPanelFolderexplorer shell:ControlPanelFolder & cls & goto :Options:Cookiesexplorer shell:Cookies & cls & goto :Options:CredentialManagerexplorer shell:CredentialManager & cls & goto :Options:CryptoKeysexplorer shell:CryptoKeys & cls & goto :Options:CSCFolderexplorer shell:CSCFolder & cls & goto :Options:Desktopexplorer shell:Desktop & cls & goto :Options:DevelopmentFilesexplorer shell:Development Files & cls & goto :Options:DeviceMetadataStoreexplorer shell:Device Metadata Store & cls & goto :Options:DocumentsLibraryexplorer shell:DocumentsLibrary & cls & goto :Options:Downloadsexplorer shell:Downloads & cls & goto :Options:DpapiKeysexplorer shell:DpapiKeys & cls & goto :Options:Favoritesexplorer shell:Favorites & cls & goto :Options:Fontsexplorer shell:Fonts & cls & goto :Options:GameTasksexplorer shell:GameTasks & cls & goto :Options:Historyexplorer shell:History & cls & goto :Options:HomeGroupCurrentUserFolderexplorer shell:HomeGroupCurrentUserFolder & cls & goto :Options:HomeGroupFolderexplorer shell:HomeGroupFolder & cls & goto :Options:ImplicitAppShortcutsexplorer shell:ImplicitAppShortcuts & cls & goto :Options:InternetFolderexplorer shell:InternetFolder & cls & goto :Options:Librariesexplorer shell:Libraries & cls & goto :Options:Linksexplorer shell:Links & cls & goto :Options:LocalAppDataexplorer shell:Local AppData & cls & goto :Options:LocalDocumentsexplorer shell:Local Documents & cls & goto :Options:LocalDownloadsexplorer shell:Local Downloads & cls & goto :Options:LocalMusicexplorer shell:Local Music & cls & goto :Options:LocalPicturesexplorer shell:Local Pictures & cls & goto :Options:LocalVideosexplorer shell:Local Videos & cls & goto :Options:LocalAppDataLowexplorer shell:LocalAppDataLow & cls & goto :Options:LocalizedResourcesDirexplorer shell:LocalizedResourcesDir & cls & goto :Options:MAPIFolderexplorer shell:MAPIFolder & cls & goto :Options:MusicLibraryexplorer shell:MusicLibrary & cls & goto :Options:MyMusicexplorer shell:My Music & cls & goto :Options:MyPicturesexplorer shell:My Pictures & cls & goto :Options:MyVideoexplorer shell:My Video & cls & goto :Options:MyComputerFolderexplorer shell:MyComputerFolder & cls & goto :Options:NetHoodexplorer shell:NetHood & cls & goto :Options:NetworkPlacesFolderexplorer shell:NetworkPlacesFolder & cls & goto :Options:OEMLinksexplorer shell:OEM Links & cls & goto :Options:OneDriveexplorer shell:OneDrive & cls & goto :Options:OneDriveCameraRollexplorer shell:OneDriveCameraRoll & cls & goto :Options:OneDriveDocumentsexplorer shell:OneDriveDocuments & cls & goto :Options:OneDriveMusicexplorer shell:OneDriveMusic & cls & goto :Options:OneDrivePicturesexplorer shell:OneDrivePictures & cls & goto :Options:OriginalImagesexplorer shell:Original Images & cls & goto :Options:Personalexplorer shell:Personal & cls & goto :Options:PhotoAlbumsexplorer shell:PhotoAlbums & cls & goto :Options:PicturesLibraryexplorer shell:PicturesLibrary & cls & goto :Options:Playlistsexplorer shell:Playlists & cls & goto :Options:PrintersFolderexplorer shell:PrintersFolder & cls & goto :Options:PrintHoodexplorer shell:PrintHood & cls & goto :Options:Profileexplorer shell:Profile & cls & goto :Options:ProgramFilesexplorer shell:ProgramFiles & cls & goto :Options:ProgramFilesCommonexplorer shell:ProgramFilesCommon & cls & goto :Options:ProgramFilesCommonX64explorer shell:ProgramFilesCommonX64 & cls & goto :Options:ProgramFilesCommonX86explorer shell:ProgramFilesCommonX86 & cls & goto :Options:ProgramFilesX64explorer shell:ProgramFilesX64 & cls & goto :Options:ProgramFilesX86explorer shell:ProgramFilesX86 & cls & goto :Options:Programsexplorer shell:Programs & cls & goto :Options:Publicexplorer shell:Public & cls & goto :Options:PublicAccountPicturesexplorer shell:PublicAccountPictures & cls & goto :Options:PublicGameTasksexplorer shell:PublicGameTasks & cls & goto :Options:PublicLibrariesexplorer shell:PublicLibraries & cls & goto :Options:QuickLaunchexplorer shell:Quick Launch & cls & goto :Options:Recentexplorer shell:Recent & cls & goto :Options:RecordedCallsexplorer shell:Recorded Calls & cls & goto :Options:RecordedTVLibraryexplorer shell:RecordedTVLibrary & cls & goto :Options:RecycleBinFolderexplorer shell:RecycleBinFolder & cls & goto :Options:ResourceDirexplorer shell:ResourceDir & cls & goto :Options:RetailDemoexplorer shell:Retail Demo & cls & goto :Options:Ringtonesexplorer shell:Ringtones & cls & goto :Options:RoamedTileImagesexplorer shell:Roamed Tile Images & cls & goto :Options:RoamingTilesexplorer shell:Roaming Tiles & cls & goto :Options:SavedGamesexplorer shell:SavedGames & cls & goto :Options:SavedPicturesexplorer shell:SavedPictures & cls & goto :Options:SavedPicturesLibraryexplorer shell:SavedPicturesLibrary & cls & goto :Options:Screenshotsexplorer shell:Screenshots & cls & goto :Options:Searchesexplorer shell:Searches & cls & goto :Options:SearchHistoryFolderexplorer shell:SearchHistoryFolder & cls & goto :Options:SearchHomeFolderexplorer shell:SearchHomeFolder & cls & goto :Options:SearchTemplatesFolderexplorer shell:SearchTemplatesFolder & cls & goto :Options:SendToexplorer shell:SendTo & cls & goto :Options:StartMenuexplorer shell:Start Menu & cls & goto :Options:Startupexplorer shell:Startup & cls & goto :Options:SyncCenterFolderexplorer shell:SyncCenterFolder & cls & goto :Options:SyncResultsFolderexplorer shell:SyncResultsFolder & cls & goto :Options:SyncSetupFolderexplorer shell:SyncSetupFolder & cls & goto :Options:Systemexplorer shell:System & cls & goto :Options:SystemCertificatesexplorer shell:SystemCertificates & cls & goto :Options:SystemX86explorer shell:SystemX86 & cls & goto :Options:Templatesexplorer shell:Templates & cls & goto :Options:ThisDeviceFolderexplorer shell:ThisDeviceFolder & cls & goto :Options:ThisPCDesktopFolderexplorer shell:ThisPCDesktopFolder & cls & goto :Options:UserPinnedexplorer shell:User Pinned & cls & goto :Options:UserProfilesexplorer shell:UserProfiles & cls & goto :Options:UserProgramFilesexplorer shell:UserProgramFiles & cls & goto :Options:UserProgramFilesCommonexplorer shell:UserProgramFilesCommon & cls & goto :Options:UsersFilesFolderexplorer shell:UsersFilesFolder & cls & goto :Options:UsersLibrariesFolderexplorer shell:UsersLibrariesFolder & cls & goto :Options:VideosLibraryexplorer shell:VideosLibrary & cls & goto :Options:Windowsexplorer shell:Windows & cls & goto :Options
Another Project finished !I hope someone finds it useful.
NOTE:- I have Re-Scripted the above code using an
Array
instead ofgoto:
in Post #12 below.
Shell Commands List for Windows 10 - Windows 10 Help Forums (2025)
References
- https://www.tenforums.com/general-support/160373-shell-52205fd8-447d-801a-d0b52f22e83e1.html
- https://www.tenforums.com/tutorials/3109-shell-commands-list-windows-10-a-2.html
- https://www.tenforums.com/tutorials/2944-add-delete-enable-disable-startup-items-windows-10-a.html
Top Articles
Here’s How Much The Tariff War Has Cost Trump So Far
QUALCOMM (NASDAQ:QCOM) Trading 3% Higher - Here's What Happened
Sailor killed in Pearl Harbor attack finally ID'd 84 years later, bringing closure to family
Latest Posts
NHS billions wasted as bipolar patients left ‘forgotten and failed’
Nikola Jokic sets bonkers new career-high in Nuggets-Timberwolves thriller
Recommended Articles
- Saugroboter mit Wischfunktion im Test: Saugen, Wischen, fertig?
- Emisiones en directo de TVE, en RTVE Play
- The Best Antiperspirants Keep You Dry Without Staining Your Shirts
- Der Support für Windows 10 endet: Jetzt auf Windows 11 umsteigen | News Center Microsoft
- Monitor Liceal de Secundaria registró incremento en promoción de Educación Media Básica
- การใช้แอปพลิเคชัน“ กรรไกร” เพื่อจับภาพหน้าจอ
- Donde Mira el Sol HOTEL RETIRADO Y ESPACIOSO CON CONDICIONES IDEALES PARA PASAR LA CONTINGENCIA CON LA MAYOR SEGURIDAD, Acapulco. Desde 23.81€ - Central de Reservas
- Как благодарность меняет вас и ваш мозг
- Exclusive | Inside Katy Perry and Orlando Bloom’s heartbreaking split: ‘All she wants is consistent love’
- BCE Expands Into the U.S. Fiber Market With Ziply Fiber Acquisition
- Add a debit or credit card to the Google Wallet app
- Albuterol Side Effects: Common, Severe, Long Term
- Acquisto di impianti di prefabbricati modulari con allestimento incluso
- SHOW - Tłumaczenie na polski
- The Future of AI Assistants: How They’re Changing Everyday Life - LiveX AI Blogs
- Structure, Function, Location, Anatomy, Diagram
- BahnBonus Statuslevel - Silber, Gold und Platin
- مرسوم سلطاني رقم ١٠٨ / ٩٦ بإصدار قانون المحاماة – Qanoon.om
- Reinstall Windows with the installation media
- العلاج بالوخز بالإبر - Mayo Clinic (مايو كلينك)
- Zoeken naar plaatsen in de buurt en de omgeving verkennen - Computer
- ▷ CAUDALIE Vinoclean Mizellen-Make-up-Entferner-Wasser 100ml
- Seattle's Best Dinner Spots
- Voor bedrijven - oZone
- Gundam: Requiem for Vengeance | Serial | 2024
- About demographic targeting - Google Ads Help
- Kurznachrichten - n-tv.de
- Types of Contact Lenses and More
- Mit Google Pixel Buds übersetzen
- 20 feiten over Tom Hanks
- Brutal- Definition, Meaning, Synonyms & Etymology
- Discover the Best Shower Gels for Women
- تسجيل الدخول إلى حسابك على Google باستخدام عنوان بريد إلكتروني آخر - أجهزة Android
- 7 Best Reusable Under-Eye Patches You’ll Use Every Day
- Anno 1404 - History Edition (PC) - Steam Key - EUROPE - Cheap - G2A.COM!
- Toothpaste That Doesn't Burn | Comfort in Care
- 在电脑或 Mac 上下载、安装或重新安装 Microsoft 365 或 Office 2024
- Top 10 Physiotherapist in Mumbai! - By Dr. Sanjeev Kumar Singh | Lybrate
- Our classes at BBA DANCE STUDIOS , LOWER SYDENHAM
- Best commercial dough roller and dough sheeter: Buyer’s guide
- Omegle Privacy Notice
- Come possiamo aiutarti? - Crédit Agricole
- What Is Discord and How Do You Use It?
- How to enable or disable Print Spooler Service on Windows 11/10
- Používanie navigácie v Mapách Google - Android
- Title: Vestidos y Monos | Colección de moda femenina Polin et moi
- Audiodeskription ausschalten (in ZDF App) 803er, Philips
- Top 100 Android Apps Downloads der Woche
- Testosteron och dess inverkan på din muskeltillväxt – BODY
- How to Control Which OneDrive Files Are Available Offline
- Live Streaming - KAYA 959
- Healthy diet: Keys to eating well
- Retiran de Xbox Call of Duty tras ola de hackeos a gamers; conoce si eres afectado - Revista Merca2.0 |
- Maybelline New York Fit Me !, Concealer - opinie i ceny
- The 10 Best Body Composition Scales of 2025 (Reviews) - FindThisBest
- US GQ Summer 2025 : Brad Pitt, Damson Idris & Lewis Hamilton by Nathaniel Goldberg
- Seznam.cz: Objevte neznámé a najděte vše, co hledáte!
- Today in History: Significant Events, Birthdays & Anniversaries
- Ottieni aiuto in Windows: come possiamo accedervi?
- The Best Free Movie Download Sites - 2025 Updated List
- Sierpoort op maat | Folmer Hekwerken
- chamuyar / chamullar, chamuyero /chamullero
- D1 BUCKLE | USA MADE MICRO-ADJUSTABLE GLOSS DUTY BELT 2.25" [COMPLETE KIT]
- Best Electric Facial Cleansers: Your Skin's New Best Friend - TopTenReviewed
- Utiliser votre caméra et votre micro dans Chrome - Ordinateur
- 27 sätt att tjäna pengar online hemifrån
- Markiser – Måttbeställda markiser för alla behov | Moogio
- Enable Virtualization on Windows - Microsoft Support
- Concursos/2025 — Listas definitivas (13/jun)
- HHG Villa GW AV-Link Gateway
- Italie : 9 plats typiques italiens à goûter
- Forum 60 millions de consommateurs • Consulter le sujet
- Implementing the Repository Pattern in C# and .NET
- Lizzo strips down to her underwear to showcase weight loss
- Fix Bluetooth problems in Windows
- Золотий хрестик: купити золотий хрестик в Києві, Харкові, Дніпрі, Одесі, Львові, Миколаєві, Україні за низькою ціною - Золотий Вік
- Business Directory Search - Member Directory — Swift Current & District Chamber of Commerce
- École supérieure d’art et design (Grenoble et Valence)
- Cherishing Beautiful Moments: The Art of Gratitude and Mindful Living
- Use your camera and microphone in Chrome - Computer
- Resolução do Conselho de Ministros 102/2005, de 24 de Junho
- Lloyds Banking (LLOY) Share Price
- Guidelines for representing your business on Google
- Télécharger ChatGPT - IA - Les Numériques
- Powerful Accounting Software for Your Business | Zoho Books
- Ihre Freie Werkstatt in Kleinmachnow (14532)
- How do we describe a really small rain?
- What Is Microcurrent Facial
- 1800 AUD to INR - Convert $1800 Australian Dollar to Indian Rupee
- What Your Nails Say About Your Health: 7 Warning Signs to Watch - Dermatology of Seattle & Bellevue
- Common Eyebrow Shapes: How to Find Your Perfect Brow Shape
- Avoiding amputation: Jump feet first into diabetes foot care
- Car Accident Lawyers in Dallas, TX | Trusted Representation
- Microdermabrasion: Wirkung, Ablauf und Risiken
- Comment accéder aux options d’assistance dans Windows 11 ? ▷➡️
- LloydsPharmacy Stores | LloydsPharmacy Online Doctor UK
- Top moments in NASCAR All-Star Race history, including Darrell Waltrip, Dale Earnhardt, Ryan Blaney
- Highest Grossing Bollywood Movies | Top 20 Hindi Grossers In India
- Είσοδος και έξοδος από το Outlook.com
- Come risolvere un’installazione in sospeso di Windows Update (RISOLTO)
Article information
Author: Tyson Zemlak
Last Updated:
Views: 6002
Rating: 4.2 / 5 (43 voted)
Reviews: 90% of readers found this page helpful
Author information
Name: Tyson Zemlak
Birthday: 1992-03-17
Address: Apt. 662 96191 Quigley Dam, Kubview, MA 42013
Phone: +441678032891
Job: Community-Services Orchestrator
Hobby: Coffee roasting, Calligraphy, Metalworking, Fashion, Vehicle restoration, Shopping, Photography
Introduction: My name is Tyson Zemlak, I am a excited, light, sparkling, super, open, fair, magnificent person who loves writing and wants to share my knowledge and understanding with you.