https://github.com/agentmorris/dsm_datestamp
Windows shell extension to add a date/time stamp to filenames, before the extension.
https://github.com/agentmorris/dsm_datestamp
Last synced: 8 months ago
JSON representation
Windows shell extension to add a date/time stamp to filenames, before the extension.
- Host: GitHub
- URL: https://github.com/agentmorris/dsm_datestamp
- Owner: agentmorris
- Created: 2017-07-22T02:46:41.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-07-22T23:42:23.000Z (almost 9 years ago)
- Last Synced: 2025-02-10T18:11:20.474Z (over 1 year ago)
- Language: C++
- Size: 17.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dsm_datestamp
Windows shell extension to add a date/time stamp to filenames, before the extension. For example, I might right-click on a file named:
hello.txt
...and select dsm_datestamp, and the file would be renamed to:
hello.17.07.22.12.38.11.txt
...if I ran it at 12:38.11pm on July 22, 2017.
If you run it on a file that already looks like it's been datestamped, it will update the datestamp. It can operate on multiple files.
This is useful for archiving backups and what not.
To install, move the .dll (the x86 or x64 version) to your system32 directory, and at the command line, run:
```
cd c:\windows\system32
regsvr32 dsm_datestamp_x86.dll
```
To uninstall:
```
cd c:\windows\system32
regsvr32 /u dsm_datestamp_x86.dll
```
Technically you can use whatever directory you like, but system32 is the most sensible place.