Publish version 1.0.x #45
@ -19,8 +19,8 @@ scripts without exposing them as plain text.
|
|||||||
PSCredentialStore was developed to simplify the delegation of complex powershell scripts. In this case you often
|
PSCredentialStore was developed to simplify the delegation of complex powershell scripts. In this case you often
|
||||||
need to store credentials for non interactive usage like in scheduled tasks.
|
need to store credentials for non interactive usage like in scheduled tasks.
|
||||||
|
|
||||||
Starting with version `1.0.0` PSCredential uses Pfx certificates fo encryption. You can use Pfx certification files
|
Starting with version `1.0.0` PSCredential uses Pfx certificates fo encryption. You can use Pfx certificate files
|
||||||
or certificates stored in the certification store.
|
or certificates stored in the certificate store.
|
||||||
|
|
||||||
For more details read the [about_PSCredentialStore](/docs/about_PSCredentialStore.md) page on github or via CLI with
|
For more details read the [about_PSCredentialStore](/docs/about_PSCredentialStore.md) page on github or via CLI with
|
||||||
`Get-Help about_PSCredentialStore`.
|
`Get-Help about_PSCredentialStore`.
|
||||||
@ -61,13 +61,13 @@ Credential Store can only be accessed with your profile on the machine you creat
|
|||||||
|
|
||||||
Starting with version `1.0.0` you can decide the storage type of your fresh created certificate. As default
|
Starting with version `1.0.0` you can decide the storage type of your fresh created certificate. As default
|
||||||
PSCredentialStore creates a new pfx certificate file beside the credential store itself. Optionally you can provide
|
PSCredentialStore creates a new pfx certificate file beside the credential store itself. Optionally you can provide
|
||||||
the parameter `-UseCertStore`. This imports the new certificate in the user or machine certification store as well.
|
the parameter `-UseCertStore`. This imports the new certificate in the user or machine certificate store as well.
|
||||||
|
|
||||||
```powershell
|
```powershell
|
||||||
# Private credential store
|
# Private credential store
|
||||||
New-CredentialStore
|
New-CredentialStore
|
||||||
|
|
||||||
# Private credential store with certification store usage
|
# Private credential store with certificate store usage
|
||||||
New-CredentialStore -UseCertStore
|
New-CredentialStore -UseCertStore
|
||||||
|
|
||||||
# Shared credential store
|
# Shared credential store
|
||||||
|
@ -120,7 +120,7 @@ Accept wildcard characters: False
|
|||||||
```
|
```
|
||||||
|
|
||||||
### -SkipPFXCertCreation
|
### -SkipPFXCertCreation
|
||||||
You can skip the pfx certification process.
|
You can skip the pfx certificate creation process.
|
||||||
This makes sense if you have a previously created cert or want to
|
This makes sense if you have a previously created cert or want to
|
||||||
import a cert in cross-platform environments.
|
import a cert in cross-platform environments.
|
||||||
|
|
||||||
@ -138,7 +138,7 @@ Accept wildcard characters: False
|
|||||||
|
|
||||||
### -UseCertStore
|
### -UseCertStore
|
||||||
Instead of using a plain pfx file beside your CredentialStore file you can import it into the user or machine
|
Instead of using a plain pfx file beside your CredentialStore file you can import it into the user or machine
|
||||||
certification store.
|
certificate store.
|
||||||
In this case the system itself secures the cert and you don't hat to set custom NTFS
|
In this case the system itself secures the cert and you don't hat to set custom NTFS
|
||||||
permissions so secure your shared certificate.
|
permissions so secure your shared certificate.
|
||||||
|
|
||||||
|
@ -15,8 +15,8 @@ scripts without exposing them as plain text.
|
|||||||
PSCredentialStore was developed to simplify the delegation of complex powershell scripts. In this case you often
|
PSCredentialStore was developed to simplify the delegation of complex powershell scripts. In this case you often
|
||||||
need to store credentials for non interactive usage like in scheduled tasks.
|
need to store credentials for non interactive usage like in scheduled tasks.
|
||||||
|
|
||||||
Starting with version `1.0.0` PSCredential uses Pfx certificates fo encryption. You can use Pfx certification files
|
Starting with version `1.0.0` PSCredential uses Pfx certificates fo encryption. You can use Pfx certificate files
|
||||||
or certificates stored in the certification store.
|
or certificates stored in the certificate store.
|
||||||
|
|
||||||
For more details read the [about_PSCredentialStore](/docs/about_PSCredentialStore.md) page on github or via CLI with
|
For more details read the [about_PSCredentialStore](/docs/about_PSCredentialStore.md) page on github or via CLI with
|
||||||
`Get-Help about_PSCredentialStore`.
|
`Get-Help about_PSCredentialStore`.
|
||||||
@ -47,13 +47,13 @@ Credential Store can only be accessed with your profile on the machine you creat
|
|||||||
|
|
||||||
Starting with version `1.0.0` you can decide the storage type of your fresh created certificate. As default
|
Starting with version `1.0.0` you can decide the storage type of your fresh created certificate. As default
|
||||||
PSCredentialStore creates a new pfx certificate file beside the credential store itself. Optionally you can provide
|
PSCredentialStore creates a new pfx certificate file beside the credential store itself. Optionally you can provide
|
||||||
the parameter `-UseCertStore`. This imports the new certificate in the user or machine certification store as well.
|
the parameter `-UseCertStore`. This imports the new certificate in the user or machine certificate store as well.
|
||||||
|
|
||||||
```powershell
|
```powershell
|
||||||
# Private credential store
|
# Private credential store
|
||||||
New-CredentialStore
|
New-CredentialStore
|
||||||
|
|
||||||
# Private credential store with certification store usage
|
# Private credential store with certificate store usage
|
||||||
New-CredentialStore -UseCertStore
|
New-CredentialStore -UseCertStore
|
||||||
|
|
||||||
# Shared credential rtore
|
# Shared credential rtore
|
||||||
|
@ -19,12 +19,12 @@ function New-CredentialStore {
|
|||||||
Use this switch to reset an existing store. The complete content will be wiped.
|
Use this switch to reset an existing store. The complete content will be wiped.
|
||||||
|
|
||||||
.PARAMETER SkipPFXCertCreation
|
.PARAMETER SkipPFXCertCreation
|
||||||
You can skip the pfx certification process. This makes sense if you have a previously created cert or want to
|
You can skip the pfx certificate creation process. This makes sense if you have a previously created cert or want to
|
||||||
import a cert in cross-platform environments.
|
import a cert in cross-platform environments.
|
||||||
|
|
||||||
.Parameter UseCertStore
|
.Parameter UseCertStore
|
||||||
Instead of using a plain pfx file beside your CredentialStore file you can import it into the user or machine
|
Instead of using a plain pfx file beside your CredentialStore file you can import it into the user or machine
|
||||||
certification store. In this case the system itself secures the cert and you don't hat to set custom NTFS
|
certificate store. In this case the system itself secures the cert and you don't hat to set custom NTFS
|
||||||
permissions so secure your shared certificate.
|
permissions so secure your shared certificate.
|
||||||
|
|
||||||
.INPUTS
|
.INPUTS
|
||||||
|
Loading…
Reference in New Issue
Block a user