Umgehen eines Powershell-Ausführungsfehlers

Umgehen eines Powershell-Ausführungsfehlers

Guten Morgen

Ich versuche, das Powershell-Skript auszuführenhttps://github.com/the-xentropy/xencrypt/blob/master/xencrypt.ps1und sowohl das Skript als auch die Datei, die ich verschlüsseln möchte, befinden sich im selben Verzeichnis. Die Schritte, die ich befolgt habe, waren

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

Aber ich habe den Fehler

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

Was kann der Grund sein?

Danke

verwandte Informationen