10 lines
150 B
PowerShell
10 lines
150 B
PowerShell
param(
|
|
[String]
|
|
$VMName
|
|
)
|
|
|
|
$string = (Get-Date -UFormat "%Y%m%d%H%M%S") + " Hello World! $VMName"
|
|
Write-Output $string
|
|
|
|
|
|
Write-Output $User |