ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. joelbarlow40
    3. Best
    J
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 11
    • Best 6
    • Controversial 0
    • Groups 0

    Best posts made by joelbarlow40

    • Free Auditing and Reporting Solution

      ActiveDirectory, GPO and ExchangeServer auditing absolutely free of charge! Come take a look

      posted in IT Business
      J
      joelbarlow40
    • RE: Exchange 2010 (On-prem) Migration to Hosted Exchange/Office 365 Planning

      Based on your mentioned query, I would recommend you to follow Exchange server deployment assistant that is available from Microsoft team and covers all required aspects by checking the necessary prerequisites : https://technet.microsoft.com/en-us/office/dn756393.aspx

      Here is another informative technet article which provides step-wise details to accomplish this task in flawless manner.

      https://technet.microsoft.com/en-us/library/jj874016(v=exchg.150).aspx

      posted in IT Discussion
      J
      joelbarlow40
    • RE: Auditing old files on your File Server

      First you need to enable auditing of object access as:

      Whichever Top Level Policy-->Computer Configuration-->Windows Settings-->Security Settings-->Local Policies-->Audit Policy-->Audit Object Access - you can enable success/failure. Please check out the given below links:

      Configuring Audit Policies

      http://technet.microsoft.com/en-us/library/dd277403.aspx

      How To Set, View, Change, or Remove Auditing for a File or Folder in Windows 2000

      http://support.microsoft.com/kb/301640

      Apply or modify auditing policy settings for a local file or folder

      http://technet.microsoft.com/en-us/library/cc784387.aspx

      posted in IT Discussion
      J
      joelbarlow40
    • RE: AD User Tool: Bulk AD User

      You can try the following command

      Specify the OU

      $OU = [ADSI]"LDAP://ou=West,dc=MyDomain,dc=com"

      Enumerate all objects in the OU.

      $arrChildren = $OU.Get_Children()
      ForEach ($User In $arrChildren)
      {
      # Only consider user objects.
      If ($User.Class -eq "user")
      {
      # Set password.
      $User.Invoke("SetPassword", "pAs$w0rd")
      # Expire the password.
      $User.pwdLastSet = 0
      $User.SetInfo()
      }
      }

      Also, you can check the following link for more details.

      https://technet.microsoft.com/en-us/library/ee617195.aspx

      posted in IT Discussion
      J
      joelbarlow40
    • RE: Migrate Exchange 2003 Public Folders to Exchange 2013

      Here are few articles for your reference:

      How to Move Public Folder from Exchange 2003 to Exchagne 2010

      http://blogs.technet.com/b/agobbi/archive/2010/08/04/how-to-move-public-folder-from-exchange-2003-to-exchagne-2010.aspx

      Migrate public folders to Exchange 2013 from previous versions

      https://technet.microsoft.com/en-us/library/jj150486(v=exchg.150).aspx

      posted in IT Discussion
      J
      joelbarlow40
    • RE: Server and Network Audit

      Here are few links which might be helpful for you

      http://www.capterra.com/audit-software/

      http://www.windowsecurity.com/software/Network-Auditing/

      posted in IT Discussion
      J
      joelbarlow40
    • 1 / 1