Advanced Search
Search Results
502 total results found
Technical Skillset
Skill Level Legend Skill Level Explanation Beginner Just started learning about this topic and have barely used it. I don't have the knowledge to setup from scratch or manage on a daily basis without significant additional research/assist...
Fortinet - NSE 1 Network Security Associate
Fortinet - NSE 2 Network Security Associate
Fortinet - Certified Fundamentals in Cybersecurity
ISC2 - Certified In Cybersecurity
Mimecast - Email Security, Cloud Gateway Fundamentals
Current Server Rack
Unsorted
Rolling Fatties T-Shirt
Active Directory Details
Active Directory components in Windows Server 2008 The range of Active Directory (AD) has expanded in Windows Server 2008 and has become an essential part of many information technology (IT) environments. Active Directory has become an umbrella for a multit...
Create Recovery Partition
#1. Create Recovery Partition Manually First, verify there is no recovery partition. Open Disk Manager by right clicking the start menu, and choosing Disk Manager. Verify you don't already have a recovery partition created. They will typically be under 1G...
Delete Recovery Partition
Open an admin command prompt and enter. diskpart List the disks within diskpart by typing the following command. list disk Select the disk that contains the recovery partition using the following command (replace the number with the correct disk...
Restore Config From usbflash0
R2#dir usbflash0: Directory of usbflash0:/ 1 ---- 0 Feb 4 2015 07:21:52 +00:00 System Volume Information 2 -rw- 36326184 Feb 4 2015 08:07:24 +00:00 c1841-adventerprisek9-mz.124-15.T17.bin 1000062976 byte...
Powershell to List Users That Are NOT Members of Listed Distribution Lists
# Define the list of distribution lists $distributionLists = @("Managers", "Senior Managers") # Function to get members of a distribution list function Get-DistributionListMembers { param ( [string]$distributionListName ) $member...
Powershell to Get All Unique Properties in AD
get-aduser -filter * -property title | Select-Object title | sort-object title -unique
Create Directories From List
Script set list=\\192.168.1.41\Emulation\OrganizedRoms\directories.txt set location=\\192.168.1.41\Emulation\OrganizedRoms for /f "delims== tokens=1,2" %%G in (%list%) do ( md "%location%\%%G" if errorlevel 1 (echo Error creating folder : %...
DFS Cheatsheet
Manually Refresh DFS Cache Requires dfsutil installed on client/server which is installed via RSAT tools located here (RSAT Tools) dfsutil cache referral flush
Unzip All Files In Directory
.zip Files unzip "*.zip" Alternative for systems that only have 7zip installed. find /volume1/Emulation/JDownloader/PS2 -type f -iname '*.zip' -execdir 7z x {} ';' .7z Files Install 7zip first. sudo apt install p7zip-full 7za -y x "*.7z" Unzip int...
Zip All Files Into Each Individual Zip File
The solution is pretty easy. If you want to do this for every file, recursively, use find. It will list all files and directories, descending into subdirectories too. All Subdirectories: find . -type f -execdir zip '{}.zip' '{}' \; Explanation: The first...