Source: Batch files – FOR loops
Category Archives: Windows
“Your administrator has blocked this application because it potentially poses a security risk to your computer”
“Your administrator has blocked this application because it potentially poses a security risk to your computer”
Issue:
During the installation of BIM 360 Glue Desktop, you see this error message:
Application Install – Security Warning
Your administrator has blocked this application because it potentially poses a security risk to your computer.
Causes:
The Windows ClickOnce trust prompt is disabled. ClickOnce, a component of the .NET Framework, must be enabled to run BIM 360 Glue.
Solution:
To resolve the issue, enable this registry key:
- HKLM\SOFTWARE\MICROSOFT\.NETFramework\Security\TrustManager\PromptingLevel\Internet
Note: This operation should be performed by an administrator with a technical understanding of the Windows Registry.
To enable the registry key:
- Open the registry editor:
- Find the following registry key:
\HKEY_LOCAL_MACHINE\SOFTWARE\MICROSOFT\.NETFramework\Security\TrustManager\PromptingLevel\Internet
If the key does not exist, create it.
- Set the value to Enabled.
Warning!
Problems caused by improperly editing the Windows registry could render your computer operating system unusable. Microsoft provides a wealth of critical information that you need to know about the registry in the Microsoft Knowledgebase. Use the Microsoft Registry Editor only at your own risk and only after backing up the registry as outlined for your operating system in the Microsoft article How to back up and restore the registry in Windows and in the related solution How to back up the system registry. Additional information about the registry is also contained in the Help topics in the Microsoft Registry Editor.
What does Robocopy mean by tweaked, lonely, and extra?
The Robocopy documentation for the option/itis simply “Includes ‘tweaked’ files”. What does “tweaked” mean?The Robocopy documentation for the option
/xlis simply “Excludes ‘lonely’ files and directories”. What does “lonely” mean?“Tweaked”:
A Tweaked file is defined to be one that exists in both the source and destination, with identical size and timestamp, but different attribute settings.
“Lonely”:
A “lonely” file is present in source but not destination; excluding lonely will prevent any new files being added to the destination.
“Extra” (the other one that isn’t explained well):
An “extra” file is present in destination but not source; excluding extras will prevent any deletions from the destination.
Source: What does Robocopy mean by tweaked, lonely, and extra? – Super User
Suggested Robocopy Switches Explained | RainingForks Tech Blog
Suggested Robocopy Switches Explained
Windows’ robocopy.exe is a great command line program to quickly copy or fully backup your files, but there’s a lot of confusion out there about how to use its (not very well-documented) switches. Here’s just what you need to know:
First of all, you probably already know that typing “robocopy /?” will give you a long list of switches to choose from. Start there if you’re confused. But since there are a LOT of choices, and they’re not well-explained, here’s a run-down of what I typically use, as I go about my day as an IT guy:
The basic format is: robocopy <source path> <destination path> <switches>
NOTE: I’ve found that using robocopy to copy across a network doesn’t always work using mapped drives! Instead, use the full path (especially important when running as a Task in Windows Task Manager). For example, instead of “robocopy C:\Foo S:\Foo” do this: “robocopy C:\Foo \\SERVER\Foo”
Another tip is if you’re using file paths that contain spaces, then you need to enclose each path in quotes. If no spaces, then quotes are optional.
/FFT is necessary to copy between file systems, such as Windows’ NTFS and Linux’s EXT4. If you don’t use this you can get wierdness like files looking like they’re newer than they really are, etc., since the two file systems keep time differently.
/COPYALL copies ALL aspects of the file/directory, including ownership and permissions info. Required if you’re backing up a server or something that you want to maintain group/user permissions, etc. for. (NOTE: Don’t use this switch when copying files from Linux to Windows if you aren’t logged in as the same user with admin rights on both machines! If you do, you’ll get a lot of errors like “A required privilege is not held by the client” and “The revision level is unknown” as it creates a bunch of empty folders at your Windows destination, but skips copying all your files! Instead you can use the /COPY:DT mentioned below, and if you really need to backup your Linux ownership & permissions info, save all the files in a tarball and then just backup that single file containing the directories & files with their attributes intact to Windows.)
/COPY:DT to just copy files & date/time stamps. This is good if you’re just copying some files to give to a friend, and don’t need permissions, etc. copied. Also good for copying files from Linux to Windows (see “note” in /COPYALL above).
/FP outputs the full path so you can more easily see where it is while it’s running.
/MIR exactly mirrors the files & directories, so things at the destination will be deleted if they’re not at the source. (This is the same as using /PURGE (which deletes stuff at the destination that doesn’t match) with /E (which includes Empty subdirectories)
/ZB tells robocopy to use restartable mode (which you want for large files, especially over WAN/unstable connections, since it’ll try to pick up where it left off if the connection gets dropped or there’s corruption mid-copy), and if access is denied, then it’ll use Backup mode, which allows you to copy files you might otherwise not have access to, assuming it’s being run under an account with sufficient privileges (e.g., member of Backup Operators, Administrators, etc.). (NOTE: the /Z switch sometimes slows down the copy speed, so if you don’t need it, don’t use it, especially if you feel like your Robocopy job is taking longer than it should. Sometimes there’s no speed difference, and sometimes it can be dramatic.)
/MT stands for Multi-Threaded, and tells robocopy to copy multiple files at once. The default number of threads is 8 (max is 128), but be careful, as running this over a network can really saturate your bandwidth, leaving none for anyone else. As a result, you may want to skip this one or try specifying less threads by doing something like /MT:2 which will just run two threads (instead of 1, which is what you get if you omit /MT entirely). (NOTE: This is only available in newer versions of Robocopy (Win7/2008R2 and later). If you’re running older versions (or just don’t feel like bothering with this switch), you can simply open multiple command prompt windows and run it in multiple instances – I often will run two or three Robocopy batch files simultaneously. Also, this switch will make file copy progress numbers confusing, so it’s best to use the /NP switch mentioned below to disable outputting the copy’s progress. Some people speculate that running multiple threads can increase fragmentation, but I haven’t seen any hard evidence of this, and with increasing adoption of solid state drives, it may not matter for much longer anyway.)
/R:1 /W:3 are two switches you probably want to use together to tell robocopy how many times to retry accessing a file (1 in this example), and how long to wait between retries (3 seconds in this example). If you leave this out, it’ll retry 1 million times with a 30 second wait between each one when it encounters a file it can’t access!!!
/XD is what you use when you want to tell robocopy to skip (i.e., exclude) a directory. Just follow /XD with a space and then the path to what you want excluded. If there are multiple directories you’d like to skip, separate them with a space. For example: /XD “C:\Foo\private stuff” “C:\Foo\plans for world domination”
/LOG:C:\LogFileName.txt /TEE /NP are three switches you’ll want to use together if you want to write the results of the copy to a log file (called “C:\LogFIleName.txt” in this example). If you want it to write what’s happening to the screen as well as to the log file, then you’ll also want to include /TEE. And, possibly most importantly, you want to include /NP in there so that it does NOT show the progress as each file copies. If you leave this out, then your log file will be filled with every single percentage complete it displays! So you’ll have something like this: “0.0% 0.1% 0.2%” and so on, to 100% FOR EACH FILE, which is nuts.
Finally, if you want to append log file output to the end of an existing file, rather than creating a new file every time, you can modify the above line to include a plus sign, like so: /LOG+:C:\LogFileName.txt
That’s pretty much all you need to know! I figured most of this out from trial & error, as well as some internet searches. Unfortunately, I’ve read so many incorrect, or confused posts about robocopy on the internet over the years, that I wanted to write this to set things straight. Hopefully you find this helpful – if nothing else, at least I’ll now have a handy reference for the next time I need to put together a robocopy command… 😉
Source: Suggested Robocopy Switches Explained | RainingForks Tech Blog
How To Install Windows Apps Without a Microsoft Account – CCM
How To Install Windows Apps Without a Local Account
- Right-click on the Start menu to display your Power User options. Select the Run command. Next, type in
regeditfollowed by Enter to open the Registry Editor:
- Navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System.
- Click on the Edit menu, followed by New > DWORD (32-bit) Value. Rename the new key as MSAOptional:
- Set the value of MSAOptional to 1. This will make your Microsoft accounts optional:
- Close the Registry Editor and restart your computer. Once your computer loads, open the Windows Store and search for your desired app. Skip the sign-up procedure and proceed directly to your download.
Source: How To Install Windows Apps Without a Microsoft Account – CCM
Mount an NFS Share on Windows
Requirements
- Windows computer running server or desktop OS that is in support.
Mounting the NFS Share
- Make sure that the NFS Client is installed.
- Open a Powershell command prompt.
- Run the appropriate command for your situation:
- Server OS: Install-WindowsFeature NFS-Client
- Desktop OS: Enable-WindowsOptionalFeature -FeatureName ServicesForNFS-ClientOnly, ClientForNFS-Infrastructure -Online -NoRestart
- Mount the share using the following command, after making the required modifications (Note – mount cmd from CMD shell, not powershell):
- mount -o anon nfs.share.server.name:/share-name X:
- Replace nfs.share.server.name with the name of the server the NFS share is on (eg. files.umn.edu)
- Replace share-name with the name of the NFS share (eg. OIT-Test)
- Replace X: with the desired drive letter.
- mount -o anon nfs.share.server.name:/share-name X:
Enable Write Permissions for the Anonymous User
With the default options you will only have read permissions when mounting a UNIX share using the anonymous user. We can give the anonymous user write permissions by changing the UID and GID that it uses to mount the share.
The image below shows the a share mounted using the default settings.

To change the UID and GID we need to make a simple change to the Windows registry by performing the following steps:
- Open regedit by typing it in the search box end pressing Enter.
- Browse to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ClientForNFS\CurrentVersion\Default.
- Create a new New DWORD (32-bit) Value inside the Default folder named AnonymousUid and assign the UID found on the UNIX directory as shared by the NFS system. (Use Decimal values)
- Create a new New DWORD (32-bit”) Value inside the Default folder named AnonymousGid and assign the GID found on the UNIX directory as shared by the NFS system. (Use Decimal values).

- Restart the NFS client or reboot the machine to apply the changes.
- To Restart NFS client without having to restart Windows:
- net stop nfsclnt
net stop nfsrdr
net start nfsrdr
net start nfsclnt
- net stop nfsclnt
How to Mount an NFS Share
Assuming your NAS device is on the same network as your Windows machine and the IP address of the device is 10.1.1.211, the following command will mount a share on the NFS system at /mnt/vms.
C:\Users\windows> mount -o anon \\10.1.1.211\mnt\vms Z:
Z: is now successfully connected to \\10.1.1.211\mnt\vms
The command completed successfully.
The share is now mounted and we can access the data by navigating to the Z: drive.
Manage Stored Usernames and Passwords in Windows 10
The Stored User Names and Passwords Tool in Windows 10 lets you securely manage user names and passwords as a part of your profile. It lets you automatically enter saved user names and passwords for various network resources, servers, websites, and applications, to authenticate yourself. In this post we will see how to add, remove, edit, backup, restore Stored Usernames and Passwords & Credentials in Windows 10/8/7.
Find stored Usernames & Passwords in Windows 10
To directly access the Stored User Names and Passwords Control Panel applet, via WinX Menu, open Command Prompt (Admin), type the following rundll32 command, and hit Enter:
rundll32.exe keymgr.dll,KRShowKeyMgrThe Stored User Names and Passwords box will open.
Here you will be able to see the saved passwords and user names.
To add a new credential, press the Add button and fill in the required details as follows:
To delete a saved password, select the credential and click on the Remove button.
To edit a password, click the Edit button. Here you will be editing the details.
It could be a Windows logon credential or a Website or Program password.
It is always a good idea to back up the stored user names and passwords. To do this, click on the Backup button to open the following wizard.
Select and browse to the backup location, click Next, and follow the wizard to its completion.
Should the need arise, you can always restore the backup, by clicking on the Restore button and browsing to the backup file location and selecting it.
That’s it!
Windows Sandbox configuration – Windows security | Microsoft Docs
Windows Sandbox supports simple configuration files, which provide a minimal set of customization parameters for Sandbox. This feature can be used with Windows 10 build 18342 or later. Windows Sandbox configuration files are formatted as XML and are associated with Sandbox via the .wsb file extension.
A configuration file enables the user to control the following aspects of Windows Sandbox:
- vGPU (virtualized GPU): Enable or disable the virtualized GPU. If vGPU is disabled, the sandbox will use Windows Advanced Rasterization Platform (WARP).
- Networking: Enable or disable network access within the sandbox.
- Mapped folders: Share folders from the host with read or write permissions. Note that exposing host directories may allow malicious software to affect the system or steal data.
- Logon command: A command that’s executed when Windows Sandbox starts.
- Audio input: Shares the host’s microphone input into the sandbox.
- Video input: Shares the host’s webcam input into the sandbox.
- Protected client: Places increased security settings on the RDP session to the sandbox.
- Printer redirection: Shares printers from the host into the sandbox.
- Clipboard redirection: Shares the host clipboard with the sandbox so that text and files can be pasted back and forth.
- Memory in MB: The amount of memory, in megabytes, to assign to the sandbox.
Source: Windows Sandbox configuration – Windows security | Microsoft Docs
Settings Pages List of URI Shortcuts in Windows 10 | Tutorials
List of Shortcuts to Directly Open Pages in Settings in Windows 10
The Settings app is where you can change most settings at in Windows 10. Settings will eventually replace the Control Panel.
Almost every Settings page has its own URI (Uniform Resource Identifier) that allows you to open any Setting page directly from a command via the command prompt, Run (Win+R) dialog, address bar of File Explorer, address bar of web browser, and in scripts (ex: .bat). You can also use these commands to create shortcuts.
This tutorial will provide you with a list of ms-settings URI commands to directly open or create shortcuts for any Settings page in Windows 10.
To use the URI commands to open Settings pages from a command prompt or script (ex: .bat), you would need to add the Start command with a space after it in front of the URI command in the table below.
For example, command below to open the About Settings page (System category) in command prompt:
Start ms-settings:about
EXAMPLE: Settings home page

| Category | Settings page | URI Command (shortcut) |
| Settings home page | ms-settings: | |
| System | ||
| Display | ms-settings:display | |
|
Night light settings
|
ms-settings:nightlight | |
|
Advanced scaling settings
|
ms-settings:display-advanced | |
|
Connect to a wireless display
|
ms-settings-connectabledevices:devicediscovery | |
|
Graphics settings
|
ms-settings:display-advancedgraphics | |
| Sound (build 17063) | ms-settings:sound | |
|
Manage sound devices
|
ms-settings:sound-devices | |
|
App volume and device preferences
|
ms-settings:apps-volume | |
| Notifications & actions | ms-settings:notifications | |
| Focus assist (build 17074) | ms-settings:quiethours or ms-settings:quietmomentshome |
|
|
During these hours
|
ms-settings:quietmomentsscheduled | |
|
Duplicating my display (When I’m duplicating my display)
|
ms-settings:quietmomentspresentation | |
|
Playing a game full screen (When I’m playing a game)
|
ms-settings:quietmomentsgame | |
| Power & sleep | ms-settings:powersleep | |
| Battery | ms-settings:batterysaver | |
|
See which apps are affecting your battery life
|
ms-settings:batterysaver-usagedetails | |
|
Battery Saver settings
|
ms-settings:batterysaver-settings | |
| Storage | ms-settings:storagesense | |
|
Configure Storage Sense or run it now
|
ms-settings:storagepolicies | |
|
Change where new content is saved
|
ms-settings:savelocations | |
| Tablet | ms-settings:tabletmode | |
| Multitasking | ms-settings:multitasking | |
| Projecting to this PC | ms-settings:project | |
| Shared experiences | ms-settings:crossdevice | |
| Clipboard (build 17666) | ms-settings:clipboard | |
| Remote Desktop | ms-settings:remotedesktop | |
| Device Encryption (if available) | ms-settings:deviceencryption | |
| About | ms-settings:about | |
| Devices | ||
| Bluetooth & other devices | ms-settings:bluetooth or ms-settings:connecteddevices |
|
| Printers & scanners | ms-settings:printers | |
| Mouse | ms-settings:mousetouchpad | |
| Touchpad | ms-settings:devices-touchpad | |
| Typing | ms-settings:typing | |
|
Hardware keyboard – Text suggestions
|
ms-settings:devicestyping-hwkbtextsuggestions | |
| Wheel (Only available if Dial is paired) | ms-settings:wheel | |
| Pen & Windows Ink | ms-settings:pen | |
| AutoPlay | ms-settings:autoplay | |
| USB | ms-settings:usb | |
| Phone (build 16251) | ||
| Phone | ms-settings:mobile-devices | |
|
Add a phone
|
ms-settings:mobile-devices-addphone | |
|
Your Phone (opens app)
|
ms-settings:mobile-devices-addphone-direct | |
| Network & Internet | ms-settings:network | |
| Status | ms-settings:network-status | |
|
Data usage
|
ms-settings:datausage | |
|
Show available networks
|
ms-availablenetworks: | |
| Cellular & SIM | ms-settings:network-cellular | |
| Wi-Fi | ms-settings:network-wifi | |
|
Show available networks
|
ms-availablenetworks: | |
|
Manage known networks
|
ms-settings:network-wifisettings | |
| Wi-Fi Calling | ms-settings:network-wificalling | |
| Ethernet | ms-settings:network-ethernet | |
| Dial-up | ms-settings:network-dialup | |
| DirectAccess (Only available if DirectAccess is enabled) | ms-settings:network-directaccess | |
| VPN | ms-settings:network-vpn | |
| Airplane mode | ms-settings:network-airplanemode or ms-settings:proximity |
|
| Mobile hotspot | ms-settings:network-mobilehotspot | |
| NFC | ms-settings:nfctransactions | |
| Proxy | ms-settings:network-proxy | |
| Personalization | ms-settings:personalization | |
| Background | ms-settings:personalization-background | |
| Colors | ms-settings:personalization-colors or ms-settings:colors |
|
| Lock screen | ms-settings:lockscreen | |
| Themes | ms-settings:themes | |
| Fonts (build 17083) | ms-settings:fonts | |
| Start | ms-settings:personalization-start | |
|
Choose which folders appear on Start
|
ms-settings:personalization-start-places | |
| Taskbar | ms-settings:taskbar | |
| Apps | ||
| Apps & features | ms-settings:appsfeatures | |
|
Manage optional features
|
ms-settings:optionalfeatures | |
| Default apps | ms-settings:defaultapps | |
| Offline maps | ms-settings:maps | |
|
Download maps
|
ms-settings:maps-downloadmaps | |
| Apps for websites | ms-settings:appsforwebsites | |
| Video playback (build 16215) | ms-settings:videoplayback | |
| Startup (build 17017) | ms-settings:startupapps | |
| Accounts | ||
| Your info | ms-settings:yourinfo | |
| Email & accounts | ms-settings:emailandaccounts | |
| Sign-in options | ms-settings:signinoptions | |
|
Windows Hello face setup
|
ms-settings:signinoptions-launchfaceenrollment | |
|
Windows Hello fingerprint setup
|
ms-settings:signinoptions-launchfingerprintenrollment | |
|
Security Key setup
|
ms-settings:signinoptions-launchsecuritykeyenrollment | |
|
Dynamic Lock
|
ms-settings:signinoptions-dynamiclock | |
| Access work or school | ms-settings:workplace | |
| Family & other users | ms-settings:otherusers | |
|
Set up a kiosk
|
ms-settings:assignedaccess | |
| Sync your settings | ms-settings:sync | |
| Time & Language | ||
| Date & time | ms-settings:dateandtime | |
| Region | ||
| Japan IME settings (available if Microsoft Japan input method editor installed) | ms-settings:regionlanguage-jpnime | |
| Pinyin IME settings (available if Microsoft Pinyin input method editor installed) | ms-settings:regionlanguage-chsime-pinyin | |
| Wubi IME settings (available if Microsoft Wubi input method editor installed) | ms-settings:regionlanguage-chsime-wubi | |
| Language | ms-settings:regionlanguage | |
|
Windows display language
|
ms-settings:regionlanguage-setdisplaylanguage | |
|
Add Display language
|
ms-settings:regionlanguage-adddisplaylanguage | |
| Speech | ms-settings:speech | |
| Gaming | ||
| Xbox Game bar | ms-settings:gaming-gamebar | |
| Captures | ms-settings:gaming-gamedvr | |
| Game Mode | ms-settings:gaming-gamemode | |
| Xbox Networking (build 16226) | ms-settings:gaming-xboxnetworking | |
| Extras | (Only available if “settings apps” are installed (e.g. by 3rd party)) | |
| Extras | ms-settings:extras | |
| Ease of Access | ||
| Display (build 17025) | ms-settings:easeofaccess-display | |
| Mouse pointer (build 17040) | ms-settings:easeofaccess-cursorandpointersize OR ms-settings:easeofaccess-MousePointer |
|
| Text cursor | ms-settings:easeofaccess-cursor | |
| Magnifier | ms-settings:easeofaccess-magnifier | |
| Color Filters (build 17025) | ms-settings:easeofaccess-colorfilter | |
| High Contrast | ms-settings:easeofaccess-highcontrast | |
| Narrator | ms-settings:easeofaccess-narrator | |
|
Start Narrator after sign-in for me
|
ms-settings:easeofaccess-narrator-isautostartenabled | |
| Audio (build 17035) | ms-settings:easeofaccess-audio | |
| Closed captions | ms-settings:easeofaccess-closedcaptioning | |
| Speech (build 17035) | ms-settings:easeofaccess-speechrecognition | |
| Keyboard | ms-settings:easeofaccess-keyboard | |
| Mouse | ms-settings:easeofaccess-mouse | |
| Eye Control (build 17035) | ms-settings:easeofaccess-eyecontrol | |
| Search (version 1903) | ||
| Permissions & history | ms-settings:search-permissions | |
| Searching Windows | ms-settings:cortana-windowssearch | |
| Privacy | ms-settings:privacy | |
| General | ms-settings:privacy | |
| Speech | ms-settings:privacy-speech | |
| Inking & typing personalization | ms-settings:privacy-speechtyping | |
| Diagnostics & feedback | ms-settings:privacy-feedback | |
|
View diagnostic data
|
ms-settings:privacy-feedback-telemetryviewergroup | |
| Activity history (build 17040) | ms-settings:privacy-activityhistory | |
| Location | ms-settings:privacy-location | |
| Camera | ms-settings:privacy-webcam | |
| Microphone | ms-settings:privacy-microphone | |
| Voice activation | ms-settings:privacy-voiceactivation | |
| Notifications | ms-settings:privacy-notifications | |
| Account info | ms-settings:privacy-accountinfo | |
| Contacts | ms-settings:privacy-contacts | |
| Calendar | ms-settings:privacy-calendar | |
| Phone calls | ms-settings:privacy-phonecalls | |
| Call history | ms-settings:privacy-callhistory | |
| ms-settings:privacy-email | ||
| Eye tracker (requires eyetracker hardware) | ms-settings:privacy-eyetracker | |
| Tasks | ms-settings:privacy-tasks | |
| Messaging | ms-settings:privacy-messaging | |
| Radios | ms-settings:privacy-radios | |
| Other devices | ms-settings:privacy-customdevices | |
| Background apps | ms-settings:privacy-backgroundapps | |
| App diagnostics | ms-settings:privacy-appdiagnostics | |
| Automatic file downloads | ms-settings:privacy-automaticfiledownloads | |
| Documents | ms-settings:privacy-documents | |
| Downloads folder (build 19536) | ms-settings:privacy-downloadsfolder | |
| Pictures | ms-settings:privacy-pictures | |
| Videos | ms-settings:privacy-documents | |
| File system | ms-settings:privacy-broadfilesystemaccess | |
| Screen capture border (build 19536) | ||
| Programmatic screen capture (build 19536) | ||
| Update & Security | ms-settings:windowsupdate | |
| Windows Update | ms-settings:windowsupdate | |
|
Check for updates
|
ms-settings:windowsupdate-action | |
|
View optional updates
|
ms-settings:windowsupdate-optionalupdates | |
|
Change active hours
|
ms-settings:windowsupdate-activehours | |
|
View update history
|
ms-settings:windowsupdate-history | |
|
Restart options
|
ms-settings:windowsupdate-restartoptions | |
|
Advanced options
|
ms-settings:windowsupdate-options | |
| Delivery Optimization | ms-settings:delivery-optimization | |
| Windows Security | ms-settings:windowsdefender | |
|
Open Windows Security
|
windowsdefender: | |
| Backup | ms-settings:backup | |
| Troubleshoot | ms-settings:troubleshoot | |
| Recovery | ms-settings:recovery | |
| Activation | ms-settings:activation | |
| Find My Device | ms-settings:findmydevice | |
| For developers | ms-settings:developers | |
| Windows Insider Program | ms-settings:windowsinsider or ms-settings:windowsinsider-optin |
|
| Mixed reality | ms-settings:holographic | |
| Audio and speech | ms-settings:holographic-audio | |
| Environment | ms-settings:privacy-holographic-environment | |
| Headset display | ms-settings:holographic-headset | |
| Uninstall | ms-settings:holographic-management | |
| Surface Hub | ||
| Accounts | ms-settings:surfacehub-accounts | |
| Team Conferencing | ms-settings:surfacehub-calling | |
| Team device management | ms-settings:surfacehub-devicemanagenent | |
| Session cleanup | ms-settings:surfacehub-sessioncleanup | |
| Welcome screen | ms-settings:surfacehub-welcome |
Source: Settings Pages List of URI Shortcuts in Windows 10 | Tutorials
Rundll32 Commands List for Windows 10 | Tutorials
List of Rundll32 Commands in Windows 10
Windows Rundll32 commands loads and runs 32-bit dynamic-link libraries (DLLs) that can be used for directly invoking specified functions, or used to create shortcuts with.
This tutorial will provide you with a list of Rundll32 commands that can be used to quickly invoke functions in Windows 10.
| Function | Rundll32 command |
| About Windows | Rundll32.exe shell32.dll,ShellAbout |
| Add Network Location Wizard | Rundll32 %SystemRoot%\system32\shwebsvc.dll,AddNetPlaceRunDll |
| Add Printer Wizard | Rundll32.exe shell32.dll,SHHelpShortcuts_RunDLL AddPrinter |
| Add Standard TCP/IP Printer Port Wizard | Rundll32.exe tcpmonui.dll,LocalAddPortUI |
| Control Panel | Rundll32.exe shell32.dll,Control_RunDLL |
| Date and Time | Rundll32.exe shell32.dll,Control_RunDLL timedate.cpl |
| Date and Time – Additional Clocks tab | Rundll32.exe shell32.dll,Control_RunDLL timedate.cpl,,1 |
| Desktop Icon Settings | Rundll32.exe shell32.dll,Control_RunDLL desk.cpl,,0 |
| Device Installation Settings | Rundll32.exe %SystemRoot%\System32\newdev.dll,DeviceInternetSettingUi |
| Device Manager | Rundll32.exe devmgr.dll DeviceManager_Execute |
| Display Settings | Rundll32.exe shell32.dll,Control_RunDLL desk.cpl |
| Ease of Access Center | Rundll32.exe shell32.dll,Control_RunDLL access.cpl |
| Environment Variables | Rundll32.exe sysdm.cpl,EditEnvironmentVariables |
| File Explorer Options – General tab | Rundll32.exe shell32.dll,Options_RunDLL 0 |
| File Explorer Options – Search tab | Rundll32.exe shell32.dll,Options_RunDLL 2 |
| File Explorer Options – View tab | Rundll32.exe shell32.dll,Options_RunDLL 7 |
| Fonts folder | Rundll32.exe shell32.dll,SHHelpShortcuts_RunDLL FontsFolder |
| Forgotten Password Wizard | Rundll32.exe keymgr.dll,PRShowSaveWizardExW |
| Game Controllers | Rundll32.exe shell32.dll,Control_RunDLL joy.cpl |
| Hibernate or Sleep | Rundll32.exe powrprof.dll,SetSuspendState |
| Indexing Options | Rundll32.exe shell32.dll,Control_RunDLL srchadmin.dll |
| Infared | Rundll32.exe shell32.dll,Control_RunDLL irprops.cpl |
| Internet Explorer – delete all browsing history | Rundll32.exe InetCpl.cpl,ClearMyTracksByProcess 255 |
| Internet Explorer – delete all browsing history and add-ons history | Rundll32.exe InetCpl.cpl,ClearMyTracksByProcess 4351 |
| Internet Explorer – delete cookies and website data | Rundll32.exe InetCpl.cpl,ClearMyTracksByProcess 2 |
| Internet Explorer – delete download history | Rundll32.exe InetCpl.cpl,ClearMyTracksByProcess 16384 |
| Internet Explorer – delete form data | Rundll32.exe InetCpl.cpl,ClearMyTracksByProcess 16 |
| Internet Explorer – delete history | Rundll32.exe InetCpl.cpl,ClearMyTracksByProcess 1 |
| Internet Explorer – delete passwords | Rundll32.exe InetCpl.cpl,ClearMyTracksByProcess 32 |
| Internet Explorer – delete temporary Internet files and website files | Rundll32.exe InetCpl.cpl,ClearMyTracksByProcess 8 |
| Internet Explorer – Organize Favorites | Rundll32.exe shdocvw.dll,DoOrganizeFavDlg |
| Internet Properties – General tab | Rundll32.exe shell32.dll,Control_RunDLL inetcpl.cpl |
| 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 |
| Keyboard Properties | Rundll32.exe shell32.dll,Control_RunDLL main.cpl @1 |
| Lock PC | Rundll32.exe user32.dll,LockWorkStation |
| Map Network Drive wizard | Rundll32.exe shell32.dll,SHHelpShortcuts_RunDLL Connect |
| Mouse Button swap left and right button function | Rundll32.exe user32.dll,SwapMouseButton |
| Mouse Properties – Buttons tab | Rundll32.exe shell32.dll,Control_RunDLL main.cpl |
| Mouse Properties – Pointers tab | Rundll32.exe shell32.dll,Control_RunDLL main.cpl,,1 |
| Mouse Properties – Pointer Options tab | Rundll32.exe shell32.dll,Control_RunDLL main.cpl,,2 |
| Mouse Properties – Wheel tab | Rundll32.exe shell32.dll,Control_RunDLL main.cpl,,3 |
| Mouse Properties – Hardware tab | Rundll32.exe shell32.dll,Control_RunDLL main.cpl,,4 |
| Network Connections | Rundll32.exe shell32.dll,Control_RunDLL ncpa.cpl |
| ODBC Data Source Administrator | Rundll32.exe shell32.dll,Control_RunDLL odbccp32.cpl |
| Offline Files (General tab) | Rundll32.exe Shell32.dll,Control_RunDLL cscui.dll,,0 |
| Offline Files (Disk Usage tab) | Rundll32.exe Shell32.dll,Control_RunDLL cscui.dll,,1 |
| Offline Files (Encryption tab) | Rundll32.exe Shell32.dll,Control_RunDLL cscui.dll,,2 |
| Offline Files (Network tab) | Rundll32.exe Shell32.dll,Control_RunDLL cscui.dll,,3 |
| Pen and Touch | Rundll32.exe shell32.dll,Control_RunDLL tabletpc.cpl |
| Personalization – Background Settings | Rundll32.exe shell32.dll,Control_RunDLL desk.cpl,,2 |
| Power Options | Rundll32.exe shell32.dll,Control_RunDLL powercfg.cpl |
| Printer User Interface | Rundll32.exe Printui.dll,PrintUIEntry /? |
| Printers folder | Rundll32.exe shell32.dll,SHHelpShortcuts_RunDLL PrintersFolder |
| Process idle tasks | Rundll32.exe advapi32.dll,ProcessIdleTasks |
| Programs and Features | Rundll32.exe shell32.dll,Control_RunDLL appwiz.cpl,,0 |
| Region – Formats tab | Rundll32.exe shell32.dll,Control_RunDLL Intl.cpl,,0 |
| Region – Location tab | Rundll32.exe shell32.dll,Control_RunDLL Intl.cpl,,1 |
| Region – Administrative tab | Rundll32.exe shell32.dll,Control_RunDLL Intl.cpl,,2 |
| Safely Remove Hardware | Rundll32.exe shell32.dll,Control_RunDLL HotPlug.dll |
| Screen Saver Settings | Rundll32.exe shell32.dll,Control_RunDLL desk.cpl,,1 |
| Security and Maintenance | Rundll32.exe shell32.dll,Control_RunDLL wscui.cpl |
| Set Program Access and Computer Defaults | Rundll32.exe shell32.dll,Control_RunDLL appwiz.cpl,,3 |
| Set Up a Network wizard | Rundll32.exe shell32.dll,Control_RunDLL NetSetup.cpl |
| Sleep or Hibernate | Rundll32.exe powrprof.dll,SetSuspendState |
| Sound – Playback tab | Rundll32.exe shell32.dll,Control_RunDLL Mmsys.cpl,,0 |
| Sound – Recording tab | Rundll32.exe shell32.dll,Control_RunDLL Mmsys.cpl,,1 |
| Sound – Sounds tab | Rundll32.exe shell32.dll,Control_RunDLL Mmsys.cpl,,2 |
| Sound – Communications tab | Rundll32.exe shell32.dll,Control_RunDLL Mmsys.cpl,,3 |
| Speech Properties – Text to Speech tab | Rundll32.exe shell32.dll,Control_RunDLL %SystemRoot%\System32\Speech\SpeechUX\sapi.cpl,,1 |
| Start Settings | Rundll32.exe shell32.dll,Options_RunDLL 3 |
| Stored User Names and Passwords | Rundll32.exe keymgr.dll,KRShowKeyMgr |
| System Properties – Computer Name tab | Rundll32.exe shell32.dll,Control_RunDLL Sysdm.cpl,,1 |
| System Properties – Hardware tab | Rundll32.exe shell32.dll,Control_RunDLL Sysdm.cpl,,2 |
| System Properties – Advanced tab | Rundll32.exe shell32.dll,Control_RunDLL Sysdm.cpl,,3 |
| System Properties – System Protection tab | Rundll32.exe shell32.dll,Control_RunDLL Sysdm.cpl,,4 |
| System Properties – Remote tab | Rundll32.exe shell32.dll,Control_RunDLL Sysdm.cpl,,5 |
| Taskbar Settings | Rundll32.exe shell32.dll,Options_RunDLL 1 |
| Text Services and Input Languages | Rundll32.exe Shell32.dll,Control_RunDLL input.dll,,{C07337D3-DB2C-4D0B-9A93-B722A6C106E2} |
| User Accounts | Rundll32.exe shell32.dll,Control_RunDLL nusrmgr.cpl |
| Windows Features | Rundll32.exe shell32.dll,Control_RunDLL appwiz.cpl,,2 |
| Windows Firewall | Rundll32.exe shell32.dll,Control_RunDLL firewall.cpl |
| Windows To Go Startup Options | Rundll32.exe pwlauncher.dll,ShowPortableWorkspaceLauncherConfigurationUX |








