This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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:'[email protected]'" -TargetMailbox "Your Mailbox" -TargetFolder "Folder Name" -LogLevel Full |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |