Browsing Tutorial
Displaying page 1 of 70 | Prev | Next
Using @ in Batch Files
In a batch file, the at sign (@) is used as a prefix before a command to suppress its output from being displayed on the console. When a command is prefixed with an at sign, only the output generated ...
For Loop in DOS Batch
In batch scripting, you can use a for loop to iterate over a set of values or files. The for loop in batch files has different variations, such as for /F, for /R, and for %%variable. I'll show you an ...
Make it Pretty with ConvertTo-HTML
In this blog post, we'll cover the basics of using the ConvertTo-HTML cmdlet in PowerShell. This cmdlet allows you to convert PowerShell objects into HTML format, making it easy to generate report ...
How to find your MAC address on Windows 11
To find the MAC address of your PC running Windows 11, you can follow the steps outlined below.Click on the Start menu icon on the taskbar and select "Settings" (the gear icon).In the Settings window, ...
Managing Sound on Windows 11
While audio devices are typically plug-and-play compatible with Windows 11, there may be occasions where you need to adjust the settings to ensure that audio plays correctly and according to your expe ...
Crawling the Web with PowerShell
To crawl links on the internet using PowerShell, you can use the Invoke-WebRequest cmdlet. Here is an example script that can be used as a starting point:
# Define the starting URL to crawl
$url = ...
Using Powershell Jobs
PowerShell is a cross-platform task automation solution made up of a command-line shell, a scripting language, and a configuration management framework.
The Asjob is a parameter that allows you to ...
Displaying page 1 of 70 | Prev | Next