-
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.
SetSiteConnectAs to SetSitePathWithConnectAs
- Loading branch information
1 parent
de23094
commit 7f69971
Showing
3 changed files
with
31 additions
and
29 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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