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 […]

OpenSSL Checks to verify the certs:

#To verify the Root CA CA.pem and Intermediate CA ICA.pemopenssl verify -CAfile CA.pem ICA.pem#To create the CA chain ( In Linux or just add files together in […]