NAME
Mount-WorkingDirectory
SYNOPSIS
Mounts working directory.
SYNTAX
Mount-WorkingDirectory [[-MountName] <String>] [[-Path] <String>] [<CommonParameters>]
DESCRIPTION
Mounts working diretory with MountName parameter, projec.name specified in config or config_local file or with frameworks root directory name if both not specified.
If Path not provided then frameworks root directory will be mounted.
PARAMETERS
-MountName <String>
Required? false
Position? 1
Default value $Global:MountName
Accept pipeline input? false
Accept wildcard characters? false
-Path <String>
Required? false
Position? 2
Default value $Global:Path
Accept pipeline input? false
Accept wildcard characters? false
<CommonParameters>
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).
INPUTS
OUTPUTS
NOTES
Author : Sebastian Ziółkowski
Website: ziolkowsky.wordpress.com
GitHub : github.com/ziolkowsky
-------------------------- EXAMPLE 1 --------------------------
PS>Mount-WorkingDirectory -MountName TestWorkingDirectory -Path .\TestPath
-------------------------- EXAMPLE 2 --------------------------
PS>Mount-WorkingDirectory
Mounts frameworks root directory as working directory.
-------------------------- EXAMPLE 3 --------------------------
PS>Mount-WorkingDirectory -MountName TestWorkingDirectory
Mounts frameworkds root directory with TestWorkingDirectory:\ name.
RELATED LINKS
https://ziolkowsky.wordpress.com/2022/04/17/mount-workingdirectory
https://github.com/ziolkowsky/ShellPowerFramework
0 Comments on “Mount-WorkingDirectory”