1 2 3 4 5 6 |
[PSCustomObject]@{ Usuario1 = Get-Credential -Message Usuario1 Usuario2 = Get-Credential -Message Usuario2 } | Export-Clixml -Path almacen.xml Start-Process notepad -Credential (Import-Clixml .\almacen.xml).usuario2 |
1 2 3 4 5 6 |
[PSCustomObject]@{ Usuario1 = Get-Credential -Message Usuario1 Usuario2 = Get-Credential -Message Usuario2 } | Export-Clixml -Path almacen.xml Start-Process notepad -Credential (Import-Clixml .\almacen.xml).usuario2 |