Powered by Blogger.

Social Icons

Featured Posts

Showing posts with label command prompt. Show all posts
Showing posts with label command prompt. Show all posts

Reset Windows Time Service from Command Prompt

Thursday, September 16, 2021

Open Command Prompt as administrator

Run the following commands:

 net stop w32time

w32tm /unregister

w32tm /register

net start w32time

w32tm /resync /nowait

Sync time from Command Prompt in Windows

Open Command Prompt as administrator

Run the following command:

 w32tm /resync

Create directory list from command prompt on Windows

Tuesday, July 11, 2017

Navigate to folder and run following command

dir > FileName.txt
or
dir > Complete Folder Path/Filename.txt

dir >> Filename.txt will append data to existing file 

dir /s > FileName.txt will include sub-directories

dir /b > Filename.txt will save in Bare format

For more options run dir /?
 

Translate

Popular Posts