Skip to main content

Recently Updated Pages

Create .CHD From .CUE Files

Emulation Management - One Liners

Windows cue2chd.bat for /r %%i in (*.cue) do chdman createcd -i "%%i" -o "%%~ni.chd" >> log ...

Updated 1 year ago by Ryan

Create .CHD From .ISO Files

Emulation Management - One Liners

Windows ISO2CHD.bat for /r %%i in (*.iso) do chdman createcd -i "%%i" -o "%%~ni.chd" >> log ...

Updated 1 year ago by Ryan

Create .M3U Playlist From .CHD Files (Windows)

Emulation Management - One Liners

m3umaker.ps1 # Get the current directory $folderPath = Get-Location # Remove existing .m3u...

Updated 1 year ago by Ryan

Take Ownership and Change Admins to Full Rights

Windows - Scripts File System - Windows

$folderMask = "C:\Program Files\WindowsApps\Microsoft.DesktopAppInstaller_*" $folders = Get-Chil...

Updated 1 year ago by Ryan

SMB ACL Group Creation Script

Windows - Scripts File System - Windows

Asks you for a root folder, then allows you to enter subfolders until you leave an entry empty. N...

Updated 1 year ago by Ryan

List all Permissions in Share Recursively

Windows - Scripts File System - Windows

Get-childitem \\network\share\ -recurse | Where-Object{$_.psiscontainer} | Get-Acl | ForEach-Obj...

Updated 1 year ago by Ryan

Get CPU and RAM Usage

Windows - Scripts Performance

$Output = 'C:\temp\Result.txt' $ServerList = Get-Content 'C:\temp\Serverlist.txt' $ScriptBLoc...

Updated 1 year ago by Ryan

Powershell to List Users That Are NOT Members of Listed Distribution Lists

M365 - Scripts Distribution Lists

# Define the list of distribution lists $distributionLists = @("Managers", "Senior Managers") ...

Updated 1 year ago by Ryan

PowerShell to Import Distribution List Members From CSV/TXT

M365 - Scripts Distribution Lists

$GroupEmailID = "Sales@Crescent.com" $CSVFile = "C:\Temp\DL-Members.txt" #Connect to Exchange...

Updated 1 year ago by Ryan

PowerShell to Add a User to a Distribution Group

M365 - One Liners Distribution Lists

#Connect to Exchange Online Connect-ExchangeOnline -ShowBanner:$False #Add User to the Distri...

Updated 1 year ago by Ryan

Powershell to Bulk Add Users to Different Distribution lists

M365 - Scripts Distribution Lists

$CSVFile = "C:\Temp\DL-Group-Members.csv" Try { #Connect to Exchange Online Connect-...

Updated 1 year ago by Ryan

How to change the owner of an Azure Active Directory device

Intune - Scripts

In Azure AD, you can see that each device has an owner. The owner is the user who joined the devi...

Updated 1 year ago by Ryan

Custom Intune Detection Script

Intune - Scripts

https://silentinstallhq.com/create-a-custom-detection-script-for-1password-powershell/ 1Password...

Updated 1 year ago by Ryan

RSAT Install

Windows - Scripts Windows Roles

# Get RSAT items that are not currently installed: $install = Get-WindowsCapability -Online | ...

Updated 1 year ago by Ryan

View and Delete Local Profile List

Windows - Scripts System

delete_profile_with_gui_v2.ps1 ########################################## # AUTHOR : Ryan Mut...

Updated 1 year ago by Ryan

Remove Ghost Devices

Windows - Scripts System

removeghosts.ps1 <# .SYNOPSIS Removes ghost devices from your system .DESCRIPTION T...

Updated 1 year ago by Ryan

Powershell to Get All Unique Properties in AD

Active Directory - One Liners

get-aduser -filter * -property title | Select-Object title | sort-object title -unique

Updated 1 year ago by Ryan

AD Health Check With Email

Active Directory - Scripts

<#PSScriptInfo .VERSION 1.0 .GUID 30c7c087-1268-4d21-8bf7-ee25c37459b0 .AUTHOR Vikas Suk...

Updated 1 year ago by Ryan

Create Directories From List

Windows - Scripts File System - Windows

  Script set list=\\192.168.1.41\Emulation\OrganizedRoms\directories.txt set location=\\192.16...

Updated 1 year ago by Ryan

Shrink Windows Datastore.edb

Windows - One Liners File System

esentutl.exe /d c:\Windows\SoftwareDistribution\DataStore\DataStore.edb From https://www.experts...

Updated 1 year ago by Ryan