Allow skipping PowerShell profile files

This commit is contained in:
Manuel Thalmann 2024-08-07 22:25:42 +02:00
parent 38deb9dc88
commit 211700fbee

View file

@ -33,11 +33,19 @@ function ConvertTo-Injection {
#> #>
function Write-PSScript { function Write-PSScript {
param( param(
[string] $FileName, [Parameter(Mandatory=$true)]
[string] $Script, [Parameter(ParameterSetName="Common")]
[Parameter(ParameterSetName="Replace")] [Parameter(ParameterSetName="Replace")]
[switch] $Replace,
[Parameter(ParameterSetName="Append")] [Parameter(ParameterSetName="Append")]
[string] $FileName,
[Parameter(Mandatory=$true)]
[Parameter(ParameterSetName="Common")]
[Parameter(ParameterSetName="Replace")]
[Parameter(ParameterSetName="Append")]
[string] $Script,
[Parameter(ParameterSetName="Replace", Mandatory=$true)]
[switch] $Replace,
[Parameter(ParameterSetName="Append", Mandatory=$true)]
[switch] $Append [switch] $Append
) )