Ok, found solution from myself;
I have imported certificate in windows with following:
Import-PfxCertificate -FilePath "pfx file path" -CertStoreLocation Cert:\LocalMachine\My -Password (ConvertTo-SecureString -String 'MyPwD' -AsPlainText -Force) -Exportable
and then i exported from windows with:
Export-PfxCertificate -Cert Microsoft.PowerShell.Security\Certificate::LocalMachine\My\6DD3D0243A87C4BC5010238AEB0DFB9FFB1E387B(this is certificate thumbprint) -FilePath 'export pfx file path' -Password (ConvertTo-SecureString -String 'MyPwD' -AsPlainText -Force)
and importing in azure works flawlessy.
This is my solutions.
Thanks