This file contains hidden or 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
# python 3 | |
# a review of Python’s dictionary format | |
# create a new dict - named session - with three key:value pairs: | |
session = { 'logged_in': True, 'user': 'Harry Potter', 'password': 'parseltongue' } | |
# create a new dict - named session2 - with three key:value pairs | |
# another way to create a dict) | |
session2 = {} | |
session2['logged_in'] = False |
This file contains hidden or 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
############################################################################# | |
# Procedure: Watch-MoveRequests.PS1 | |
# Author: Scott Vintinner | |
# Last Edit: 4/30/2011 | |
# Purpose: This script will monitor the mailbox move process. Moves should | |
# be added to the queue using the following command: | |
# | |
# new-MoveRequest -Identity $identity -BadItemLimit 5 -Suspend:$true | |
# | |
# Alternately you could use my Start-SuspendedMoveRequests.PS1 script |