-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #192 from 15below/develop
SetSitePathWithConnectAs & EnsurePath Tweak
- Loading branch information
Showing
4 changed files
with
39 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
29 changes: 29 additions & 0 deletions
29
docs/powershell/create-website/set-site-path-with-connect-as.md
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
--- | ||
title: createWebsite.ps1 - SetSitePathWithConnectAs | ||
linkText: SetSitePathWithConnectAs | ||
description: Details about the SetSitePathWithConnectAs function in createWebsite.ps1 helper script | ||
--- | ||
|
||
# StartAppPool | ||
|
||
```PowerShell | ||
{% raw %} | ||
SetSitePathWithConnectAs | ||
[-name] <String> | ||
[-path] <String> | ||
[-username] <String> | ||
[-password] <String> | ||
{% endraw %} | ||
``` | ||
|
||
## Description | ||
|
||
Sets the site physical path with connect as set to a dedicated user | ||
|
||
## Example | ||
|
||
```PowerShell | ||
{% raw %} | ||
SetSitePathWithConnectAs -name "MySite" -path "\\remoteshare\folder" -username "MyUser" -password "5ecureP@ssw0rd | ||
{% endraw %} | ||
``` |
This file contains 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
This file contains 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