Skip to content

Set-FFToolsVariables

SYNOPSIS

SYNTAX

Set-FFToolsVariables [-FFToolsSource] <String> [-FFToolsTarget] <String> [<CommonParameters>]

DESCRIPTION

This function creates environment variables that persist after powershell closes. The created variables will be used across multiple FFTools Functions.

Variables created are a source folder for media processed, and an output folder for processed media.

EXAMPLES

EXAMPLE 1

Creates persistent environment variables. Be sure to include a closing backslash for the parameters.

Set-FFToolsVariables -Source "c:\media\"" -Target "c:\media\out\"

PARAMETERS

-FFToolsSource

{{ Fill FFToolsSource Description }}

Type: System.String
Parameter Sets: (All)
Aliases:

Required: True
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-FFToolsTarget

{{ Fill FFToolsTarget Description }}

Type: System.String
Parameter Sets: (All)
Aliases:

Required: True
Position: 2
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

OUTPUTS

NOTES

Back to top