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

A GDPR Poem

At long last… GDPR is practically here! What do I have to fear? Well, fines, damage, and lawsuits are some. So, that’s not the greatest outcome. However… No need to run around in fright, As regulations continue throughout the night. May 25th is just the start, However, we can all be smart! Here are some … Read more

GDPR is Live, Now What?

Finally, GDPR is live now and in full effect. However, there are many businesses are still getting themselves up to speed, and still others are wondering just what the GDPR means for them even can’t determine whether the GDPR applies to them or not. There is so much information available around out about the GDPR; … Read more

Top 5 Practical Steps for GDPR Preparation

The GDPR regulation will take effect on May 25, 2018. As per analysis, analyst firms are predicting that more than 50%(may be 60%) of affected companies will not achieve full GDPR compliance by the end of 2018. The new data collection rules under GDPR will bring into for the safety of consumers. These data protections … Read more

How to Recover Deleted Items in Outlook

In this blog we see how to recover deleted important item which is accidentally deleted such as mail, contact or calendar by using built-in MS outlook tools. Restore from Deleted Items Step1: You have to open your Deleted Items folder in Outlook. Step 2: If the emails are in your Deleted Items, then you can … Read more