From e9fbe95454299c19c03e2d92e3255d0a7854a742 Mon Sep 17 00:00:00 2001 From: anthonyjvoss Date: Mon, 24 Jun 2019 17:26:22 -0500 Subject: [PATCH] Created powershell directory and first document (#28173) --- guide/english/powershell/powershell-profile/index.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 guide/english/powershell/powershell-profile/index.md diff --git a/guide/english/powershell/powershell-profile/index.md b/guide/english/powershell/powershell-profile/index.md new file mode 100644 index 0000000000..cc3b18421d --- /dev/null +++ b/guide/english/powershell/powershell-profile/index.md @@ -0,0 +1,12 @@ +--- +title: PowerShell Profile +--- + +## Purpose +The PowerShell profile is a text-based configuration file for pre-session scripts and settings. The profile is an easy way to customize the shell appearance, set a working directory, etc. + +### Example +This will change the working directory to 'C:\temp' when a new session is launched. +``` +Set-Location C:\temp +```