We were trying to allow access to activate Office 365 from a closed bubble , deployed the Application Whitelists per belowUpon Office activation we were still getting […]
How to trace items being blocked on the Fortigate
If you have tightened security on a firewall and you are trying to trace what’s being blocked , Policy 0 in the firewall can be used to […]
Failover Cluster Database CLUSDB Corruption – Hyper V
Recently had a hyper v cluster that was rebooted, however upon started Get-VM Command produced no VM’s Get-clusterquorum was BlankStart-clusternode Would join the node back into the cluster and […]
javax.mail.MessagingException: Could not convert socket to TLS; nested exception is: javax.net.ssl.SSLException
Indicates whether to use a secure connection (SSL or TLS). If SSL or TLS is selected, the server’s certificate or its authority must be in protectedstore/trusted.jks. Error while […]
Netapp adding NTFS Security Permissions on CIFS share
How to assign permissions for Domain User * This didn’t work straight away so had to create local user and auth that wayvserver cifs users-and-groups local-group add-members […]
WordPress Admin Dashboard showing up CSS’ed Layout
Recently tried to login to my wordpress Dashboard and the backend looked like the attached Picture.First thing I did is disable all plugins which didn’t fix the […]
Red Hat Academy – Certification Discount
Recently I enrolled in a Red Hat Academy Course , and received an email shortly after : Congratulations! You are eligible for a discount on your next Red […]
Mimecast sending from another Tenants Domain
Mimecast will actually let you send from another domain you do not own ( will need to open a Support ticket and give a business reason ) Mimecast […]
Taking Ownership and Adding Full Permissions for Paths over 260 Characters
Open Powershell As AdministratorImport-Module NTFSSecurity#Check Existing Accessdir2 “\\?\e:\folde\path\name” -Recurse | Get-NTFSAccess#Take Ownershipdir2 “\\?\e:\folde\path\name” -Recurse | Set-NTFSOwner -Account “Administrators”#Add Permissiosndir2 “\\?\e:\folde\path\name” -Recurse | Add-NTFSAccess -Account Administrators -AccessRights FullControl#recheck […]