Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
OSD
25.4.20.2
Public/module/Get-OSDCachePath.ps1
function
Get-OSDCachePath
{
[
CmdletBinding
(
)
]
param
(
)
return
(
Join-Path
-Path
$MyInvocation
.
MyCommand
.
Module
.
ModuleBase
-ChildPath
'cache'
)
}