‘========================================================================= ‘ DeleteOldUsers.vbs ‘ VERSION: 1.0 ‘ AUTHOR: Brian Steinmeyer ‘ EMAIL: [email protected] ‘ WEB: https://sigkillit.com ‘ DATE: 4/22/2014 ‘ USER TERMINATION POLICY: ‘ – Reset PW ‘ – Set description to termination date ‘ – Optionally forward email ‘ – Move terminated users to specified OU ‘ COMMENTS: This script works in conjunction with …
April 2014 archive
Apr 22 2014
Run Active Directory Management Tools as Another User
There’s quite a few situations where you may need to run Active Directory Management tools like Active Directory Users and Computers with different credentials. For example: Computer is not joined to the domain Need to connect to another domain/forest Logged in as a standard domain user and need to supply different credentials etc… Step 1 …
Apr 08 2014
Matching Credit Card Numbers
Overview Using regular expressions, you can easily match a credit card number. You may wish to validate legit CC numbers, block financial information in emails, or audit security by finding financial information in documents. There is no perfect algorithm or regex for detecting potential CCN’s, and there will always be false positives, etc. Although regular …
Apr 04 2014
Block Outbound Email for Specific Users
Overview There are a few situations where you may need to restrict certain users from sending email to external users. For example, you may have part time employees that only need to send email to internal users OR you might have an employee who’s about to get terminated and don’t want them emailing clients. Fortunately, …
Apr 04 2014
Delivery Report in Outlook or Outlook Web App
Overview When using Outlook or Outlook Web App (OWA) in an Office 365 or Exchange environment, you can track the message from the client side. Both Outlook and OWA allow you to view a delivery report in order to confirm a message was delivered when the recipient claims they have not received it or if …
Apr 04 2014
365Licenses.ps1
#========================================================================= # 365Licenses.ps1 # VERSION: 1.0 # AUTHOR: Brian Steinmeyer # EMAIL: [email protected] # WEB: https://sigkillit.com # DATE: 4/4/20114 # REQUIREMENTS: # 1) Microsoft Online Services Sign-In Assistant for IT Professionals # -(http://www.microsoft.com/en-gb/download/details.aspx?id=28177) # 2) Windows Azure Active Directory Module for Windows PowerShell # -(http://technet.microsoft.com/en-us/library/jj151815.aspx#bkmk_installmodule) # COMMENTS: This script is intended to retrieve Office 365 …