Windows 10: Create Date and Time Shortcut in Windows 10

Discus and support Create Date and Time Shortcut in Windows 10 in Windows 10 Tutorials to solve the problem; How to: Create Date and Time Shortcut in Windows 10 How to Create Date and Time Shortcut in Windows 10 A calendar date is a reference to a... Discussion in 'Windows 10 Tutorials' started by Brink, Jan 19, 2017.

  1. Brink
    Brink New Member

    Create Date and Time Shortcut in Windows 10


    How to: Create Date and Time Shortcut in Windows 10

    How to Create Date and Time Shortcut in Windows 10


    A calendar date is a reference to a particular day represented within a calendar system. The calendar date allows the specific day to be identified.

    Your PC's clock is used to record the time whenever you create or modify files on your PC. You can change the clock's time and time zone. Time is a measure in which events can be ordered from the past through the present into the future, and also the measure of durations of events and the intervals between them.

    This tutorial will show you how to create or download a Date and Time shortcut that opens directly to the Settings or Control Panel location in Windows 10.

    You must be signed in as an administrator to change the date and time for the system.



    Contents


    EXAMPLE: "Date and Time" in Control Panel and Settings

    Create Date and Time Shortcut in Windows 10 [​IMG]

    Create Date and Time Shortcut in Windows 10 [​IMG]







    OPTION ONE [/i] To Download a Date and Time Shortcut
    1 Click/tap on the Download button below for the shortcut you want to download its .zip file.
    Date_and_Time_in_Control_Panel_shortcut.zip

    Download

    OR

    Date_and_Time_in_Settings_shortcut.zip

    Download
    2 Save the .zip file to your desktop.

    3 Unblock the .zip file..

    4 Open the .zip file, and extract (drag and drop) the shortcut to your desktop.

    5 If you like, you can assign a keyboard shortcut to, or move this shortcut to where you like for easy use.

    6 When finished, you can delete the downloaded .zip file if you like.





    OPTION TWO [/i] To Manually Create a Date and Time Shortcut
    1 Right click or press and hold on an empty area on your desktop, and click/tap on New and Shortcut.

    2 Copy and paste the location below you want use into the location area, and click/tap on Next. (see screenshot below)
    (Date and Time in Control Panel)
    %windir%\System32\rundll32.exe shell32.dll,Control_RunDLL timedate.cpl,,0

    OR

    (Date and Time in Settings)
    %windir%\explorer.exe ms-settings:dateandtime


    Create Date and Time Shortcut in Windows 10 [​IMG]

    3 Type Date and Time for the name, and click/tap on the Finish button. (see screenshot below)

    You could name this shortcut anything you would like though.


    Create Date and Time Shortcut in Windows 10 [​IMG]

    4 Right click or press and hold on the new Date and Time shortcut, and click/tap on Properties.

    5 Click/tap on the Shortcut tab, then click/tap on the Change Icon button. (see screenshot below)

    Create Date and Time Shortcut in Windows 10 [​IMG]

    6 In the line under "Look for icons in this file", copy and paste the location below, and press Enter. (see screenshot below)
    %SystemRoot%\system32\timedate.cpl


    Create Date and Time Shortcut in Windows 10 [​IMG]

    7 Select the icon highlighted in blue above, and click/tap on OK. (see screenshot above)

    You could use any icon that you would like instead though.


    8 Click/tap on OK. (see screenshot below step 5)

    9 If you like, you can assign a keyboard shortcut to, or move this shortcut to where you like for easy use.

    That's it,
    Shawn


    Related Tutorials

    :)
     
    Brink, Jan 19, 2017
    #1
  2. Frick Win User

    Windows 10 commands/shortcuts/env. var.

    Keyboard shortcuts to open programs:

    Create a shortcut on the desktop to whatever program you want. Right click -> Properties and fill in the field there. Sadly the shortcut needs to remain on the desktop, but you can hide it.

    Fun fact: If you had keyboard shortcuts for programs pinned to your Windows 7 start menu, those shortcuts still work when you update to Windows 10.
     
    Frick, Oct 26, 2019
    #2
  3. How to create a shortcut for a keyboard shortcut.

    Hi Marcos,

    Welcome to Microsoft Community.

    I understand that you are willing to create Keyboard shortcut on Windows 10. I will certainly help you.

    I suggest you to follow the steps in the below Microsoft article to create
    a keyboard shortcut for an app.

    Create keyboard shortcuts to open desktop apps

    Note: The troubleshooting steps in the above link are meant for windows 8, however, you can use the same for windows 10 as well.

    Refer below article for more information on Keyboard shortcuts.

    Keyboard shortcuts

    Please post back with above information and we will be glad to assist you further.

    Thank you.
     
    Vinodh_Kumar V, Oct 26, 2019
    #3
  4. Create Date and Time Shortcut in Windows 10

    Unable to create shortcuts in Windows 10

    Hi Terry,

    Provide us with additional information to assist you further:

    • Have you made any changes to the operating system prior to this issue?
    • Does this issue confined to create a shortcut for any specific application?

    As a workaround, I suggest you to try creating shortcuts in Safe mode with networking and check if it helps.

    Refer: Start your PC in safe mode in Windows 10


    Follow the below steps to place the computer in normal mode.


    • Press Windows + R keys to open
      Run command.

    • Type msconfig
      and press Enter.

    • In the System Configuration
      window, click on General tab.

    • Select Start-up selection
      as Normal startup, click on Apply and
      Ok
      .

    • Follow onscreen instructions.

    Reply to the post with the required information and brief description about this issue for further assistance.

    Thank you.
     
    Deepika Gowda, Oct 26, 2019
    #4
  5. Flava0ne Win User
    Creating Shortcuts with Batch File

    I've created a Batch file which calls on the following VB Script to be able to create a shortcut to my desktop:

    VB Script (named createLink.vbs):
    Code: set objWSHShell = CreateObject("WScript.Shell") set objFso = CreateObject("Scripting.FileSystemObject") ' command line arguments ' TODO: error checking sShortcut = objWSHShell.ExpandEnvironmentStrings(WScript.Arguments.Item(0)) sTargetPath = objWSHShell.ExpandEnvironmentStrings(WScript.Arguments.Item(1)) sWorkingDirectory = objFso.GetAbsolutePathName(sShortcut) set objSC = objWSHShell.CreateShortcut(sShortcut) objSC.TargetPath = sTargetPath objSC.WorkingDirectory = sWorkingDirectory objSC.Save[/quote] Batch File Example (for Windows Notepad):
    Code: @echo off cscript createLink.vbs "C:\Users\Administrator\Desktop\Notepad.lnk" "C:\Windows\System32\notepad.exe"[/quote] But after creating the shortcut using this method, I'm not able to assign a custom icon for the shortcut. I get the following error message when trying to do so:


    Create Date and Time Shortcut in Windows 10 Error503.jpg


    Any help and ideas on what I need to put into the VB Script and/or Batch File to be able to do this would be greatly appreciated! *Big Grin Create Date and Time Shortcut in Windows 10 :D

    Also, I know that I can simply do this by going to Start Menu\All Programs\Accessories\ right-clicking on Notepad and selecting Send to\Desktop (create shortcut). Easy enough for creating a single shortcut. But I need to create several multiple shortcuts and using this Batch/VBS method would really save me a lot of time in doing so.
     
    Flava0ne, Oct 26, 2019
    #5
  6. Delta6326 Win User
    Delta6326, Oct 26, 2019
    #6
