A PowerShell script using WBAdmin can create full system backups of Windows 11, offering a simple, scriptable alternative for advanced users. Over the last couple of years, I have written a few blog ...
A script is just a collection of commands saved into a text file (using the special .ps1 extension) that PowerShell understands and executes in sequence to perform different actions. In this post, we ...
When a user accidentally deletes a local file, having a backup ready can significantly minimize downtime and frustration. Check out this simple batch file that can make daily document backups a snap.
PowerShell recovery scripts using WBAdmin no longer work in Windows 11, but VHDX mounting offers a manual workaround for restoring files. I recently wrote an article in which I walked you through the ...
I am using a robocopy script to backup a lot of files to an external HDD, some small and some quite large (>1GB). Sometimes robocopy will hang on a larger file...until I press ctrl-c which rather than ...
If you have every used the Command Line, or CMD, interface in Windows, you probably have some idea of the powerful things it can do. Creating your own CMD scripts, you can do even more, but faster. A ...
You need to package up a bunch of files, send them somewhere, and do something with them at the destination. It isn’t an uncommon scenario. The obvious answer is to create an archive — a zip or tar ...
Also keep in mind that a LaunchAgent will only run if a user is logged in. If you want this to run even when sitting at the login window, make a LaunchDaemon. It can be the same plist, just a matter ...