Recently Updated Pages
Create .CHD From .CUE Files
Windows cue2chd.bat for /r %%i in (*.cue) do chdman createcd -i "%%i" -o "%%~ni.chd" >> log ...
Create .CHD From .ISO Files
Windows ISO2CHD.bat for /r %%i in (*.iso) do chdman createcd -i "%%i" -o "%%~ni.chd" >> log ...
Create .M3U Playlist From .CHD Files (Windows)
m3umaker.ps1 # Get the current directory $folderPath = Get-Location # Remove existing .m3u...
Take Ownership and Change Admins to Full Rights
$folderMask = "C:\Program Files\WindowsApps\Microsoft.DesktopAppInstaller_*" $folders = Get-Chil...
SMB ACL Group Creation Script
Asks you for a root folder, then allows you to enter subfolders until you leave an entry empty. N...
List all Permissions in Share Recursively
Get-childitem \\network\share\ -recurse | Where-Object{$_.psiscontainer} | Get-Acl | ForEach-Obj...
Get CPU and RAM Usage
$Output = 'C:\temp\Result.txt' $ServerList = Get-Content 'C:\temp\Serverlist.txt' $ScriptBLoc...
Powershell to List Users That Are NOT Members of Listed Distribution Lists
# Define the list of distribution lists $distributionLists = @("Managers", "Senior Managers") ...
PowerShell to Import Distribution List Members From CSV/TXT
$GroupEmailID = "Sales@Crescent.com" $CSVFile = "C:\Temp\DL-Members.txt" #Connect to Exchange...
PowerShell to Add a User to a Distribution Group
#Connect to Exchange Online Connect-ExchangeOnline -ShowBanner:$False #Add User to the Distri...
Powershell to Bulk Add Users to Different Distribution lists
$CSVFile = "C:\Temp\DL-Group-Members.csv" Try { #Connect to Exchange Online Connect-...
How to change the owner of an Azure Active Directory device
In Azure AD, you can see that each device has an owner. The owner is the user who joined the devi...
Custom Intune Detection Script
https://silentinstallhq.com/create-a-custom-detection-script-for-1password-powershell/ 1Password...
RSAT Install
# Get RSAT items that are not currently installed: $install = Get-WindowsCapability -Online | ...
View and Delete Local Profile List
delete_profile_with_gui_v2.ps1 ########################################## # AUTHOR : Ryan Mut...
Remove Ghost Devices
removeghosts.ps1 <# .SYNOPSIS Removes ghost devices from your system .DESCRIPTION T...
Powershell to Get All Unique Properties in AD
get-aduser -filter * -property title | Select-Object title | sort-object title -unique
AD Health Check With Email
<#PSScriptInfo .VERSION 1.0 .GUID 30c7c087-1268-4d21-8bf7-ee25c37459b0 .AUTHOR Vikas Suk...
Create Directories From List
Script set list=\\192.168.1.41\Emulation\OrganizedRoms\directories.txt set location=\\192.16...
Shrink Windows Datastore.edb
esentutl.exe /d c:\Windows\SoftwareDistribution\DataStore\DataStore.edb From https://www.experts...