Nested IIS Assets Folder not working

Product: PowerShell Universal
Version: 3.5.5
New-PSUPublishedFolder -RequestPath "/assets" -Path "E:\src\psu\psuSandbox_data\UniversalAutomation\assets" -DefaultDocument @('index.html')

@adam, I am not sure what i am doing wrong…

For a simple logo load, how would i set the pathing correctly for a nested iis site?

$PSDefaultParameterValues["*:Logo"] = "/assets/logo.png" #does not work
$PSDefaultParameterValues["*:Logo"] = "assets/logo.png" #does not work
$PSDefaultParameterValues["*:Logo"] = "/psuSandbox/assets/logo.png" #works, is this how it is supposed to work?


New-UDDashboard -Title 'Home' -Content {
    #content
}

Can you let me know where you are setting this logo value? Dashboards?

I’m surprised the second example doesn’t worked and the third makes sense. The first one, since is has a starting slash, will end up pathing to the root of the host and not including the nested path.

updated original post with a sample code block