How to View SharePoint Online Audit Log Reports

In this blog will see how to view SharePoint online audit log reports to better manage and secure office 365 SharePoint online. Before you can access the reports, you have to enable the audit log in SharePoint online. To enable Audit Log Reporting Follow the steps mention in this article – How to Enable SharePoint … Read more

How to Configure SharePoint Online Auditing

Introducing SharePoint Online Auditing SharePoint Online auditing features enable admins to track user activity on an organizational level. Through which Office 365 administrators, or the compliance admin, search through the logs and apply filters to identify exactly what they are looking for. Follow the below steps to enable SharePoint online auditing. Step 1: Open Office … Read more

Infographic – EU GDPR The Essentials at A Glance

What is GDPR? EU working on this long since 4 years, on 25 May 2018, the General Data Protection Regulation (GDPR) is live with the focal aim to protect the private and sensitive data of EU citizens – Practical Steps for GDPR Preparation Who does GDPR apply to and who should be concerned? Companies that control … Read more

Powershell Script to Get List of Active Users with the Details like samaccountname, name, department, job tittle, email in Active Directory

  In this blog will see how to list active users with details like samaccountname, name, department, job tittle, email, etc., in Active Directory using powershell script.    A dsquery solution: dsquery * -Filter “(&(objectCategory=person)(objectClass=user))” -Attr givenName sn displayName sAMAccountName mail proxyAddresses distinguishedName > AllUsers.txt   A PowerShell solution using the AD module cmdlet: Get-ADUser … Read more

Powershell Script to Get “lastLogon Timestamp” for Specific OU and Export to CSV File

Learn how to get lastlogon timestamp for specific OU and export to CSV by using Powershell script. A PowerShell solution using the AD module cmdlet: Get-ADUser -Filter * -SearchBase “ou=users,dc=contoso,dc=local” -ResultPageSize 0 -Prop CN,lastLogonTimestamp | Select CN,lastLogonTimestamp | Export-CSV -NoType last.csv If you want get a date: Get-ADUser -Filter * -SearchBase “ou=users,dc=contoso,dc=local” -ResultPageSize 0 -Prop … Read more

How to Export a Computer List from Active Directory

In this blog will see how to export a computers list from Active Directory by using Powershell script into various formats, including csv and Excel. Open the Powershell ISE → Run the below script, adjust the path for the export: Get-ADComputer -Filter * -Property * | Select-Object Name,OperatingSystem,OperatingSystemVersion,ipv4Address | Export-CSV ADcomputerslist.csv -NoTypeInformation -Encoding UTF8 Using … Read more

European Regulators Report Sharp Rise in Complaints After GDPR

  As we all know GDPR is live now and after month European regulators pointed that there is increase in the number of complaints across Europe, showing strong public interest in the new rules and the UK’s Information Commissioner’s Office (ICO) informs that there is rise in breach notifications from organizations, also increase in data protection … Read more

Export Office 365 mailboxes to PST Using eDiscovery

  In this blog we will see how to use a native eDiscovery tool to Backup or Export Office 365 mailboxes to PST files. Follow the below steps which will show you how to configure the In-Place-Hold, search for mailbox items and export them to PST: Open and login to Office 365, then go to … Read more

Export and Import Office 365 Mailbox to PST

  In this blog we will see how to manually Export Office 365 mailboxes to PST & Import PSTs to Office 365. Exporting Office 365 Mailboxes to PST: Open and login to Office 365 and go to ‘Admin’. Then, select the ‘Exchange’ option in the left corner of the ‘Office 365 admin center’. Then click … Read more