powershell commands code example
Example 1: powershell commands
ls ls - Lists files in current directory
ls -alF - List in long format
cd - change directory
cd tempdir - Change directory to tempdir
cd.. - Move back one directory
mkdir - Make a directory
rmdir - Remove directory(Must be empty)
cp - Copy File into Directory
rm - Remove or Delete File
rm *.tmp - Remove all file
mv - Move or rename files
more - Look at file, one page at a time
lpr - Send file to printer
man - Online help about command
passwd - Change password
gzip - Compress file
grep<str><files> - Find which files contain certain word
who - Lists who is logged on your machine
history - Lists command history
date - Print out current date
whoami - returns your username
pwd - tell where currently you are
Example 2: c# powershell commandlet
using System.Management.Automation;
namespace SendGreeting
{
[Cmdlet(VerbsCommunications.Send, "Greeting")]
public class SendGreetingCommand : Cmdlet
{
[Parameter(Mandatory=true)]
public string Name
{
get { return name; }
set { name = value; }
}
private string name;
protected override void ProcessRecord()
{
WriteObject("Hello " + name + "!");
}
}
}
Example 3: powershell command
get-command
Example 4: scirpt powershell
what are u doing here!
go back to coding!