Created
January 21, 2019 14:40
-
-
Save kpatnayakuni/83164d969cb58a804ecae0d5cfeaf731 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Along with the named paramaters | |
| New-Item -Path C:\Windows\Temp\ -Name Delete.txt -ItemType File -Value "Hello World!" -Force | |
| # With hash table | |
| $paramtable = @{ | |
| Path = 'C:\Windows\Temp\' | |
| Name = 'Delete.txt' | |
| ItemType = 'File' | |
| Value = 'Hello World!' | |
| Force = $true | |
| } | |
| New-Item @paramtable |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment