$uname="cnvwfs02\dkx4pxk" #指定用户名
$pwd=ConvertTo-SecureString "Beijing2023!" -AsPlainText -Force #password”指定用户的密码
$cred=New-Object System.Management.Automation.PSCredential($uname,$pwd) #将用户和密码保存在这个变量中
Start-Process -FilePath "C:\WINDOWS\system32\notepad.exe" -Credential $cred #以指定的账户运行
标签:脚本,账户,指定,uname,pwd,cred,powershell
From: https://www.cnblogs.com/Ceri/p/17431153.html