私は最初のスクリプトを実行しようとしています。単にメモ帳にアップ型付けと題し.ps1というファイルとして保存したスクリプトをプルアップするためのPowerShellを取得するには、「テスト」(また、スクリプトを試してみましたが、名前はそれとは何の関係もありません知っている):PowerShellでコマンドレット、関数などとしてスクリプト名を認識しません。単純なスクリプトでも位置のパーセンテージを見つけることはできません。
Write-Host "Hello, World!"
を私は
& "C:\Scripts\test.ps1"
と同様に
./test.ps1
を入力していますそしてこれだけで会っています:
./test.ps1.txt : The term './test.ps1.txt' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At line:1 char:1 + ./test.ps1.txt + ~~~~~~~~~~~~~~ + CategoryInfo: ObjectNotFound: (./test.ps1.txt:String) [], CommandNotFoundException
は、私がRemoteSigned
とUnrestricted
の間で切り替えている
PS C:\Scripts> Rename-Item test.ps1.txt test.ps1
とPowerShell内のファイルの名前を変更しようとしたことがあり、私はexecutionpolicy bypass
を含むコードを試してみました(私は謝罪、私は1つを書き留めることなく、私のウィンドウを閉じました)。私が知っている限り、すべてが最新で、Windows 10、Windows PowerShell、および通常のWindowsメモ帳を実行しています。
あなたが投稿したエラーメッセージは、実行していると主張しているコマンドと一致しません( '。/ test.ps1.txt'対'。/ test.ps1')。また、.txtファイルはメモ帳に関連付けられている必要があります。 '。/ test.ps1'で実行しようとすると、スクリプトが現在のディレクトリに存在することを確認してください。 –