좋은 아침이에요
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
이유가 무엇입니까?
감사해요