Delete a Calendar item from a mailbox

If you have the need to remove a specific calendar event/appointment from a mailbox, you can do it through Power Shell or Exchange Management Shell. Open PowerShell or EMS If this is an O365 mailbox, you will need to connect to the O365 environment Connect to Exchange On-line From the PowerShell console on an Exchange 2010 server: $Cred = Get-Credential […]

Read more

How to Export AD user list with email addresses

If you have the need to export a user list from an Active Directory group along with the user’s email address, run the following command in PowerShell as an administrator. If your AD has the e-mail attribute filed out: Powershell Get-ADGroupMember -Identity “groupname” -Recursive | Get-ADUser -Properties Mail | Select-Object Name,Mail | Export-CSV -Path C:\file.csv -NoTypeInformation Example: If not you […]

Read more

How to setup roaming user profiles in Windows Server 2008

Read this tutorial to configure roaming profiles for user accounts in Windows Server 2008 in an Active Directory environment. Roaming profiles have the advantage of users have their personal settings and files available on all computers they login to. But the only problem is increased network activity during logon and logoff. Roaming profiles work by copying the user’s profile to […]

Read more

How to setup a VPN Server in Windows Server 2008

This article will explain the procedure for setting up a VPN server in Windows Server 2008. The VPN protocol used will be PPTP (Point to Point Tunneling Protocol). The method outlined here uses an environment consisting of an active directory server, a DHCP server, few workstation PCs and a VPN server. Configuration of the VPN server alone is explained in […]

Read more
1 26 27 28 29 30 71