Sunil Aher
Sunil Aher

Reputation: 769

how to see keys member of illustration hashtable in powershell?

I am customizing ADFS 3.0 login page with PowerShell command.

I am able to apply iilustration image with following command.

Set-AdfsWebTheme -TargetName default -Illustration @{path="C:\ADFS\bg.jpg"}

But I want use property background-repeat= repeat-x but I don't know the key name of this hashtable.

Can any body no how to use this property?

Upvotes: 0

Views: 55

Answers (1)

Mathias R. Jessen
Mathias R. Jessen

Reputation: 174760

The -Illustration parameter does not accept CSS directives like background-repeat or the likes.

From the TechNet documentation:

-Illustration <Hashtable[]>

Specifies an array of Hashtable objects that specify illustrations by using two string keys: Locale and Path. Locale is a CultureInfo object. Path is a file path. If you do not specify a locale, Locale refers to the invariant locale.

Upvotes: 1

Related Questions