Search found 10 matches
- 19 Nov 2019 21:26
- Forum: DOS Batch Forum
- Topic: Encoding / Decoding
- Replies: 8
- Views: 14797
Re: Encoding / Decoding
I made something like this a while ago, it used a text password to encode the text. Vigenere cipher, I think it's called. @echo off setlocal enabledelayedexpansion set "chars=a b c d e f g h i j k l m n o p q r s t u v w x y z" set "nums=1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 2...
- 18 Nov 2019 17:04
- Forum: DOS Batch Forum
- Topic: Employee clock in / clock out .bat
- Replies: 10
- Views: 12954
Re: Employee clock in / clock out .bat
Fantastic. Im on it. Thanks for the ideas. Exactly what I was looking for.
- 18 Nov 2019 16:08
- Forum: DOS Batch Forum
- Topic: Foxidrive has left us
- Replies: 44
- Views: 265274
Re: Foxidrive has left us
I really enjoyed the information you provided. I created a batch file in your honor. Farewell! -Hemlok @echo off color 0a mode 175,75 Title Farewell Foxidrive ::Begin Loading Bar @echo off for /l %%a in (1,1,20) do ( cls call set "bar=%%bar%%#" call echo %%bar%% ping localhost -n 0 >nul ) echo done ...
- 18 Nov 2019 15:15
- Forum: DOS Batch Forum
- Topic: Employee clock in / clock out .bat
- Replies: 10
- Views: 12954
Re: Employee clock in / clock out .bat
I'm not having a formatting issue. I'm not sure how to calculate from the .csv and call on the results.
I can format it in any way I want without issue. Im completely aware of how to accomplish that.
Never mind. I will figure it out. We are not communicating here.
Thank you.
-Hemlok
I can format it in any way I want without issue. Im completely aware of how to accomplish that.
Never mind. I will figure it out. We are not communicating here.
Thank you.
-Hemlok
- 18 Nov 2019 12:38
- Forum: DOS Batch Forum
- Topic: Employee clock in / clock out .bat
- Replies: 10
- Views: 12954
Re: Employee clock in / clock out .bat
Thanks. I figured. I have a version I created with a 24 hr format. I got lost after that. To be honest, you left me in the dust on the rest.
Thanks for your time.
-Hemlok
Thanks for your time.
-Hemlok
- 18 Nov 2019 11:32
- Forum: DOS Batch Forum
- Topic: Employee clock in / clock out .bat
- Replies: 10
- Views: 12954
Re: Employee clock in / clock out .bat
Your right. Please forgive my lapse in memory. In retrospect I should have thought out my post a bit more.
My format is as follows:
Time: 11:30 AM
The date: 11/18/2019.
I am in Central Standard time if that matters.
I do appreciate your time.
-Hemlok
My format is as follows:
Time: 11:30 AM
The date: 11/18/2019.
I am in Central Standard time if that matters.
I do appreciate your time.
-Hemlok
- 18 Nov 2019 10:29
- Forum: DOS Batch Forum
- Topic: USB Backup with voice notification.
- Replies: 0
- Views: 19640
USB Backup with voice notification.
I hope someone might find this version I chopped up useful. Its just a USB copy script created by someone else, with the voice function wrapped in. It makes for a nice backup utility for long backup jobs where I turn my speakers up loud and when she says "The backup process is complete! Press any ke...
- 17 Nov 2019 22:25
- Forum: DOS Batch Forum
- Topic: Dragon Time & Date
- Replies: 0
- Views: 18720
Dragon Time & Date
I know this is a simple batch file. I wanted to share it anyway for those interested. It tells you audibly the time, date, IP and mac address of your PC. I also included some cool dragon art to spice the result view up. Copy the code exactly and paste it you know where.. Enjoy. -Hemlok :::::::::::::...
- 17 Nov 2019 19:00
- Forum: DOS Batch Forum
- Topic: Employee clock in / clock out .bat
- Replies: 10
- Views: 12954
Re: Employee clock in / clock out .bat
One more detail. You will need to edit this part of the admin.bat to your own folder path where Timeclock lives. :delpass del /A:H "C:\Users\Admin\Desktop\Time Clock Bat\pass.csv" goto create :timecheck if exist "C:\Users\Admin\Desktop\Time Clock Bat\time.csv" (goto time) else (goto error) And this ...
- 17 Nov 2019 15:56
- Forum: DOS Batch Forum
- Topic: Employee clock in / clock out .bat
- Replies: 10
- Views: 12954
Employee clock in / clock out .bat
I am working on a simple batch file to clock in & clock out, and keep track of activity. Also I have the ability to create user accounts, remove users, add and remove passwords. I cannot take full credit for this creation. I chopped it up from another unnamed poster online. To the point. I have it j...