Hi For security reasons SMB1 should not be longer used; although this is being ignored by several companies and users. Top 5 reasons: -Smb1 is not safe ( easily hackable) -Smb1 is not modern or efficient (read, write, cache ) -Smb1 is no longer required unless you do use Windows XP / 2003 ( … Continue reading Stop using SMB1 PowerShell command
Month: October 2018
Using PowerShell to view system uptime
Hi Today I just found a very handy command that will display the computer/ last reboot in PowerShell; Just copy and paste into your console, as you can Get-WmiObject -Class Win32_OperatingSystem -ComputerName localhost | Select-Object -Property @{n="Last Boot Time";e={[Management.ManagementDateTimeConverter]::ToDateTime($_.LastBootUpTime)}} If you get tired you always can use: systeminfo | find "Time"
Exchange get permissions of all users
Hi; This a nice PowerShell exchange script that will output all of the permissions of all users in regards other mailboxes; Can be very handy in some situations or either to have some sort of control Get-Mailbox | Get-MailboxPermission | where {$_.user.tostring() -ne "NT AUTHORITY\SELF" -and $_.IsInherited -eq $false} | Select Identity,User,@{Name='Access Rights';Expression={[string]::join(', ', $_.AccessRights)}} … Continue reading Exchange get permissions of all users
How to restart Veeam backup & replication services
Dear followers; As I have been away I will dedicate 2 new sections: Office365 & Veeam backup. As you know sometimes Veeam backup can be quite tricky In cases that you get jobs stuck or either you can't open the console, you always can rely on restarting eventually the services and avoid an unnecessary restart … Continue reading How to restart Veeam backup & replication services