エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
Windows+PowerShellでリモートPC上で、任意のコマンドを実行する。 - だめでもいいからやってみる
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Windows+PowerShellでリモートPC上で、任意のコマンドを実行する。 - だめでもいいからやってみる
RemotePC上で任意のコマンドを実行する 以下のPowerShellスクリプトをファイルとして保存する。 ここで... RemotePC上で任意のコマンドを実行する 以下のPowerShellスクリプトをファイルとして保存する。 ここでは「RemoteCommand.ps1」とする。 Param( $computer, $username, $passwd, $command ) $password = ConvertTo-SecureString $passwd -asplaintext -force $cred = New-Object System.Management.Automation.PsCredential $username,$password invoke-command -ComputerName $computer -Credential $cred $command使い方はこう。 > RemoteCommand.ps1 pc_name domain\username passwor