Parsers/GPO/Shortcuts.ps1

#region GPO Parsers
Function Write-GPOShortcutsXMLData
{
    [CmdletBinding()]
    [OutputType([String])]
    param
    (
        [Parameter(Mandatory=$true)]
        [System.Xml.XmlElement]$XML    
    )
}
#endregion