-
Recent Posts
Blogroll
Tags
audacity audio bluetooth cable calendar comma Contacts CSS csv dns downloads dreamhost DRM ebook eBooks facebook gmail google graphic htaccess https image ios ipad iPhone iso kindle license link macro media microsoft ms word pdf post rewrite scan social media ssl tangle validation vba vcard vcf WordPressCategories
- Consumer Technology (7)
- Food (3)
- Information Technology (143)
- Application Tips (6)
- CSS (8)
- Database (15)
- DHTML (3)
- DOS & DOS Scripting (4)
- eMail (5)
- Graphics (4)
- Hardware (1)
- IT Resources (2)
- JavaScript (5)
- Joomla! (11)
- jQuery (1)
- Linux (2)
- MySQL (30)
- Networking (2)
- Office Productivity (1)
- Operating Systems (11)
- PHP (29)
- PowerShell (1)
- Security (4)
- SMTP (1)
- Snippet (2)
- Vista (2)
- Web Development (32)
- Web Server (3)
- WordPress (14)
- Miscellaneous (1)
- Uncategorized (23)
Tutorius Archives
DOS & DOS Scripting Archive
-
Batch Parameter Extensions
Posted on April 12, 2017 | No CommentsThese examples use modifiers to modify parameter %1 %~f1 Expand %1 to Fully qualified path name %~d1 Expand %1 to Drive letter %~p1 Expand %1 to Path only e.g. \utils\ […] -
Creating a folder named for the current date
Posted on April 24, 2010 | No CommentsWhen automating a backup script, you may want to be able to create a folder named with the current date. This quick line will accomplish that; 1 2 @echo off […] -
Backup script
Posted on November 13, 2009 | No Comments1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 […]