Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Import-Module ShowUI
- New-Window -WindowStartupLocation CenterScreen -Width 400 -Height 400 -Show {
- StackPanel {
- TextBlock -Margin 5 `
- "Select a Printer to replace $((Get-WmiObject -Class Win32_Printer | Where-Object {$_.Default}).Name) as the default"
- ComboBox -Margin 5 `
- -IsSynchronizedWithCurrentItem $true `
- -DataContext (Get-WmiObject -Class Win32_Printer) `
- -DataBinding @{ItemsSource = "." } `
- -DisplayMemberPath Name
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment