3 lines
104 B
PowerShell
3 lines
104 B
PowerShell
New-Item C:\HelloWorld.txt -Force
|
|
Set-Content -Path C:\HelloWorld\HelloWorld.txt -Value (Get-Date)
|
|
### 1 |