Showing posts with label within. Show all posts
Showing posts with label within. Show all posts

Sunday, 21 June 2015

Powershell Command to create Folder

Command to create Folder from Powershell


  • Powershell is very powerful tool.You can create a Folder from within Powershell using "MD" command
Below command creates a folder called test4 from within Powershell.

md "c:\test4"

Powershell Command to open any file

Powershell Command to open any file


  • Many people think that you can only open txt or html file from Powershell. Thats not true.
  • You can open any File type using Invoke-Item Powershell Command

In the below example we open JPG file from within powershell

INVOKE-ITEM "C:\test.jpg"