PowerShell 実行エラーをバイパスする

PowerShell 実行エラーをバイパスする

おはよう

PowerShellスクリプトを実行しようとしていますhttps://github.com/the-xentropy/xencrypt/blob/master/xencrypt.ps1スクリプトと暗号化しようとしているファイルの両方が同じディレクトリにあるので、私が実行した手順は次のとおりです。

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

しかし、エラーが発生しました

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

理由は何でしょう?

ありがとう

関連情報