我需要使用以下规格将文件从我的计算机复制到多台计算机。
我需要提供用户名
我还需要提供密码
运行时它不应再次提示输入密码重要
我使用了以下代码,但它多次要求输入密码。
read-host -assecurestring | convertfrom-securestring | out-file e:\SSS\pass.txt
$password=get-content e:\SSS\pass.txt | convertto-securestring
$credential=new-object -typename System.Management.Automation.PSCredential -argumentlist KS\KS012\Administrator, $password