PXE boot for some computers doesn’t work, SCCM 2012
Sometimes computers won`t PXE boot for some reason when you are re-installing the Operating system using System Center...
How to find your FSMO Roles?
There are several ways to find out who has your FSMO roles in your Active Directory environment, but...
Change primary email address in Office 365
Start powershell as administrator Run the following commands:$LiveCred = Get-Credential(Enter your Office 365 administrator credentials)$Session = New-PSSession -ConfigurationName...
List users and size of mailbox in Exchange 2007 and 2010 with Powershell
Get-Mailbox | Get-MailboxStatistics | select-object DisplayName, {$_.TotalItemSize.Value.ToMB()}
Find emails with Powershell commandlets
Get-MessageTrackingLog -start “12/18/2011 08:00” -Sender user@domain.com | Format-List sender, Recipients, timestamp, MessageSubject Get-MessageTrackingLog -MessageSubject Testsubject
Import PST file to exchange mailbox from Powershell
New-MailboxImportRequest –Mailbox bruker –FilePath \servermappenavn.pst
Get SMTP adresses with CSVDE (commandline) in Exchange 2003
This one gives you username and primary Email address csvde -f users.csv -r “(&(objectCategory=Person)(objectClass=user))” -l “sAMaccountname,mail” This...
Get SMTP Adresses from Exchange 2007/2010 With Powershell
Get-Mailbox | select -expand EmailAddresses | %{$_.SmtpAddress}
Resolving eventid 12293 – KMS problem
1. Log on to your DNS server and open the DNS manager. 2. Navigate to the Forward Lookup...