10 Best Practices to Avoid Email Phishing Attacks

Phishing and Password attacks is one of the oldest scam on internet and growing day by day due to lack of awareness and training which becomes problem for both individuals and organizations. Phishing emails generally have a links and in a way they represent people usually click on it. After clicking the link it redirects … Read more

Using CMD & PowerShell to Find Last Boot Time Remotely

Here is a simple and short command that will help you tell the last boot time. CMD: SystemInfo /S $Server | find /i “Boot Time” Powershell Script: $Server = Read-Host -Prompt ‘Input the server name’ SystemInfo /S $Server | find /i “Boot Time” > C:\Users\$env:username\Desktop\Last_Boot-$Server.txt The above Powershell script will pop up and prompt you … Read more

Infographic – Top 10 Benefits of SharePoint Online

  In this blog post we highlight some of the advantages that you should consider when evaluating SharePoint Online. Office 365, SharePoint Online has everything that is required to make your employees engaged, organized & productive with cost-effective and seamless experience along with apparent cloud benefits. Here you go.. Managing external user access is much … Read more

Export list of all Active Directory Security Groups with their Members

Learn how to easily export Active Directory Security Groups with their members to a CSV file in Windows PowerShell. Here is a Script: $Groups = Get-ADGroup -Properties * -Filter * -SearchBase “OU=Groups,DC=corp,DC=ourcompany,DC=Com” Foreach($G In $Groups) { Write-Host $G.Name Write-Host “————-” $G.Members } Here is another Script: $Groups = Get-ADGroup -Properties * -Filter {GroupCategory -eq “Security”} -SearchBase “OU=Groups,DC=domain,DC=com” … Read more

How to Detect SharePoint Permission Changes

In this blog will see how to detect permission changes in SharePoint. To achieve this follow the below simple steps. First you have to go to Site Settings → Site Collection Administration → Site collection features → then choose “Reporting” → and press “Activate”. After doing this again go to Site Settings → Site Collection … Read more