Skip to content

Instantly share code, notes, and snippets.

@at0dd
at0dd / ILFORDILFOTECDD-X.csv
Created February 14, 2022 07:48
ILFORD ILFOTEC DD-X Developer Times
Film Speed Minutes.Seconds @ 68°F Minutes.Seconds @ 75°F
ILFORD DELTA PRO 3200 400 6.00
800 7.00 5.00
1600 8.00 6.00
3200 9.30 7.00
6400 12.30 9.00
12500 17.00 12.00
25000 25.00 17.00
ILFORD DELTA PRO 400 400 8.00 5.30
800 10.30 7.30
@at0dd
at0dd / SearchMailbox.ps1
Created November 24, 2016 02:55
Searches for emails and gets email tracking logs
#Searches a target mailbox for emails from a specific address and places the results in a specified mailbox, under a specified folder name.
Search-Mailbox "John Doe" -SearchQuery "from:'Jane.Doe@contoso.com'" -TargetMailbox "Your Mailbox" -TargetFolder "Folder Name" -LogLevel Full
@at0dd
at0dd / SetADHome.ps1
Created November 24, 2016 02:54
Creates and sets the Active Directory home folder for a list of users.
#Creates a folder on a network drive named for the user, then sets the users AD Home Directory to that folder.
Import-Module ActiveDirectory
$Users = "John.Doe", "Jane.Doe"
ForEach ($User in $Users){
New-Item -ItemType directory -Path "\\fileshare\Users$\$User"
Set-ADUser $User -HomeDrive "U:" -HomeDirectory "\\fileshare\Users$\$User"
}
@at0dd
at0dd / UninstallW10Apps.ps1
Created November 24, 2016 02:53
Uninstalls all default Windows 10 apps except for the Windows Store
#By default, uninstalls all default Windows 10 apps except for the Windows Store.
#Alternatively, comment the first line and then uncomment specific packages to remove them.
Get-AppxPackage -AllUsers | where-object {$_.name -notlike "*store*"} | Remove-AppxPackage #Remove all except Store
#Get-AppxPackage -allusers *3dbuilder* | Remove-AppxPackage #3D Builder
#Get-AppxPackage -allusers *alarms* | Remove-AppxPackage #Alarms and Clock
#Get-AppxPackage -allusers *Appconnector* | Remove-AppxPackage #App Connector
#Get-AppxPackage -allusers *calculator* | Remove-AppxPackage #Calculator
#Get-AppxPackage -allusers *communications* | Remove-AppxPackage #Calendar and Mail
@at0dd
at0dd / ExportADComputers.ps1
Created November 24, 2016 02:52
Exports information from Active Directory
#Exports all computers from Active Directory to a CSV file on your desktop.
Import-Module ActiveDirectory
Get-ADComputer -Filter * -Property * | Export-CSV "$env:userprofile\Desktop\Computers.csv" -NoTypeInformation -Encoding UTF8