Hide Files and Folders in Windows Using Command Prompt
Today, privacy is a hot topic. The technique of hiding files and folders comes in handy when you are using a computer which is used by more than one person. This article will show you a techie way to hide files and folders in Windows 7 using command line.
Category Batch file programming, Windows, Windows 7
Install Network Printers Via Batch File or Command Line in Windows 7/8 and Server 2008
As a desktop administrator I like to automate as many tasks as possible. I had a need to automate the installation of network printers in a Windows 7 / Server 2008 environment and after some digging through manuals found a solution to installing TCP/IP printers via a batch file. I’ll outline the VBS script we’ll leverage for port creation and also the using of rundll32 to silently install print drivers and create printers.
Multi-Threaded Robocopy by First-Level Subfolder
Robocopy is a wonderful tool for synchronizing directories, migrating servers, or just generally copying data on or between Windows systems. The built-in version of Robocopy on Windows 7/Server 2008 R2 introduced a multi-threaded copy option; however, this is not available in earlier editions of Windows. Read on to discover how to do multi-threaded Robocopy operations […]
Category Batch file programming, Windows 7
Windows 7: Mounting and Unmouting WIMs Using a DISM Batch File Menu
This tech-recipe will include a batch file that lets you mount and unmount .WIM files in Windows 7 Professional / Ultimate and Windows Server 2008. I will also explain some the basics of WIM files and discuss how to manage them using DISM from the command prompt.
Category Batch file programming, Windows 7, Windows installation
How to run your own PowerShell scripts / cmdlets
By default, Microsoft has prevented the running of custom PowerShell scripts, a.k.a. cmdlets, by setting the PowerShell “ExecutionPolicy” to “Restricted”. This can be changed easily.
Category Batch file programming, Windows 7
7-Zip: How to list contents of a folder and subfolder of zip files without extracting (Win XP,Vista,7 and Command Line)
This tech-recipe will explain how to use 7-Zip to create a text file (tab delimited) listing of the contents of a zip file. You can run this .bat file in a directory and get the listings of every ZIP file contained in that directory and any sub-directories. Keep reading for the commands and explanation.
Category Batch file programming
Batch File: How to retrieve Asset Tag / Serial Number for a Dell computer
This guide is a quickie on how you can use a batch file to retrieve asset tag and / or serial number information for a Dell desktop or laptop. This recipe assumes that the Dell computer has had its asset tag entered into the BIOS. Note, not all computer motherboards use this field in WMIC […]
Category Batch file programming
Batch File Scripting: How to export, find and replace, and reimport a registry key (XP, Win2k3, Vista, Windows 7)
This recipe is designed for the more operating system savvy persons and for those who work in an app deployment corporate setting. Many times when you work in IT and in an app deployment team you run into situations where you need to either find a registry key and find a key and replace with a new entry. However, sometimes there are cases where you know the main registry entry key but are not sure which entries below it may need to be changed. Lets find a solution!
Category Batch file programming
Windows XP/Vista: Use a Batch File for Quickly Restarting explorer.exe
Explorer.exe is the user shell on your Windows system (taskbar, desktop, etc.) and periodically it requires a restart to resume proper functionality. Additionally, if you do a lot of tweaking to your system registry like I do, it’s much easier to restart explorer.exe to reload the registry instead of restarting the entire system. By creating […]
Category Batch file programming
XCOPY command : Using the /EXCLUDE flag
This recipe will briefly explain how to use the /EXCLUDE flag with XCOPY. This can be very handy if you need to backup a full directory but do not need or want specific file types or folder or file names.
Category Batch file programming
Batch Files : Get users default printer via registry (WinXP)
This is another quickie recipe for you admins. This recipe shows how to get the current user’s default printer via the registry and output the information to a text file via a batch file and in turn combine the result files into a larger file to then import into excel.
Category Batch file programming
XP Batch Files: Copy images from camera to pc and organize by date
This is a quickie recipe on how to create a batch file that will copy all of your photos/videos from a memory stick or camera onto your pc’s my pictures folder (c:\documents and settings\userid\my documents\my pictures). this batch file will show you how to setup a prompt and using a basic if/then statement.
Category Batch file programming