1. ホーム
  2. powershell

[解決済み】PowerShellで長いコマンドを複数行に分割する方法

2022-04-01 07:55:33

質問

PowerShellで以下のようなコマンドを取得し、複数の行に分割するにはどうすればよいですか?

&"C:\Program Files\IIS\Microsoft Web Deploy\msdeploy.exe" -verb:sync -source:contentPath="c:\workspace\xxx\master\Build\_PublishedWebsites\xxx.Web" -dest:contentPath="c:\websites\xxx\wwwroot\,computerName=192.168.1.1,username=administrator,password=xxx"

解決方法は?

末尾のバックティック文字、すなわち。

&"C:\Program Files\IIS\Microsoft Web Deploy\msdeploy.exe" `
-verb:sync `
-source:contentPath="c:\workspace\xxx\master\Build\_PublishedWebsites\xxx.Web" `
-dest:contentPath="c:\websites\xxx\wwwroot,computerName=192.168.1.1,username=administrator,password=xxx"

空白は重要です。必要なフォーマットは スペース ` 入力 .