omitir el error de ejecución de PowerShell

omitir el error de ejecución de PowerShell

Buen día

Estoy intentando ejecutar el script de PowerShell.https://github.com/the-xentropy/xencrypt/blob/master/xencrypt.ps1y tanto el script como el archivo que estoy intentando cifrar están en el mismo directorio, los pasos que seguí fueron

Import-Module ./xencrypt.ps1
Invoke-Xencrypt -InFile test.ps1 -OutFile testcrypted.ps1

pero me salió el error

Invoke-Xencrypt : Exception calling "ReadAllBytes" with "1" argument(s): "Não foi possível localizar o ficheiro
'C:\Users\DESKTOP\test.ps1'."
At line:1 char:1
+ Invoke-Xencrypt -InFile test.ps1 -OutFile testcrypted.ps1
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (:) [Invoke-Xencrypt], MethodInvocationException
    + FullyQualifiedErrorId : FileNotFoundException,Invoke-Xencrypt

¿Cuál puede ser la razón?

Gracias

información relacionada