作成 2012.11.10
更新 2012.11.10
PowerShell でクレデンシャル(ユーザー資格)の取得
ポップアップで取得
PS C:\> $cred = Get-Credential
あらかじめコーディング
PS C:\> $user = "HOST\username"
PS C:\> $pass = ConvertTo-SecureString "P@ssw-rd!" -AsPlainText -Force
PS C:\> $cred = New-Object System.Management.Automation.PSCredential $user,$pass
タグ: PowerShell

©2004-2017 UPKEN IPv4