2017-09-28 11:08:41 +02:00
---
external help file: PSCredentialStore-help.xml
Module Name: PSCredentialStore
online version: https://github.com/OCram85/PSCredentialStore
schema: 2.0.0
---
2018-03-09 14:02:51 +01:00
# New-CredentialStore
2017-09-28 11:08:41 +02:00
## SYNOPSIS
2018-03-09 14:02:51 +01:00
Creates a new credential store File
2017-09-28 11:08:41 +02:00
## SYNTAX
### Private (Default)
```
2018-03-09 14:02:51 +01:00
New-CredentialStore [-Force] [< CommonParameters > ]
2017-09-28 11:08:41 +02:00
```
### Shared
```
2018-03-09 14:02:51 +01:00
New-CredentialStore [-Shared] [-Path < String > ] [-Force] [< CommonParameters > ]
2017-09-28 11:08:41 +02:00
```
## DESCRIPTION
2018-03-09 14:02:51 +01:00
You need to run this script first to create a new credential store before you try to
save new credentials with New-CredentialStoreItem.
2017-09-28 11:08:41 +02:00
## EXAMPLES
2018-03-09 14:02:51 +01:00
### EXAMPLE 1
2017-09-28 11:08:41 +02:00
```
2018-03-09 14:02:51 +01:00
New-CredentialStore
2017-09-28 11:08:41 +02:00
```
2018-03-09 14:02:51 +01:00
# Creates a new private CredentialStore
2017-09-28 11:08:41 +02:00
2018-03-09 14:02:51 +01:00
### EXAMPLE 2
```
New-CredentialStore -Force
```
2017-09-28 11:08:41 +02:00
2018-03-09 14:02:51 +01:00
# Resets an existing private CredentialStore
2017-09-28 11:08:41 +02:00
2018-03-09 14:02:51 +01:00
### EXAMPLE 3
```
New-CredentialStore -Shared
2017-09-28 11:08:41 +02:00
```
2018-03-09 14:02:51 +01:00
# Creates a new shared CredentialStore
### EXAMPLE 4
```
New-CredentialStore -Shared -Path "C:\TMP\CredentialStore.json"
```
# Creates a new shared CredentialStore in the given location.
## PARAMETERS
### -Force
Use this switch to reset an existing store.
The complete content will be wiped.
2017-09-28 11:08:41 +02:00
```yaml
2018-03-09 14:02:51 +01:00
Type: SwitchParameter
2017-09-28 11:08:41 +02:00
Parameter Sets: (All)
2018-03-09 14:02:51 +01:00
Aliases:
2017-09-28 11:08:41 +02:00
2018-03-09 14:02:51 +01:00
Required: False
2017-09-28 11:08:41 +02:00
Position: Named
2018-03-09 14:02:51 +01:00
Default value: False
2017-09-28 11:08:41 +02:00
Accept pipeline input: False
Accept wildcard characters: False
```
2018-03-09 14:02:51 +01:00
### -Path
Define a location for the new shared CredentialStore.
The default store will be created in
$Env:ProgramData\PSCredentialStore dir.
2017-09-28 11:08:41 +02:00
```yaml
Type: String
2018-03-09 14:02:51 +01:00
Parameter Sets: Shared
Aliases:
2017-09-28 11:08:41 +02:00
Required: False
Position: Named
2018-03-09 14:02:51 +01:00
Default value: "{0}\PSCredentialStore\CredentialStore.json" -f $env:ProgramData
2017-09-28 11:08:41 +02:00
Accept pipeline input: False
Accept wildcard characters: False
```
### -Shared
2018-03-09 14:02:51 +01:00
Creates a CredentialStore in the Shared mode.
This enables you to read the CredentialStore Items on
different systems or profiles.
In addition you can optionally provide a custom path wit the -Path parameter.
2017-09-28 11:08:41 +02:00
```yaml
Type: SwitchParameter
Parameter Sets: Shared
2018-03-09 14:02:51 +01:00
Aliases:
2017-09-28 11:08:41 +02:00
Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False
```
### CommonParameters
2018-03-09 14:02:51 +01:00
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
2017-09-28 11:08:41 +02:00
## INPUTS
### [None]
## OUTPUTS
2018-03-09 14:02:51 +01:00
### [None]
2017-09-28 11:08:41 +02:00
## NOTES
2017-10-23 10:53:52 +02:00
\`\`\`
2018-03-09 14:02:51 +01:00
File Name : New-CredentialStore.ps1
2017-09-28 11:08:41 +02:00
Author : Marco Blessing - marco.blessing@googlemail.com
Requires :
2017-10-23 10:53:52 +02:00
\`\`\`
2017-09-28 11:08:41 +02:00
## RELATED LINKS
[https://github.com/OCram85/PSCredentialStore ](https://github.com/OCram85/PSCredentialStore )