Thema:

Create Date and Time Shortcut in Windows 10

Loading...
  1. Create Date and Time Shortcut in Windows 10 - Similar Threads - Create Date Shortcut

  2. Create custom date and time formats

    in Windows 10 Gaming
    Create custom date and time formats: Hi all, I would like to add custom date time formats for my windows 11 laptop, as I want a specific format not currently found. Is this possible? https://answers.microsoft.com/en-us/windows/forum/all/create-custom-date-and-time-formats/06b53fce-9660-4d6f-82e7-0ac090021f14
  3. Create custom date and time formats

    in Windows 10 Software and Apps
    Create custom date and time formats: Hi all, I would like to add custom date time formats for my windows 11 laptop, as I want a specific format not currently found. Is this possible? https://answers.microsoft.com/en-us/windows/forum/all/create-custom-date-and-time-formats/06b53fce-9660-4d6f-82e7-0ac090021f14
  4. detached files being saved with current date and time instead of date and time created

    in Windows 10 Gaming
    detached files being saved with current date and time instead of date and time created: All detached files from email are being saved with current date and time instead of the actual date and time they were created. This is not a good way to track important documents forwarded by others. Looking in the meta data is not a productive solution. The correct dates...
  5. Time & date in windows 10

    in Windows 10 Customization
    Time & date in windows 10: I went into the settings and made sure the time and date were set for automatic update. I am in the EST zone, U.S.A. But my computer clock is constantly showing an inaccurate time. It is usually 2 hrs. less than the real actual time. How do I remedy this?...
  6. CREATING SHORTCUTS IN WINDOWS 10

    in Windows 10 Customization
    CREATING SHORTCUTS IN WINDOWS 10: WITH WINDOWS 8 AND PRIOR VERSIONS I HAVE ALWAYS ENJOYED CREATING A DESKTOP SHORT CUT FOR EASY ACCESS. I AM SEEKING ADVICE ON HOW TO CREATE THESE IN WINDOWS 10. I AM ABLE TO DO THIS WITH SOME WEBSITES BUT NOT ALL. QUITE OFTEN I END UP WITH THE CHOICE OF SAVING AS A...
  7. Windows 10: Date, Date Created and Date Modified

    in Windows 10 Network and Sharing
    Windows 10: Date, Date Created and Date Modified: For what purpose is Date field in File Manager? It was default in my new laptop. I tried to find reason why file date was not changing even though I changed it. I had to contact IT support and they told that Date is wrong field. I couldn't imagine that Date field shows...
  8. Windows 10 date and time

    in Windows 10 Customization
    Windows 10 date and time: Brand new laptop with Windows 10. Unable to permanently change date and time and time zone. I go to Date and Time window and make the changes to date, time, and time zone, but the "Apply" button is grayed out and cannot be selected. Only the "OK" button can be selected,...
  9. create shortcuts in windows 10

    in Windows 10 Network and Sharing
    create shortcuts in windows 10: I have a new harddrive and before could create shortcuts to save icons on desktop but this new hard drive will not let me do it and had windows 10 before. https://answers.microsoft.com/en-us/windows/forum/all/create-shortcuts-in-windows-10/9fc8aeae-3ece-406b-adcf-5ecbd3991e61"
  10. Create a Sync Clock Time shortcut in Windows 10

    in Windows 10 Tutorials
    Create a Sync Clock Time shortcut in Windows 10: How to: Create a Sync Clock Time shortcut in Windows 10 How to Create a Sync Clock Time shortcut in Windows 10 Your PC's clock is used to record the time whenever you create or modify files on your PC. You can change the clock's time zone[/b]. You can synchronize...

Users found this page by searching for:

  1. Shortcut to open control panel date time