This blog post discusses a PowerShell script that can map a network drive using a Security Identifier (SID), even without being logged in as that user.
Read MoreThis post presents one-liner commands using Shell and PowerShell to add a workstation to Active Directory.
Read MoreConnects a computer to or disconnects a computer from a shared resource, or displays information about computer connections. The command also controls persistent net connections. Used without parameters, net use retrieves a list of network connections.
Read MoreExamples of rules are commonly used in network setups where specific programs or ports need to be allowed through the firewall to ensure that they can communicate with other devices or software.
Read MoreYou can uninstall third-party drivers (such as the WAVES MaxxAudio Pro driver) from the Command Prompt (CMD) by using the "pnputil.exe" utility. Here's the basic process:
Open Command Prompt as administrator: Press the Windows key + X, and then select "Command Prompt (Admin)".
Type the following …
Read MoreDiscover an array of shell and PowerShell commands related to time management, such as checking the last boot-up time, system boot time, and changing the time zone.
Read More- This is my tentative work flow for downloading movie streams online. The gist of what I've learned about this process is that every HTTP Live Stream (HLS) begins with an
.m3u8
playlist with a MIME type ofx-mpegURL
orvnd.apple.mpegURL
. This playlist lists a series of .ts files that are streamed one at a time and …
Read More This is my tentative workflow for cleaning-up poor audio using the NVIDIA Maxine Windows Audio Effects SDK.
Read Moreyt-dlp
yt-dlp is a free and open-source command-line tool for downloading videos and audio from YouTube and other video hosting sites. It is a fork of youtube-dl with additional features and improvements, including better performance and more frequent updates. Unlike youtube-dl, which has faced various legal challenges …
Read MorePlace these 3 files in any directory and run update.vbs to begin recording a Windows session silently.
Github Repository
update.exe
- This file is just ffmpeg that's been renamed to be slightly more inconspicuous in Task Manager.
update.bat
- There are two lines to this batch file. The first line deletes …
Read Moreffmpeg is a complete, cross-platform solution to record, convert and stream audio and video.
ffmpeg Download
ffmpeg Documentation
Audio Processing
Convert to 8kHz, single-channel PCM
1ffmpeg -i "input.mp3" -ar 8000 -ac 1 output.wav
Convert to 16kHz, single-channel PCM
1ffmpeg -i "input.mp3" -ar 16000 …
Read MoreThis batch file utilizes robocopy to mirror a list of files contained within "targets.txt" in the same directory.
Read More